a:hover,
a {
    color: #002c66;
}
.text_shadow {
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.9);
}
.modal-body label span {
    background-color: white !important;
    box-shadow: 0 0 5px 5px #00000020 !important;
}

.file_button {
    border: none;
    background: none;
}
.file_button:focus-visible {
    outline: none;
}
.file_button:focus {
    outline: none;
}
.tab-btn {
    border-radius: 5px 5px 0 0 !important;
}

.nav-tabs .nav-item {
    margin-right: 5px;
}

.nav-tabs .nav-link.active {
    background-color: #002c66 !important;
    color: white !important;
    border-color: #002c66 !important;
}

#drop-area {
    border: 2px dashed #002c6620 !important;
    border-radius: 5px;
    background: #f9f9f9;
    cursor: pointer;
    transition: background 0.3s ease;
}

#drop-area.dragover {
    background: #e0e0e0;
    border-color: #000;
}

.text_primary_orange {
    color: #dd6d06 !important;
}

.text-primary {
    color: #002c66 !important;
}

.text_primary_light {
    color: #247bf2 !important;
}

.rounded_md {
    border-radius: 12px !important;
}

.rounded_lg {
    border-radius: 15px !important;
}

.btn-primary {
    background-color: #002c66 !important;
}
.btn-outline-primary {
    border-color: #002c66 !important;
    color: #002c66 !important;
}
.btn-outline-primary:hover {
    background-color: #002c66 !important;
    color: #fff !important;
}

.btn_primary_light {
    background-color: #247bf2 !important;
    color: #fff !important;
}

.bg-primary {
    background-color: #002c66 !important;
}

.bg-white-50 {
    background-color: #ffffff50 !important;
}
.bg-main {
    background-color: #008cc4 !important;
}

.bg-main-dark {
    background-color: #03295d !important;
}

.btn_primary_gmp {
    background-color: #008cc4 !important;
}

.btn-gradient-blue {
    background: linear-gradient(to right, #012f6b, #1257ae, #012f6b);
    color: #fff;
    background-size: 200% auto;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bg-gradient-nav {
    background-image: linear-gradient(
        to right top,
        #002c66,
        #002c66,
        #052043,
        #052043
    );
}

.btn-gradient-blue:hover {
    color: white;
}
.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.activity_detail_image_main {
    height: 100%;
    max-height: 500px;
    object-fit: cover;
}
.activity_detail_image_sub {
    height: 100%;
    max-height: 100px;
    object-fit: cover;
}

.home_page_activity_image {
    height: 350px;
    object-fit: cover;
}

.home_business_image {
    height: 260px;
    object-fit: cover;
}

.home_business_icon {
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.noti-icon {
    top: -7px;
    right: -7px;
    padding: 6px;
}
@media (max-width: 1200px) {
    .activity_detail_image_main {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .activity_detail_image_main {
        height: 280px;
    }
    .home_business_icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .activity_detail_image_main {
        height: 280px;
    }
    .home_business_icon {
        width: 70px;
        height: 70px;
    }
}
.nav-active {
    color: #ffffff !important;
    background-color: #ff8a1d !important;
    font-weight: bold !important;
    text-decoration: underline !important;
    text-wrap: nowrap !important;
    text-underline-offset: 5px !important;
    text-decoration-color: #ff8a1d !important;
    text-decoration-thickness: 3px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 7px; */
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
    box-shadow: 0 0 8px #00000020;
    width: 100px;
    height: 40px;
    text-align: center;
}
.title-banner {
    width: 100%;
    height: auto;
    display: block;
    animation: zoomInAndOut 9s ease-in-out infinite;
}
@keyframes zoomInAndOut {
    0% {
        transform: scale(1.01);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.09);
        opacity: 1;
    }
    90% {
        transform: scale(1.01);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.01);
        opacity: 0.8;
    }
}
