@font-face {
    font-family: 'GilroyBold';
    src: url('../fonts/Gilroy-SemiBold.eot');
    src: url('../../fonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-SemiBold.woff2') format('woff2'),
        url('../fonts/Gilroy-SemiBold.woff') format('woff'),
        url('../fonts/Gilroy-SemiBold.ttf') format('truetype'),
        url('../fonts/Gilroy-SemiBold.svg#Gilroy-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.eot');
    src: url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Regular.woff2') format('woff2'),
        url('../fonts/Gilroy-Regular.woff') format('woff'),
        url('../fonts/Gilroy-Regular.ttf') format('truetype'),
        url('../fonts/Gilroy-Regular.svg#Gilroy-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.cookies-wrapper{
    position:fixed;
    z-index: 1000;
    width: 100%;
    height:100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display:flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gilroy';
}
.cookies-content{
    max-width:600px;
    width: 600px;
    background:#fff;
    padding: 40px 80px;
/*    border-radius: 10px;*/
    margin:20px;
}
.cookie-logo{
    display:inline-block;
    width:120px;
    height:72px;
}
.cookie-logo-svg{
    width:100%;
    height:100%;
}
.cookie-header{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:40px;
    flex-wrap: wrap;
}
.dismiss{
    color:#4a4a4a;
    font-size:15px;
    text-decoration: underline!important;
    font-weight: 500;
    display:inline-block;
}
.dismiss:hover{
    opacity: 0.7;
}
.cookie-data h2{
    color:#ff3700;
    font-size:32px;
    font-family: 'GilroyBold';
}
.cookie-main-text{
    font-size:17px;
    color:#4a4a4a;
    margin-bottom:10px;
}
.cookie-list{
    margin:0 0 10px 0;
    padding:0;
    list-style: none;
}
.cookie-list li{
    padding:3px 0 3px 10px;
    position:relative;
    font-size:14px;
    opacity: 0.8;
    line-height: 1.4;
}
.cookie-list li:before{
    content:"";
    position:absolute;
    width:5px;
    height:5px;
    border-radius: 50%;
    background:#4a4a4a;
    opacity: 0.6;
    left:0;
    top:0;
    bottom:0;
    margin:auto;
}
.cookie-btn-item {
    display:inline-flex;
    border:1px solid #979797;
    align-items:center;
    padding:10px 55px 10px 20px;
    margin-right:10px;
    justify-content: space-between;
    font-size:15px;
    position:relative;
    font-family: 'GilroyBold';
    cursor:pointer;
    background:transparent;
    margin-bottom:5px;
}
.cookie-btn-arrow{
    position:absolute;
    right:15px;
    width:20px;
    height:10px;
    line-height: 1;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cookies-content .orange-btn {
    font-size:17px;
}

.cookie-btn-arrow .svg-icon{
    -webkit-transition: fill .35s ease-in-out;
    transition: fill .35s ease-in-out;
}
.cookie-btn-item-orange{
    border-color:#ff3700;
}
.cookie-btn-item:hover{
    border-color: transparent !important;
}
.cookie-btn-item:before{
    content:"";
    position:absolute;
    width: 0;
    z-index: 0;
    left:0;
    top:-1px;
    bottom:-1px;
    right:0;
    background: -webkit-gradient(linear,left top,right top,from(#840d81),to(#fe6b45));
    background: linear-gradient(90deg,#840d81,#fe6b45);
    -webkit-transition: left .25s ease-in-out,right .25s ease-in-out,width .25s ease-in-out;
    transition: left .25s ease-in-out,right .25s ease-in-out,width .25s ease-in-out;
}
.cookie-btn-item:hover:before{
    width:100%;
}
.cookie-btn-text{
    position:relative;
    z-index: 4;
    -webkit-transition: color .35s ease-in-out;
    transition: color .35s ease-in-out;
}
.cookie-btn-item:hover .cookie-btn-text{
    color:#fff;
}

.cookie-btn-item:hover  .cookie-btn-arrow .svg-icon{
    fill:#fff;
}

@media(max-width:998px){
    .cookies-content{
        padding: 30px 30px;
    }
    .cookie-data h2 {
        color: #ff3700;
        font-size: 26px;
        font-family: 'GilroyBold';
    }
    .cookie-list li {
        padding: 3px 0 3px 10px;
    }
}