/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@page {
    margin: 1cm 1cm 1cm 1cm;
}

:root {
    /* Primary color overrides */
    --bs-primary-rgb: 220, 107, 47; /* RGB values for #DC6B2F */
    --bs-primary: #DC6B2F;
    /* Existing info color overrides */
    --bs-info-rgb: 0, 70, 127;
    --bs-info: rgba(var(--bs-info-rgb), 0.9);
}

/* Existing text-bg-info override */
.text-bg-info {
    color: #fff !important;
}

/* Optional: If you need to ensure primary backgrounds use this color */
.bg-primary {
    background-color: var(--bs-primary) !important;
}

/* Optional: If you need to ensure buttons use this color */
.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

@media print and (min-width: 576px ) {
    .container-sm, .container {
        max-width: 100%;
    }
}

#hero input:required {
    border-bottom: 1px solid rgb(206,212,218);
}

.individual .hostquestion {
    display: none;
}

input:required {
    border-bottom: 1px solid red;
}

select:required {
    border-bottom: 1px solid red;
}

input:valid {
    border-bottom: 1px solid rgb(206,212,218);
}

select:valid {
    border-bottom: 1px solid rgb(206,212,218);
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background-color: white;
}

main {
    margin-top: 95px;
    min-height: 800px;
}

/* Because we have a fixed header we need margin for our main content */
@media (max-width: 992px) {
    main {
        margin-top: 60px;
        min-height: auto;
    }
}

.sold-out label {
   text-decoration: line-through;
}

.selected-sponsor {
    border-width: 5px;
    border-style: solid;
    border-color: rgb(73,163,193);
}

.sponsorpackage {
    cursor: pointer;
}

a {
    color: #00a3e0;
    font-weight: 900;
    text-decoration: underline;
}

    a:hover {
        color: #00a3e0;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

.text-success {
    font-weight: 700;
}

.card {
    border-radius: 3px;
    box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2);
    border-top: 4px solid rgb(73,163,193);
    margin-top: 10px;
}

.card-title {
    color: grey;
}

.dashboard-number {
    color: rgb(64, 164, 244);
    font-size: 32px;
    font-weight: bold;
}

.dashboard-number a {
    text-decoration: none;
}

/* Make the collapsed navbar scrollable on mobile */
@media (max-width: 767.98px) {
    .navbar-collapse {
        max-height: 70vh; /* Limit height to 70% of viewport height */
        overflow-y: auto; /* Enable vertical scrolling */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
}

/* Ensure unauthenticated items stay inline on mobile */
@media (max-width: 767.98px) {
    .navbar-nav.d-flex.flex-row {
        flex-wrap: nowrap; /* Prevent wrapping to new line */
    }

    .navbar-nav .nav-item {
        margin: 0; /* Remove vertical spacing since we're inline */
    }

    .btn-primary {
        font-size: 0.875rem; /* Slightly smaller button text on mobile */
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #DC6B2F ;
        border-top-color: #d2f9eb;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

.tagline {
    color: #DC6B2F;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Center the loader */
#pleasewait {
    position: fixed;
    left: 50%;
    top: 50%;
    display: none;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #00467f;
}

    #header.header-transparent {
        background: transparent;
    }

    #header.header-scrolled {
        background: #00467f;
    }

    #header .logo h1 {
        font-size: 28px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
    }

        #header .logo h1 a, #header .logo h1 a:hover {
            color: #fff;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 80px;
    }

@media (max-width: 576px) {
    #header .logo .logo-img {
        max-height: 60px; /* Adjust this value as needed */
        width: auto;
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    position: relative;
    padding: 120px 0 0 0;
}

    #hero:before {
        content: "";
        background: rgba(44,116,156,.9);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero h1 {
        margin: 0 0 20px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: rgba(255, 255, 255, 0.8);
    }

        #hero h1 span {
            color: #fff;
            border-bottom: 4px solid #DC6B2F ;
        }

    #hero h2 {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
        font-size: 24px;
    }

    #hero h3 {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 40px;
        font-size: 20px;
    }

.btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #DC6B2F;
}

    .btn-get-started:hover {
        background: #f0e6a8;
    }

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        padding-top: 80px;
    }

        #hero .animated {
            -webkit-animation: none;
            animation: none;
        }

        #hero .hero-img {
            text-align: center;
        }

            #hero .hero-img img {
                max-width: 50%;
            }

        #hero h1 {
            font-size: 28px;
            line-height: 32px;
            margin-bottom: 10px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 0px 0;

}

.section-bg {
    background-color: #f5f5ff;
}

.section-title {
    padding-bottom: 40px;
}

    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #aaaaaa;
        font-family: "Poppins", sans-serif;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: #DC6B2F ;
            margin: 4px 10px;
        }

    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 20px;
        font-family: "Poppins", sans-serif;
    }

    .section-title h3 {
        color: #DC6B2F ;
    }



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0 0 0;
    min-height: 40px;
}



.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #6c757d;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}



/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f5f5ff;
    transition: ease-in-out 0.3s;
}

    .features .icon-box i {
        font-size: 32px;
        padding-right: 10px;
        line-height: 1;
    }

    .features .icon-box h3 {
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-size: 16px;
    }

        .features .icon-box h3 a {
            color: #010483;
            transition: ease-in-out 0.3s;
        }

            .features .icon-box h3 a:hover {
                color: #01036f;
            }

    .features .icon-box:hover {
        background: #ebebff;
    }


/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
    margin-top: 100px;
}

.details .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: #010483;
}

.details .content ul {
    list-style: none;
    padding: 0;
}

    .details .content ul li {
        padding-bottom: 10px;
    }

    .details .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #DC6B2F ;
    }

