﻿
/*GENERAL POPUP*/

a {
    color: #35376C;
}

.popup__container {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
    width: 100%;
    background: #00000042;
}

.popup__wrapper {
    background: #fff;
    padding: 25px 40px;
    border: #35376C 3px solid;
    border-radius: 29px;
    max-height: 700px;
    overflow: auto;
    width: 100%;
}

.close-popup-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.close-popup-button {
    cursor: pointer;
}

.close-popup-button i {
    font-size: 25px;
    color: #35376C;
}

.popup-heading {
    margin: 0 0 21px 0;
}

.popup-button-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 39px 0 20px 0;
}

.popup-button {
    width: 100%;
    height: 48px;
    background: #35376C;
    border-radius: 27px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    font-family: montserrat, sans-serif;
}

/*COOKIES POPUP*/

.necessary-cookies__container {
    display: flex;
    margin: 20px 0 0 0;
}

.necessary-cookies__toggle,
.necessary-cookies__text {
    width: 50%;
}

.necessary-cookies__text p {
    margin: 0;
}

.necessary-cookies__toggle {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.switch__cookie {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 21px;
    margin: 0;
}

.switch__cookie input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider__cookie {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider__cookie:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: -4px;
    bottom: 3px;
    background-color: #FFFFFF;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider__cookie {
    background-color: #35376C;
}

input:focus + .slider__cookie {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider__cookie:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider__cookie.round__cookie {
    border-radius: 34px;
    height: 100%;
}

.slider__cookie.round__cookie:before {
    border-radius: 50%;
}

.turn-off__cookies-container {
    display: flex;
    border-bottom: 2px solid #35376C;
}

.turn-off__cookies-text,
.turn-off__cookies-link {
    width: 50%;
}

.turn-off__cookies-link {
    display: flex;
    justify-content: flex-end;
}

.turn-off__cookies-text p {
    font-weight: 600;
    font-size: 14px;
}

/*DIALOG POPUP YES OR NO*/

#dialogbox-backgroung18 .popup-button:nth-child(1) {
    margin: 0 0 20px 0;
}


@media only screen and (min-width: 782px) {
    .popup__wrapper {
        width: 782px;
    }

    .popup-button {
        width: 234px;
        height: 53px;
    }

    #dialogbox-backgroung18 .popup-button:nth-child(1) {
        margin: 0 20px 0 0;
    }

    .popup-button-wrapper {
        flex-direction: row;
    }
}

