/* Cookies table - START */
.cookies-table{
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 50px;
}
.cookies-table th{
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    color: #00395f;
}
.cookies-table th,
.cookies-table td{
    padding: 20px;
    vertical-align: middle;
    text-align: left;
}
.cookies-table td{
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.cookies-table ul li{
    list-style: disc inside;
}
/* Cookies table - END */

/* Cookies Banner - START */
.cookies-banner{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    padding: 30px 0 40px;
    font-size: 14px;
    background-color: #eee;
    background-color: rgba(238, 238, 238, 0.93);
    border-top: 2px solid #003760;
    color: #000;
    display: none;
}
.cookies-banner__wrapper{
    max-width: 1200px;
    margin: 0 auto;
}
.cookies-banner .cookies-buttons{
    padding-bottom: 0;
}
.cookies-success-message{
    font-weight: bold;
    color: green;
    font-size: 15px;
    display: block;
}
.cookies-banner__description-desktop{
    display: block;
}
.cookies-banner__description-mobile{
    display: none;
}
/* Cookies Banner - END */

/* Buttons - START */
.cookies-buttons{
    padding: 30px 0 50px;
    text-align: center;
}
.cookies-buttons .cookies-button:not(:last-child){
    margin-right: 30px;
}
.cookies-button:focus,
.cookies-button{
    color: #fff;
    padding: 9px 19px;
    cursor: pointer;
    height: auto;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #568901;
    font: 600 16px/26px "Open Sans",Tahoma,sans-serif;
    box-shadow: 0px 1px 0px #b3e817 inset;
    box-sizing: border-box;
    border-radius: 4px;
    background: #7dc10c;
    display: inline-block;
}
.cookies-button_light:focus,
.cookies-button_light{
    background-color: #fff;
    color: #003259;
    border-color: #003259;
    box-shadow: none;
}
.cookies-button_simple:focus,
.cookies-button_simple{
    background: none;
    border: none;
    color: #003259;
    box-shadow: none;
    font-size: 13px;
}
.cookies-button_size_big:focus,
.cookies-button_size_big{
    font-size: 21px;
    padding: 17px 35px;
}
/* Buttons - END */

/* Checkbox - START */
.checkbox{
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}
.checkbox *{
   -moz-user-select: none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;
}
.checkbox__input{
    position: absolute;
    left: -9999px;
}
.checkbox__text{
    position: relative;
    /* padding-left: 50px; */
    padding-right: 50px;
    height: 42px;
    line-height: 42px;
    font-size: 15px;
    display: inline-block;
    transition: all 300ms;
    color: #229888;
}
.checkbox__text::after,
.checkbox__text::before{
    content: "";
    position: absolute;
    display: block;
    transition: all 300ms;
}
.checkbox__text::before{
    /* left: 0; */
    right: 0;
    top: 3px;
    height: 27px;
    width: 27px;
    border: 5px solid #7f7f7f;
    background-color: #fff;
    z-index: 2;
    border-radius: 3px;
}
.checkbox__text::after{
    z-index: 3;
    /* left: 3px; */
    right: 3px;
    top: 5px;
    height: 30px;
    width: 30px;
    background-color: #13668c;
    transform: scale(0);
    background: url('../images/Check.svg') no-repeat center center;
    background-size: cover;
}
.checkbox__input:checked + .checkbox__text::before{
    background-color: #229888;
    border-color: #229888;
}
.checkbox__input:checked + .checkbox__text::after{
    transform: scale(1);
}
.checkbox_disabled{
    cursor: not-allowed;
}
.checkbox_disabled .checkbox__text{
    color: #7f7f7f;
}
.checkbox_disabled .checkbox__input:checked + .checkbox__text::before{
    background-color: #7f7f7f;
    border-color: #7f7f7f;
}
/* Checkbox - END */

/* Media Queries - START */
@media screen and (max-width: 1200px){
    .cookies-banner__wrapper{
        max-width: 98%;
    }
}
@media screen and (max-width: 800px){
    .cookies-table td{
        vertical-align: top;
    }
    .cookies-table-wrapper{
        overflow: auto;
    }
    .cookies-table-wrapper::before{
        content: "\02190 \02192";
        font-size: 35px;
        line-height: 1;
        letter-spacing: 15px;
        display: block;
    }
    .cookies-table-wrapper .cookies-table{
        width: 800px;
    }
}
@media screen and (max-width: 600px){
    .cookies-banner__description-desktop{
        display: none;
    }
    .cookies-banner__description-mobile{
        display: block;
    }
    .cookies-banner{
        padding: 10px 0;
    }
    .cookies-buttons{
        padding-top: 10px;
    }
    .cookies-buttons .cookies-button:not(:last-child){
        margin: 0 0 10px 0;
    }
}
/* Media Queries - END */