﻿.splash-redirection .flexcenter{
    display: flex;
    align-items: center;
    height: 30px;
}

.splash-redirection .spinner1 {
    width: 20px;
    height: 20px;
    background-color: #333;

    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% { -webkit-transform: perspective(120px) }
    50% { -webkit-transform: perspective(120px) rotateY(180deg) }
    100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    } 50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    } 100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

.spinner2 {
    width: 20px;
    height: 20px;
    position: relative;


    /* position: relative;
    margin: 100px auto; */
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.spinner3 {

    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner3 > div {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner3 .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner3 .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner3 .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner3 .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }  20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}
.sk-fading-circle {
    width: 20px;
    height: 20px;
    position: relative;
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}
.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}
.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; }
}
.spinner5 {
    width: 70px;
    text-align: center;
}

.spinner5 > div {
    width: 18px;
    height: 18px;
    background-color: #333;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner5 .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner5 .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/* General */
.marginauto {
    margin: auto;
    margin-top: 20px;
    margin-bottom:50px;
}
.splash-redirection header {
    top: 0;
    position: relative;
}
.splash-redirection.center-div {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.splash-redirection.center-div img {
    max-height: 120px;
}
footer {bottom: 0; position: fixed; width: 100%;}

/*MODAL BLOCK */
.modal{
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1111;
	position: fixed;
	z-index: 1111; / Sit on top /
padding-top: 150px; / Location of the box /
left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
}
.toplist-cookie {
	margin: 0 auto;
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-bottom: 20px;
	border-radius: 20px;
	padding-top: 2%;
}
.cookie_text{
	margin-bottom: 50px;
	text-align: center;
	padding: 10px;
}
.cookie_text h2,
.cookie_text p {
	font-size: 26px;
	font-weight: 800;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.38;
	letter-spacing: normal;
	text-align: center;
	color: #FFFFFF;
	margin: 0;
	background: transparent;
}
.cookie_text h2{
	margin-bottom: 10px;
}
.cookie_text p{
	font-size: 16px;
	margin-bottom: 25px;
	line-height: 1.5;
}
.cookie_describe {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	align-content: center;
	margin-bottom: 20px;
}

.cookie_item {
	margin: 0 auto;
	display: flex;
	width: 90%;
	justify-content: space-around;
	flex-wrap: wrap;
}
.cookie_logo{
	flex-direction: column;
}
.cookie_logo h3{
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
}
.cookie_logo img {
	box-shadow: none;
	max-width: 150px;
	height: 150px;
	object-fit: contain;
}

.cookie-content {
	flex-basis: 22%;
	background-color: #FFF;
	padding:0;
	margin-bottom: 0px;
	height: auto;
}
.cookie-content:hover{
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 1);
}

.cookie-content .list-item-rating {
	color: #F87917;
	display: flex;
	margin-top: 10px;
}

.play {
	display: flex;
	margin: 0 auto;
	width: 80%;
	justify-content: center;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #FFF;
	text-decoration: none;
	border-radius: 6px;
	background-color: #64C82D;
	text-align: center;
	font-size: 14px;
	margin-bottom: 16px;
}
.play:hover {
	transform: scale(1.01);
	box-shadow: 0 0 8px 0px #00000027;
}


.cookie_text-describe {
	display: flex;
	flex-direction: column;
	text-transform: capitalize;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: center;
	color: #373F47;
	margin-bottom: 15px;
}
.cookie_text i {
	background-color: transparent;
	color: #262626;
	font-size: 50px;
}
.single-container {
	margin: 0 auto;
	margin-top: 7%;
	width: 75%;
	z-index: 27;
}
.cookie_logo {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 30px;
}

#modal a.tc_link{
	display: block;
	margin: 0 auto;
	opacity: 0.5;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.5;
	text-align: center;
	width: 90%;
	color:#373f47!important;
	padding-bottom: 16px;
}

.toplist-cookie .cookie-button{
	padding: 13px 45px 13px 45px;
	border-radius: 6px;
	background-color: #64C82D;
	font-weight: bold;
	line-height: 1;
	letter-spacing: normal;
	text-align: center;
	color:#fff!important;
	font-size: 14px;
	text-decoration: none;
}
 /*The Close Button */
.close {
	color: #AAAAAA;
	position: absolute;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	font-size: 50px;
	top: 11%;
	right: 6%;
	cursor: pointer;
}
.close a{
	text-decoration: none!important;
}

.close a:hover,
.close a:focus {
	color: hsl(0, 14%, 3%);
	font-weight: bold;
}

@media screen and (max-width: 500px) {
	.cookie-content {
		flex-basis: 91%;
		margin-bottom: 10px;
	}
	.cookie_text::before {
		width: 35px;
	}
	.cookie_text p {
		margin-left: 47px;
	}
	.single-container {
		margin-top: 15%;
	}
}

@media (min-width: 501px) and (max-width: 768px) {
	.cookie-content {
		flex-basis: 47%;
		margin-bottom: 10px;
	}
}