.device-tile {
	height: 525px;
    width: 280px;
    position: relative;
	background-position-y: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.device-tile h4 {
	margin: 0 0 6px 0;
	font-family: 'VM Circular Medium', Arial, sans-serif;
	font-size: 24px;
}

.text-padding {
	padding: 48px 20px 0 20px;
	font-family: 'VM Circular Chat', Arial, sans-serif;
	text-align: center;
}


.device-tile .phoneImg {
	position: relative;
    max-height: 350px;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.offer-container {
	background: #EFFF04;
	width: 100%;
	position: absolute;
	height: 38px;
}

.offer-text {
	font-family: 'VM Circular Black', Arial, sans-serif;
	text-align: center;
    display: flex;
    font-size: 20px;
    justify-content: center;
    flex-direction: row;
    height: 100%;
    align-items: center;
	text-transform: uppercase;
}

.giftContainer {
	position: absolute;
    bottom: 10px;
    right: 10px;
    width: 110px;
    height: 110px;
    background: white;
    overflow: hidden;
    border-radius: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.bottomLeft {
	right: unset !important;
	left: 10px !important;
}

.bottomRight {
	left: unset !important;
	right: 10px !important;
}

img.giftImage {
    max-width: 85px;
    max-height: 80px;
}

.countdown-wrapper {
    background: #EFFF04;
    width: fit-content;
    max-width: 75%;
    margin: 0 auto;
    font-weight: 600;
    padding: 0 5px;
    min-width: 180px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cd-title {
	font-size: 12px;
}

.tile-inner {
    position: relative;
    width: 100%;
    transition: transform 0.6s;
}

.front-content {
    display: block;
}

.back-content {
    display: none;
    max-height: 405px;
}

.rotated .front-content {
    display: none;
}

.rotated .back-content {
    display: block !important;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    visibility: visible;
    
}

.tile-inner.rotated {
    background: #ffffffde;
    position: absolute;
    bottom: 0;
}

.device-tile .back-content p {
    font-size: 14px;
    font-family: 'VM Circular Book', Arial, sans-serif;
    padding: 10px 10px;
    text-align: left;
}

.informationIcon button {
    background: none;
    border: 2px solid white;
    border-radius: 20px;
    color: white;
    padding: 5px 12px;
}

.informationIcon {
    width: fit-content;
    position: relative;
    bottom: 15px;
}

.closeIcon {
    width: fit-content;
    position: relative;
    bottom: 5px;
    left: 5px;
}

.closeIcon button {
    background: none;
    border: 2px solid black;
    border-radius: 20px;
    color: black;
    padding: 6px 12px;
}

.countdown-container {
    height: 35px;
}

@media only screen and (max-width: 619px) {
    .device-tile {
        height: 400px;
    }

    .device-tile .phoneImg {
        max-height: 220px;
    }
}