.countDown__cont {
	font-size: 1.2rem;
	display: flex;
	color: #fff;
	justify-content:  center;
	padding-bottom:  1.5rem;
}

.countDown__interval_cont {
	display: flex;
	justify-content: space-around;
	width: auto;
}

.countDown__interval_basic_cont {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin:  0.3rem;
}

.countDown__digit_cont {
	perspective: 1.6em * 2;
	box-shadow: .1em .1em .1em rgba(0, 0, 0, .2);
	width: 1.2em;
	height: 1.6em;
	position: relative;
	line-height: 1.6em;
	font-size: 2em;
	font-weight: 700;
	border-radius: .08em;
	background: #274c9b;
	margin: 0 0.1rem;
}

.countDown__digit_last_placeholder,
.countDown__digit_new_placeholder {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.countDown__interval_basic_cont_description {
	color:  #000;
	font-size:  1rem;
	font-weight:  bold;
	margin-top: 0.2rem;
}

.countDown__digit_new_placeholder {
	top: 0;
	background: #274c9b;
	border-radius: .08em .08em 0 0;
}

.countDown__digit_last_rotate,
.countDown__digit_new_rotate {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 50%;
	font-weight: 700;
	position: absolute;
	top: 0;
	overflow: hidden;
	animation-duration: .4s;
	animation-timing-function: linear;
	border-radius: .08em .08em 0 0;
	animation-fill-mode: forwards;
	transform-origin: 100% 100%;
}

.countDown__digit_last_rotate:after,
.countDown__digit_new_rotate:after {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-bottom: .01em solid rgba(0, 0, 0, .1);
}

.countDown__digit_last_rotate {
	animation-name: countDown_flip_1;
	background: #274c9b;
}

.countDown__digit_new_rotate {
	animation-name: countDown_flip_2;
	background: #274c9b;
}

.countDown__digit_new_rotated {
	transform: rotateX(180deg);
	width: 100%;
	height: 100%;
}

.countDown__digit_new_rotated_inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 50%;
	position: absolute;
}

@keyframes countDown_flip_1 {
	0% {
		transform: rotateX(0);
		z-index: 1;
	}

	100% {
		transform: rotateX(-180deg);
		z-index: 0;
	}
}

@keyframes countDown_flip_2 {
	0% {
		transform: rotateX(0);
		z-index: 0;
	}

	100% {
		transform: rotateX(-180deg);
		z-index: 1;
	}
}

.CountdownTimer{
    font-family: 'Open Sans', sans-serif;
    max-width:380px;
    margin-top:6rem;
    margin-bottom:1rem;
    clear: both;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgb(0 0 0 / 20%);
    border-radius: 15px;
    cursor:pointer;
}

.CountdownTimer .BG-Image img{
   
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.CountdownTimer .Title-Logo{
    display:flex;
}

.CountdownTimer .Title-Logo img{
    margin-left:auto;
    margin-right:auto;
    margin-top: -110px;
    background-color: #fff;
}

.Timer{
    display:flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 1.5rem;
}

.FirstRowOfTimer {
    display:flex;
    margin-left: auto;
    margin-right: auto;
    padding-top: .75rem;
    padding-bottom: .5rem;
}

.TimerBox{
    background-color: #e8e8e8;
    color: #274c9b;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 1px solid #e8e8e8;
    width: 75px;
    border-radius:12px;
    margin-block-start: 0;
    margin-block-end: 0;
    animation: grow-and-shrink 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}




.TimerBox2{
    color:#274c9b;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    width: 60px;
    margin:auto;
    margin-block-start: 0;
    margin-block-end: 0;
}

.Colon{
    color:#000000;
    font-size: 1.8rem;
    font-weight: 600;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: -4px;
}

#TimerExpires{
    display:none;
}

.TimerTitle{
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-bottom:1.3rem;
}