/*
 * popup
 */
 
.privacy-iframe {
    height: 80vh;
}
 
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999999;
    justify-content: center;
    align-items: center;
}

.privacy-popup {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 800px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.privacy-popup h2 {
    margin: 0;
    padding: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
    background: none;
    border: none;
}

.close-btn:hover {
    color: #333;
}

.privacy-iframe {
    border: none;
    flex-grow: 1;
    width: 100%;
    border-radius: 0 0 8px 8px;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.privacy-link {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 768px) {
    .privacy-popup {
        width: 95%;
        height: 90vh;
    }
}

/* Стили для плашки */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #061E2F; /* Цвет фона плашки */
    color: #fff; /* Цвет текста */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-sizing: border-box;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner p {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.cookie-banner a {
    color: #fff; /* Цвет ссылки */
    text-decoration: underline;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cookie-banner a:hover {
    color: #0097b7; /* Цвет ссылки при наведении */
}

.accept-button {
    background: linear-gradient(to right, #02A9E1, #02E1E1);
    color: #fff; /* Цвет текста кнопки */
    border: none;
    padding: 8px 20px;
    font-family: Raleway, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.accept-button:hover {
    background: linear-gradient(to right, #0280b7, #02b7b7);
    transform: translateY(-1px);
}

/* Мобильная версия */
@media(max-width: 767px) {
    .cookie-banner {
        padding: 12px 15px;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cookie-banner p {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .accept-button {
        padding: 6px 16px;
        font-size: 13px;
        min-width: 100px;
    }
}

/* Для очень маленьких экранов */
@media(max-width: 480px) {
    .cookie-banner {
        padding: 10px 12px;
        gap: 10px;
        bottom: 50px;
    }
    
    .cookie-banner p {
        font-size: 11px;
    }
    
    .cookie-content {
        gap: 10px;
    }
}

.node705 a, .node738 a {
    background-color: rgba(0, 117, 255, 0);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-style: dashed;
    border-top-width: 0px;
    border-bottom-width: 1px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-color: rgb(255, 255, 255);
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-family: "Fira Sans";
    text-decoration: none;
    color: #fff !important;
    display: flex;
}

.node738 {
    display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.node705 a:hover, .node738 a:hover {
    color: rgb(255, 203, 2);
}

@media(max-width:1199px) {
  body.area {
    padding-bottom: 38px;
  }
}


