﻿.popup-flex {
    margin: 30px;
}

#cookie-approve-row {
    text-align: center;
    background-color: #FFF;
    padding: 3px;
    font-family: "Amsi-Pro Font", sans-serif;
    color: #184F9E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

    #cookie-approve-id:hover, #cookie-approve-id:focus {
        color: #009FE3;
        text-decoration: none;
        cursor: pointer;
    }

/*1. begin*/
.popupSelector-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 1000000 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(21, 17, 17, 0.61); */
    display: flex;
    align-items: center;
    overflow: auto;
}

.popupSelector-content {
    border-radius: 16px;
    bottom: 0;
    position: fixed;
    background-color: #009FE3;
    padding: 20px;
    border: 2px solid #009FE3;
    width: 66%;
    height: auto;
    margin-bottom: 10px;
    margin-left: 10px;
}

.cookieSelector-consent-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: initial;
}

.cookieSelector-consent-header img {
    font-weight: bold;
    font-size: large;
    text-align: center;
    max-height: 50px;
    margin-bottom: 5px;
}

.cookieSelector-consent-content{
    width: 100%;
}

.cookieSelector-consent-content p {
    font-family: "Amsi-Pro Font", sans-serif;
    color: #FFF;
    font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.cookieSelector-consent-content h1 {
    font-family: "Amsi-Pro Font", sans-serif;
    color: #FFF;
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.cookieSelector-consent-footer button {
    /* text-align: center;
    border: 1px solid mediumblue;
    font-size: inherit;
    font-weight: 500;
    margin-top: 5px; */
    padding: 0px 15px;
    float: left;
    height: 40px;
    text-align: center;
    line-height: 38px;
    border: 1px solid #FFF !important;
    background: rgba(255, 255, 255, 0.01) !important;
    -webkit-backdrop-filter: blur(35.3499984741px);
    backdrop-filter: blur(35.3499984741px);
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
}
.cookieSelector-consent-footer button.accept {
    border: 1px solid #184F9E !important;
    background: #184F9E !important;
}

.cookieSelector-consent-footer{
    margin-top: 20px;
    display: flex;
    gap: 18px;
}
/*1. end*/


.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 1000000 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    display: flex;
    align-items: center;
    overflow: auto;
}

.popup-content {
    border-radius: 16px;
    background-color: #fefefe;
    margin: auto;
    margin-top: 2%;
    padding: 20px;
    border: 1px solid #888;
    width: 70%;
    height: auto;
}

    .popup-content span :not(#cookie-approve-id) {
        color: #aaaaaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

    .popup-content span:hover, .popup-content span:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.show {
    visibility: visible !important;
    opacity: 1 !important;
    transform: scale(1);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #184F9E;
}

input:focus + .slider {
    box-shadow: 0 0 1px #184F9E;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.cookie-consent-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-consent-header {
    font-family: "Amsi-Pro Font", sans-serif;
color: #184F9E;
    background-color: #FFF;
    color: #184F9E;
    font-size:24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;

    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.cookie-consent-content .about-cookies{
    margin-top: 20px;
}

.cookie-consent-content .about-cookies h2{
    font-family: "Amsi-Pro Font", sans-serif;
    color: #184F9E;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.cookie-consent-content .about-cookies p{
    font-family: "Amsi-Pro Font", sans-serif;
    color: #184F9E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cookie-consent-footer{
    display: flex;
    justify-content: end;
}

.cookie-consent-footer button {
    /* text-align: center;
    border: 1px solid aquablue;
    font-size: inherit;
    font-weight: 500;
    margin-top: 5px; */
     padding: 0px 15px;
    float: left;
    height: 34px;
    text-align: center;
    border: 1px solid #184F9E !important;
    background: #184F9E !important;
    -webkit-backdrop-filter: blur(35.3499984741px);
    backdrop-filter: blur(35.3499984741px);
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
}

.cookies-list{
     display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 10px;
}
.cookies-list .item{
    border-radius: 16px;
    border: 1px solid #D5D5D5;
    padding: 16px;
}
.cookies-list .item h2{
    font-family: "Amsi-Pro Font", sans-serif;
    color: #184F9E;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.cookies-list .item .item-desc{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookies-list .item .item-desc p{
    font-family: "Amsi-Pro Font", sans-serif;
    color: #184F9E;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 90%;
}

@media screen and (max-width: 1300px) {
    .popup-content {
        background-color: #fefefe;
        font-size: small;
        margin: auto;
        margin-top: 2%;
        padding: 20px;
        border: 1px solid #888;
        width: 70%;
        height: auto;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 23px;
    }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
    }

        .slider:before {
            position: absolute;
            content: "";
            height: 17px;
            width: 17px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        }

    input:checked + .slider {
        background-color: #184F9E;
    }

    input:focus + .slider {
        box-shadow: 0 0 1px #184F9E;
    }

    input:checked + .slider:before {
        -webkit-transform: translateX(17px);
        -ms-transform: translateX(17px);
        transform: translateX(17px);
    }

    .slider.round {
        border-radius: 34px;
    }

        .slider.round:before {
            border-radius: 50%;
        }

    .cookie-consent-header {
        font-weight: bold;
        font-size: medium;
        text-align: center;
    }

    .cookie-consent-footer {
        font-size: large;
    }
}

@media screen and (max-width: 900px) {
    .popup-content {
        background-color: #fefefe;
        font-size: small;
        margin: auto;
        margin-top: 2%;
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        height: auto;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 23px;
    }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
    }

        .slider:before {
            position: absolute;
            content: "";
            height: 17px;
            width: 17px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        }

    input:checked + .slider {
        background-color: #184F9E;
    }

    input:focus + .slider {
        box-shadow: 0 0 1px #184F9E;
    }

    input:checked + .slider:before {
        -webkit-transform: translateX(17px);
        -ms-transform: translateX(17px);
        transform: translateX(17px);
    }

    .slider.round {
        border-radius: 34px;
    }

        .slider.round:before {
            border-radius: 50%;
        }

    .cookie-consent-header {
        font-weight: bold;
        font-size: medium;
        text-align: center;
    }

    .cookie-consent-footer {
        font-size: medium;
    }
}

@media screen and (max-width: 700px) {
    /*1. begin*/
    .popupSelector-container {
        transition: all 0.7s ease-in-out;
        position: fixed;
        z-index: 1000000 !important;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(21, 17, 17, 0.61);
        display: flex;
        align-items: center;
        overflow: auto;
    }
    
    .cookieSelector-consent-footer button{
        height: auto !important;
        line-height: inherit !important;
    }

    #cookie-approve-row{
        font-size:12px;
    }

    .popupSelector-content {
        /* border-radius: 1%; */
        bottom: 0;
        position: fixed;
        background-color: #009FE3;
        padding: 5px;
        border: 2px solid #009FE3;
        width: 100%;
        height: auto;
        margin: 0;
    }

    .cookieSelector-consent-wrapper {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: initial;
    }

    .cookieSelector-consent-header img {
        font-weight: bold;
        font-size: small;
        text-align: center;
        max-height: 25px;
        margin-bottom: 5px;
    }

    .cookieSelector-consent-content p {
        font-family: "Amsi-Pro Font", sans-serif;
        font-size: small;
    }

    .cookie-consent-footer {
        font-size: small;
    }
    /*1. end*/
}

@media screen and (max-width: 600px) {
    .popup-content {
        background-color: #fefefe;
        font-size: x-small;
        margin: auto;
        padding: 10px;
        border: 1px solid #888;
        width: 100%;
        height: auto;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 30px;
        height: 17px;
    }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
    }

        .slider:before {
            position: absolute;
            content: "";
            height: 13px;
            width: 13px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        }

    input:checked + .slider {
        background-color: #184F9E;
    }

    input:focus + .slider {
        box-shadow: 0 0 1px #184F9E;
    }

    input:checked + .slider:before {
        -webkit-transform: translateX(13px);
        -ms-transform: translateX(13px);
        transform: translateX(13px);
    }

    .slider.round {
        border-radius: 34px;
    }

        .slider.round:before {
            border-radius: 50%;
        }

    .cookie-consent-header {
        font-weight: bold;
        font-size: small;
        text-align: center;
    }
}