.details .content p:last-child {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/cta-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .testimonials::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(44,116,156,.8);
    }

    .testimonials .section-header {
        margin-bottom: 40px;
    }

    .testimonials .testimonial-item {
        text-align: center;
        color: #fff;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.15);
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #fff;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: #ddd;
            margin: 0 0 15px 0;
        }

        .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
            color: rgba(255, 255, 255, 0.4);
            font-size: 26px;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
            color: #eee;
        }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            opacity: 1;
            background-color: rgba(255, 255, 255, 0.4);
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #DC6B2F ;
        }

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: #DC6B2F ;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

    .pricing h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
    }

    .pricing h4 span {
        color: #bababa;
        font-size: 16px;
        font-weight: 300;
    }

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

    .pricing ul li {
        padding-bottom: 16px;
    }

    .pricing ul i {
        color: #DC6B2F ;
        font-size: 18px;
        padding-right: 4px;
    }

    .pricing ul .na {
        color: #ccc;
        text-decoration: line-through;
    }

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #DC6B2F;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

    .pricing .btn-buy:hover {
        background: #f0e6a8;
        color: #DC6B2F;
    }

.pricing .featured h3 {
    color: #fff;
    background: #DC6B2F ;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #DC6B2F ;
    color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0;
}

    .faq .faq-list ul {
        padding: 0;
        list-style: none;
    }

    .faq .faq-list li + li {
        margin-top: 15px;
    }

    .faq .faq-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
        position: relative;
    }

    .faq .faq-list a {
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        padding: 0 30px;
        outline: none;
        cursor: pointer;
    }

    .faq .faq-list .icon-help {
        font-size: 24px;
        position: absolute;
        right: 0;
        left: 20px;
        color: #34e5a6;
    }

    .faq .faq-list .icon-show, .faq .faq-list .icon-close {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .faq .faq-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

    .faq .faq-list .icon-show {
        display: none;
    }

    .faq .faq-list a.collapsed {
        color: #343a40;
    }

        .faq .faq-list a.collapsed:hover {
            color: #DC6B2F ;
        }

        .faq .faq-list a.collapsed .icon-show {
            display: inline-block;
        }

        .faq .faq-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

    .contact .info i {
        font-size: 20px;
        color: #3f43fd;
        float: left;
        width: 44px;
        height: 44px;
        background: #f0f0ff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #010483;
    }

    .contact .info p {
        padding: 0 0 0 60px;
        margin-bottom: 0;
        font-size: 14px;
        color: #0205a1;
    }

    .contact .info .email, .contact .info .phone {
        margin-top: 40px;
    }

        .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
            background: #DC6B2F ;
            color: #fff;
        }

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input, .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
    }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type="submit"] {
        background: #DC6B2F ;
        border: 0;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .contact .php-email-form button[type="submit"]:hover {
            background: #34e5a6;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #2c749c;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

    #footer .footer-top {
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 15px;
            background: #2c749c;
            color: #fff;
            border-top: 4px solid #DC6B2F ;
            text-align: center;
            padding: 30px 20px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Montserrat", sans-serif;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #DC6B2F ;
                color: #fff;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #DC6B2F;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #4be8b0;
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px 6px 15px;
            position: relative;
            border-radius: 50px;
        }

            #footer .footer-top .footer-newsletter form input[type="email"] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }


#subscribeButton {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #DC6B2F ;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

    #subscribeButton:hover {
        background: #149f6e;
    }


#footer .copyright {
    border-top: 1px solid #DC6B2F ;
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}

.donate-form .select-box label {
    display: block;
    line-height: 24px;
    padding: 12px 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #25283a;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    border-radius: 4px;
    transition: all 500ms ease;
    margin-bottom: 0;
}

.donate-form .select-box input[type="radio"]:checked + label {
    background: #f94f22;
    border-color: #f94f22;
    color: #ffffff;
}

.donate-form .select-box {
    position: relative;
    float: left;
    width: 25%;
    padding: 0px 10px;
    text-align: center;
    margin: 0px 0px 25px;
}

.donate-form .select-amount {
    position: relative;
    margin: 0px -10px;
}

.donate-form .select-box input[type="radio"] {
    left: 0px;
    top: 0px;
    visibility: hidden;
    position: absolute;
    opacity: 0;
}

@media print {
    .fixed-table-toolbar {
        display: none;
    }
}

event-participation-cancellation-insurance {
  --vi-color-primary: #2c749ce6;
  --vi-color-secondary: #DC6B2F;
  --vi-color-secondary-contrast-text: #ffffff;
  --vi-color-success: #1b8653;
  --vi-color-success-bg: #d0e7de;
  --vi-color-danger: #dc3445;
  --vi-color-danger-bg: #f9d6da;
  --vi-border-radius: 0.25rem;
  font-size: 0.9rem;
}

.registerheader {
    background-color: #ffffff;

}

.char-counter {
    float: right;
    font-size: 0.8em;
    color: #6c757d;
    margin-top: 5px;
}

th.sortable {
    cursor: pointer;
}

    th.sortable:hover {
        background-color: #f8f9fa;
    }


.th-content {
    display: flex;
    flex-direction: column;
}

.th-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}

.filter-icon {
    cursor: pointer;
    margin-left: 5px;
}

    .filter-icon:hover {
        color: #007bff;
    }

.filter-row th {
    padding-top: 0;
}

#adminDetailsTable {
    width: 100%;
    table-layout: fixed;
}

#adminDetailsTable td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-select {
    width: 100%;
    box-sizing: border-box;
}

.status-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

trix-editor blockquote {
    margin-left: 20px;
    font-size: 0.9em;
}