/*Post Slide in Home*/

.autoplay h3.mega-post-title-news {
    font-size: 20px !important;
    padding: 10px 12px;
    line-height: 1.4;
}
.autoplay h3.mega-post-title-news a {
    font-size: 18px;
    color: #3a3a3a;
    line-height: 1.4;
}
.mega-post-carousel-news {
    border-radius: 10px;
    height: 300px;
    border: 1px solid #d8dde2;
}
.mega-post-carousel-news img {
    overflow: hidden;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.mega-post-carousel-news:hover img {
    -webkit-transform: scale(.9, .85) !important;
    -moz-transform: scale(.9, .85);
    -ms-transform: scale(.9, .85);
    -o-transform: scale(.9, .85);
    transform: scale(.9, .85) !important;
    border-radius: 10px;
}
.mega-post-carousel-news img {
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 100%;
}
.mega-post-carousel-news:hover {
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 100%;
    background: #449ce4;
}
.mega-post-carousel-news:hover h3.mega-post-title-news a {
    color: #fff;
}
.mega-post-carousel-news-last {
    border-radius: 10px;
    height: 300px;
    border: 1px solid #d8dde2;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}
.mega-post-carousel-news-last a {
    background-color: #fff;
    color: #004f93;
    border: 1px solid #004f93;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    height: 40px;
    width: 134px;
    border-radius: 10px;
}
.autoplay .slick-prev:before {
    content: "\f104";
    color: #202020 !important;
    font-family: 'FontAwesome';
    font-size: 25px !important;
    opacity: 1 !important;
}
.autoplay .slick-next:before {
    content: "\f105";
    color: #202020 !important;
    font-family: 'FontAwesome';
    font-size: 25px !important;
    opacity: 1 !important;
}
button.slick-prev.slick-arrow.slick-disabled, button.slick-next.slick-arrow.slick-disabled {
    display: none !important;
}
.autoplay button.slick-prev.slick-arrow, .autoplay button.slick-next.slick-arrow {
    background: #fff !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    justify-content: center;
    position: absolute;
    top: 50%;
    width: 35px;
}
.autoplay .slick-next {
    right: -0.75rem;
}
.autoplay .slick-prev {
    left: -0.75rem;
    z-index: 1;
}

#loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; /* Ensure it appears above everything */
    text-align: center;
}

.spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile */

@media screen and (max-width: 768px) {
    .mega-post-carousel-news, .mega-post-carousel-news-last {
        border-radius: 10px;
        height: 360px;
        border: 1px solid #d8dde2;
    }
}

