@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap');

.fx-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    font-family: "Work Sans", sans-serif;
}

.fx-popup-container.fx-popup-show {
    opacity: 1;
}

.fx-popup-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 90%;
    padding: 25px;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.fx-popup-header {
    padding: 10px 20px 18px 20px;
    display: flex;
    justify-content: center;    
}

.fx-popup-header h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.4;
    color: #141414;
    font-weight: 500;
    text-align: center;
}

.fx-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    line-height: 1;
}

.fx-popup-close:hover {
    color: #333;
}

.fx-popup-body {
    padding: 0;
    color: #141414;
    line-height: 1.23;
    max-height: 430px;
    height: 47.5vh;
    overflow-y: auto;    
}
.fx-popup-body p{
    color: #141414;
    line-height: 1.26;
    font-size: 15.9px;
    margin: 0;
    }
.fx-popup-body p+p{
    margin-top: 8px;
    }
    .fx-popup-body b{
    font-weight: 600;
    }
.fx-popup-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}
.fx-buttons{
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top:10px;
    margin-bottom:15px;
}
.fx-buttons button{
    line-height: 1.2;
     font-size: 18px;
    font-weight: 400!important;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px 20px;
    outline: 0px;
    appearance: none;
    border-radius: 7px;
}
.fx-popup-button {
    color: #141414;
    border-color: rgb(0, 208, 166);
    background-image: linear-gradient(90deg, rgb(0, 230, 156) 0%, rgb(0, 208, 166) 50%, rgb(0, 189, 175) 75%, rgb(0, 189, 175) 95%, rgb(0, 230, 156) 100%);
    border: 1px solid rgb(255, 255, 255);
}
.fx-popup-button:hover {
    color: white;
}
.fx-popup-close{
    border: 1px solid rgb(255, 255, 255);    
    color: rgb(255, 255, 255);
    flex-shrink: 1;
    background-color: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
}
.fx-popup-close:hover{
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    border-color: rgb(0, 230, 156);
}

@media (max-width: 767px) {
    .fx-popup-header {
    padding: 10px 20px 10px 20px;    
}
.fx-buttons{
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}
.fx-popup-button {
    width: 100%;
    max-width: 200px;
}
.fx-popup-body p{
    line-height: 1.25;
    font-size: 15px;    
    }
    .fx-popup-header h3 {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .fx-popup-content {
        width: 95%;
    }
        
    .fx-popup-body {
        padding: 15px;
    }
} 