#flexiselDemo1,
#flexiselDemo2,
#flexiselDemo3 {
    display: none;
}

.nbs-flexisel-container {
    position: relative;
    max-width: 100%;
}

.nbs-flexisel-ul {
    position: relative;
    width: 99999px;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    text-align: center;
    overflow: auto;
}

.nbs-flexisel-inner {
    position: relative;
    overflow: hidden;
    float: left;
    width: 100%;
}

.nbs-flexisel-item {
    float: left;
    margin: 0px;
    padding: 5px;
    cursor: pointer;
    position: relative;
    line-height: 0px;
    left: auto;
}

.nbs-flexisel-item img {
    max-width: 100%;
    cursor: pointer;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    padding: 5px 10px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    position: absolute;
    cursor: pointer;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.nbs-flexisel-nav-left {
    left: 10px;
}

.nbs-flexisel-nav-left:before {
    content: "<"
}

.nbs-flexisel-nav-left.disabled {
    opacity: 0.4;
}

.nbs-flexisel-nav-right {
    right: 5px;
}

.nbs-flexisel-nav-right:before {
    content: ">"
}

.nbs-flexisel-nav-right.disabled {
    opacity: 0.4;
}




/* Overlay */
.lotuspopup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal */
.lotuspopup-modal {
    background: #c6c653;
    color: #111;
    max-width: 500px;
    width: 90%;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

/* Close button */
.lotuspopup-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #0099a8;
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    line-height: 1;
    border-radius: 4px;
    cursor: pointer;
}

/* Content */
.lotuspopup-title {
    margin-top: 0;
    font-size: 1.5rem;
}

.lotuspopup-text {
    margin: 1rem 0;
    font-size: 1rem;
}

.lotuspopup-cta {
    display: inline-block;
    padding: .75rem 1.5rem;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.lotuspopup-contact a {
    color: #0099a8;
    font-weight: bold;
    text-decoration: none;
}

/* Responsive */
@media (max-width:480px) {
    .lotuspopup-modal {
        padding: 1rem;
    }

    .lotuspopup-title {
        font-size: 1.25rem;
    }

    .lotuspopup-cta {
        width: 100%;
        box-sizing: border-box;
    }
}