/*
Theme Name:     Divi Child
Theme URI:      https://elegantthemes.com
Description:    Child Divi theme
Author:         Mykyta
Template:       Divi
Version:        1.0.0
*/

.custom-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999998;
}


.custom-popup-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 999999;
    text-align: center;
    box-sizing: border-box;
}

.custom-popup-box h3 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.custom-popup-box p {
    font-size: 16px;
    color: #666;
    padding-bottom: 0;
}

.popup-btn-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.popup-btn {
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: background 0.2s;
}

.popup-btn.confirm {
    background-color: #41547D;
    color: #fff !important;
    border: 1px solid #41547d00;
    transition: .3s;
}
.popup-btn.confirm:hover{
    background-color: #fff;
    color: #41547D !important;
    border: 1px solid #41547D;
}

.popup-btn.confirm2 {
    background-color: #fff;
    padding: 11px 23px;
    border: 1px solid #41547D;
    color: #41547D !important;
    transition: .3s;
}
.popup-btn.confirm2:hover{
    background-color: #41547D;
    color: #fff !important;
}

.popup-btn.close-popup {
    position: absolute;
    right: 8px;
    top: 8px;
    background-color: inherit;
    border: 1px solid red;
    padding: 10px 11px;
    line-height: 1;
    border-radius: 100px;
}
.popup-btn.close-popup svg path{
    fill: red;
}