/*Policy form agree*/
.popup2_bot_row_policy {
    display: flex;
    justify-content: center;
}

.popup2_bot_row_policy input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.popup2_bot_row_policy label {
    display: flex;
    cursor: pointer;
    font-size: 14px;
    position: relative;
}

.popup2_bot_row_policy label::before {
    content: '';
    display: inline-block;
    min-width: 18px;
    height: 18px;
    border: 2px solid #3db05e;
    border-radius: 3px;
    margin-right: 10px;
    transition: all 0.2s ease;
}

.popup2_bot_row_policy input[type="checkbox"]:checked + label::before {
    background: #3db05e;
    border-color: #3db05e;
}

.popup2_bot_row_policy input[type="checkbox"].red + label::before {
    border-color: rgb(251, 111, 113);
    background: rgb(255, 236, 236);
}

.popup2_bot_row_policy input[type="checkbox"].red + label {
    color: rgb(251, 111, 113);
}

.popup2_bot_row_policy input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    transform: rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.popup2_bot_row_policy input[type="checkbox"]:focus + label::before {
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
}

.popup2_bot_row_policy a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.popup2_bot_row_policy a:hover {
    color: #3db05e;
    text-decoration: none;
}
/*Cookie notice*/
.cookie-notice-square {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 370px;
    background: #fff;
    color: #333;
    padding: 20px;
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease-out;
    border: 1px solid #e0e0e0;
    display: none;
}

.cookie-notice-square.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-btn {
    background: linear-gradient(135deg, #6791DD 0%, #3DB05E 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    min-width: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.cookie-btn {
    background: linear-gradient(135deg, #6791DD 0%, #3DB05E 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    min-width: 100px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cookie-btn:hover {
    background: linear-gradient(45deg, #7298E0 0%, #45B865 100%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.cookie-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #7298E0 0%, #45B865 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 4px;
}

.cookie-btn:hover::before {
    opacity: 1;
    animation: gradientShift 3s ease infinite alternate;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(45deg, #7298E0 0%, #45B865 100%);
    }
    100% {
        background: linear-gradient(45deg, #6791DD 10%, #3DB05E 90%);
    }
}

.cookie-link {
    color: #666;
    font-size: 14px;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #333;
}

@media (max-width: 600px) {
    .cookie-notice-square {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 600px) {
    .cookie-notice-square {
        bottom: 0;
        right: 0;
        max-width: 100vw;
    }
}

#footer-bot {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    opacity: initial;
    gap: 15px;
}

#footer-bot::before {
    opacity: .2;
}

.site-support {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: .7;
}

.site-support a {
   text-decoration: none;
}

.site-support__logo {
    display: flex;
    align-items: center;
}

.site-support__text {
    text-align: left;
}

.site-support__text a{
    color: #fafafa;
}

#footer-bot .copyright {
    opacity: .7;
}
