.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Окно */
.modal-window {
    background: #1a1a1d;
    max-width: 420px;
    width: 90%;
    padding: 22px;
    border-radius: 12px;
    animation: showModal .25s ease-out;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    font-family: Arial, sans-serif;
    color: #e6e6e6;
    border: 1px solid rgba(255,255,255,0.08);
}

@keyframes showModal {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #ffffff;
}

.modal-body {
    font-size: 16px;
    line-height: 1.55;
    color: #cccccc;
}

.modal-body strong {
    color: #ffffff;
}

.modal-footer {
    text-align: right;
    margin-top: 20px;
}

.modal-btn {
    padding: 8px 16px;
    border: none;
    background: #3a7bfd;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background .15s ease;
}

.modal-btn:hover {
    background: #2f64d2;
}

.social-icon a,img{

	width: 17px;
	height: 17px;
}