#cookie-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

#cookie-popup .popup-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 0px;
    max-width: 400px;
    font-family: sans-serif;
    position: relative;
}

#cookie-popup h3 {
    margin-top: 0;
    font-size: 17px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 15px;
}
#cookie-popup .popup-content p {
    text-align: center;
    font-size: 15px;
    color: #898989;
}

.all-btn {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

#cookie-popup .popup-btn {
    color: white;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 0;
    border: 0;
    text-align: center;
    width: 100%;
    font-family: "Miller Display Light";
}
#cookie-popup a.popup-btn.primary {
    background: #000000;
}

#cookie-popup button#recheck-cookies {
    background: #ac8e66;
}

#cookie-popup button#recheck-cookies:hover {
    background: #000000;
}

#cookie-popup a.popup-btn.primary:hover {
    background: #ac8e66;
}

#cookie-popup button#close-cookie-popup {
    color: #000;
    margin-top: 15px;
    border-top: 1px dashed #00000024;
    background: transparent;
}
/* دکمه بستن */
#cookie-popup .popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

#cookie-popup .popup-content .box-icon {
    width: 50px;
    height: 50px;
    background: #ac8e66;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #fff;
    margin: 0 auto 15px;
}