.cookie-popup-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    width: calc(100% - 40px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: transform .3s ease,opacity .3s ease;
    padding: 30px
}

.cookie-popup-container.show {
    transform: translateY(0);
    opacity: 1
}

.cookie-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s ease;
    padding: 0
}

.cookie-popup-close:hover {
    background: #f3f4f6
}

.cookie-popup-close svg {
    width: 20px;
    height: 20px
}

.cookie-popup-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}

.cookie-popup-icon img {
    width: 60px;
    height: 60px
}

.cookie-popup-content {
    text-align: center
}

.cookie-popup-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #464860;
    margin-bottom: 12px
}

.cookie-popup-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    color: #60738a;
    margin-bottom: 20px
}

.cookie-popup-buttons {
    gap: 12px
}

.cookie-popup-button,.cookie-popup-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.cookie-popup-button {
    padding: 0 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    text-align: center;
    text-decoration: none;
    width: 100%;
    height: 45px
}

.cookie-popup-button.primary {
    background: #0654e6;
    color: #fff
}

.cookie-popup-button.primary:hover {
    background: #0443c5;
    transform: translateY(-2px)
}

.cookie-popup-button.secondary {
    background: transparent;
    color: #0654e6;
    border: 1px solid #0654e6
}

.cookie-popup-button.secondary:hover {
    background: #f0f7ff
}

.cookie-toggle-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #e1ecfa;
    border: none;
    cursor: pointer;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    padding: 0
}

.cookie-toggle-button:hover {
    transform: translateY(-4px)
}

.cookie-toggle-button img {
    width: 50px;
    height: 50px
}

.cookie-toggle-button.hidden,.hideBtn {
    display: none
}

@media (max-width: 575px) {
    .cookie-popup-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        width: calc(100% - 20px);
        padding: 20px
    }

    .cookie-toggle-button {
        bottom: 10px;
        left: 10px;
        width: 50px;
        height: 50px
    }

    .cookie-toggle-button img {
        width: 40px;
        height: 40px
    }

    .cookie-popup-icon img {
        width: 50px;
        height: 50px
    }

    .cookie-popup-title {
        font-size: 18px
    }

    .cookie-popup-text {
        font-size: 13px
    }
}
