/* Additional styles for Kouncel application */

.EgyPay, .WorldPay {
    display: none; /* Initially hide both divs */
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: black;
    margin: 15% auto;
    padding: 20px;
    width: 14%;
    border: 1px solid #888;
    border-radius: 4px;
    text-align: center;
}

/* Loader styles */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #551118;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.category-name::after {
    content: "";
    display: block;
    margin-top: 8px;
    width: 96px;
    height: 8px;
    background-color: var(--bs-primary);
    border-radius: 8px;
}

.video-js {
    width: 100% !important;
}

.popup-box-body .video-js {
    min-width: 70vw;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 75px;
    right: 13px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

/* Loader Container */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Hide Loader */
body.loaded #loader {
    display: none;
}