.consent-banner{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(21, 12, 47, .35);
    font-family: "Roboto", sans-serif;
}

.gdpr-inner-content .title-mb {
    margin-bottom: 20px!important;
}

.gdpr-cookie-popup {
    width: 620px;
	max-width: calc(100% - 30px);
    background-color: #fff;
    background-image: url('../images/cookiebg.webp');
    background-size: cover;
    background-position: top;
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(21, 12, 47, .25);
    display: none;
}

#gdpr-cookie-popup.active,#manage-cookie-popup.active{
    display: block;
}

.gdpr-header {
    padding: 0px 30px;
    background: #FFF7F7;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px 20px 0 0;
    min-height: 84px;
    position: relative;
}

.gdpr-cookie-icon {
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    padding: 18px;
    position: absolute;
    box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 10%);
}

.cookie-logo{
    height: 54px;
    width: auto;
}

.gdpr-inner-content{
    padding: 40px 30px;
    color: #4D4C4C;
}

.gdpr-inner-content a{
    text-decoration: underline;
    color: #1ECBBD!important;
}

.gdpr-title {
    color: #E62070!important;
    margin: 0!important;
    font-weight: 600!important;
	font-size: 22px;
}

.gdpr-inner-content p+p{
    margin: 15px 0 0 0!important;
}

.gdpr-btns{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.gdpr-btns button {
    min-height: 44px;
    border-radius: 50px;
    font-weight: 500;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
    padding: 0 30px;
    border: solid 1px #E62070;
    color: #E62070;
    background: transparent;
	cursor: pointer;
}

.fill-btn, .gdpr-btns button:hover, .gdpr-btns button:focus{
    background: #E62070!important;
    color: #fff!important;
}

.cookie-form {
	margin-top: 20px;
    background-color: #F7F7F7;
    border-radius: 20px;
	display: flex;
    flex-wrap: wrap;
}

.custom-tick{
   padding: 12px 20px;
    position: relative;
    min-height: 32px;
    display: flex;
    align-items: center;
    width: 100%;
}

.custom-tick + .custom-tick {
    border-top: 1px solid #fff;
}

.custom-tick:nth-child(2) {
    border: none;
}

.custom-tick [type=checkbox] {
    position: absolute;
    right: 20px;
    height: 32px;
    width: 48px;
    border-radius: 50px;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.custom-tick label {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.custom-tick label::before {
    content: "";
    height: 28px;
    width: 48px;
    background: #C9C9C9;
    border-radius: 50px;
    position: absolute;
    right: 0;
}

.custom-tick label::after {
    content: "";
    height: 18px;
    width: 18px;
    background: #F7F7F7;
    position: absolute;
    right: 25px;
    border-radius: 50%;
    transition: 0.3s;
}

.custom-tick [type=checkbox]:checked+label::before {
    background: #E62070;
}

.custom-tick [type=checkbox]:checked+label::after {
    right: 5px;
}

.custom-tick.selectall {
    background: #E62070;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
}

.custom-tick.selectall label::before {
    background: #fff!important;
}

.custom-tick.selectall label::after {
    background: #E62070!important;
}

.gdpr-closebtn,.gdpr-backbtn{
    padding: 0;
    margin: 0;
    border: none;
    background: transparent!important;
    display: flex;
	cursor: pointer!important;
}

.gdpr-backbtn:hover path {
    fill: #E62070;
}

.gdpr-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

@media(min-width: 768px) {
    .consent-banner{
        font-size: 17px;
    }
    .gdpr-cookie-icon {
        right: -20px;
        top: -20px;
    }
}

@media(max-width: 767px) {
    .consent-banner{
        font-size: 15px;
    }
    .gdpr-cookie-icon {
        right: -10px;
        top: -20px;
    }
}