.page-list{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin:30px 0;
    padding:0;
    list-style:none;
}

.page-list li{
    list-style:none;
}

.page-list li a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    padding:0 14px;
    border:1px solid #d9d9d9;
    border-radius:8px;
    background:#fff;
    color:#246c41;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

.page-list li a:hover{
    background:#246c41;
    border-color:#246c41;
    color:#fff;
    transform:translateY(-2px);
}

.page-list li a.active-page,
.page-list li.active a{
    background:#bda158;
    border-color:#bda158;
    color:#fff;
    box-shadow:0 4px 12px rgba(189,161,88,.35);
}

.page-list li span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    color:#246c41;
    font-weight:700;
}

.page-list .fa-chevron-left,
.page-list .fa-chevron-right{
    font-size:13px;
}

.page-list .has-arrow a{
    background:#246c41;
    color:#fff;
    border-color:#246c41;
}

.page-list .has-arrow a:hover{
    background:#bda158;
    border-color:#bda158;
    color:#fff;
}


.col-auto.position-relative .fa-search{
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#6c757d;
    z-index:10;
    pointer-events:none;
}

.searchInput{
    padding-left:45px !important;
}


.modal {
    z-index: 99999 !important;
}

.modal-backdrop {
    z-index: 99998 !important;
}

.modal-close-btn{
    position:absolute;
    top:15px;
    right:15px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#f5f5f5;
    cursor:pointer;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.modal-close-btn:hover{
    background: #fbe394;
    color:#fff;
}

.no-hover:hover{
    background: transparent !important;
    color: inherit !important;
    border-color: inherit !important;
}


  /* Toast Container */
#toast-container{
    position:fixed;
    top:20px;
    right:20px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* Toast Box */
.toast{
    min-width:320px;
    max-width:400px;
    padding:15px 45px 15px 20px;
    border-radius:10px;
    color:#fff;
    font-size:14px;
    font-weight:500;
    line-height:1.5;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
    position:relative;
    overflow:hidden;
    animation:slideIn .3s ease forwards;
}

/* Success */
.toast-success{
    background:#28a745;
}

/* Error */
.toast-error{
    background:#dc3545;
}

/* Warning */
.toast-warning{
    background:#ffc107;
    color:#212529;
}

/* Info */
.toast-info{
    background:#0dcaf0;
    color:#212529;
}

/* Close Button */
.close-btn{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
    cursor:pointer;
    opacity:.8;
    transition:.3s;
    user-select:none;
}

.close-btn:hover{
    opacity:1;
}

/* Hide Animation */
.toast.hide{
    animation:slideOut .3s ease forwards;
}

/* Toast Coming Animation */
@keyframes slideIn{
    from{
        opacity:0;
        transform:translateX(100%);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Toast Going Animation */
@keyframes slideOut{
    from{
        opacity:1;
        transform:translateX(0);
    }
    to{
        opacity:0;
        transform:translateX(100%);
    }
}

/* Responsive */
@media(max-width:576px){

    #toast-container{
        top:15px;
        right:15px;
        left:15px;
    }

    .toast{
        min-width:100%;
        max-width:100%;
    }

}

.hero-banner{
    position:relative;
    width:100%;
    overflow:hidden;
}

.single-banner img{
    width:100%;
    display:block;
}

@media(min-width:992px){
    .single-banner img{
        /*height:700px;*/
        object-fit:cover;
    }
}

/* Buttons */

.banner-prev,
.banner-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    z-index:999;
    background:#fff;
}

.banner-prev{
    left:25px;
}

.banner-next{
    right:25px;
}

.banner-prev:hover,
.banner-next:hover{

    opacity:.9;

}
.slick-dots {
  display: none!important;
}