.modal-root {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    background-color: #0000cc40;
}
.modal-window {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: white;
    height: 400px;
    margin-top: 10%;
    max-width: 700px;
    min-width: 320px;
}
.modal-1 > p,.modal-2 > p {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: var(--blue02);
} 
.modal-1 {
    flex: 0 40%
}
.modal-2 {
    flex: 0 40%;
}
.modal-or {
    flex: 0 6%;
    color: var(--blue02);
    font-weight: 600;
}
#z-tel {
    outline:1px solid var(--blue02);
    border:1px solid var(--blue02);
    background-color: white;
    height: 35px;
}
#z-button {
    color: var(--blue02);
    background-color: white;
    border: 1px solid var(--blue02);
    height: 37px;
    font-size: 14px;
    width: fit-content;
    margin-left: 20px;
    font-weight: 700;
}
#z-button:hover {
    color: white;
    background-color: var(--blue02);
    outline: 1px solid var(--blue02);
    border: 1px solid white;
}

.modal-2 > nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.modal-2 > nav > a {
    margin-right: 20px;
    color: var(--blue02);
    padding-left: 20px;
    background-repeat: no-repeat;
    padding-left: 30px;
    background-size: contain;
    margin-top: 12px;
    margin-bottom: 12px;
}
.modal-tel {
    background-image: url('../../others/symbols/mobile-blue.png');
}
.modal-telegram {
    background-image: url('../../others/symbols/telegram.png');
}
.modal-whatsApp {
    background-image: url('../../others/symbols/whatsapp.png');
}
.modal-mail {
    background-image: url('../../others/symbols/mail.png');
}
#modal-skip {
    background-color: transparent;
    background-image: url('../../others/symbols/close.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    position: absolute;
    height: 40px;
    width: 40px;
    top: 10px;
    right: 10px;
}
@media(min-width:401px) {
    .modal-window {
        width: 30%;
        margin-left: 10%;
    }
}