:root {
    /* --orange: #EB7D00; */
    /* --black: #1C1C1C;
    --blue: #1A1A88;
    --gray: #6D6D6D; */
    /* --light-orange: #FFF5E9; */
}

body {
    font-family: "Inter", sans-serif;
}

.spline-sans {
    font-family: "Spline Sans", sans-serif;
}

.inter {
    font-family: "Inter", sans-serif;
}

.bg-light-orange {
    background: var(--light-orange);
}

.bg-orange {
    background: var(--orange) !important;
}

.text-orange {
    color: var(--orange);
}

.text-black-dark {
    color: var(--black);
}

.text-blue {
    color: var(--blue);
}

.text-gray-color {
    color: var(--gray);
}

.font-xs {
    font-size: 14px;
}

/* header */
header {
    height: 105px;
}

.navbar-nav.menubar {
    li a {
        color: var(--black);
        text-decoration: none;
    }
    li a:hover {
        color: var(--orange) !important;
    }
}

.avatar {
    cursor: pointer;
    font-size: 14px;

    &:hover .fa-chevron-down {
        transform: rotate(-180deg);
    }

    &:hover .profile-tooltip {
        display: block;
    }

    .profile-tooltip {
        display: none;
        position: absolute;
        width: 100%;
        background-color: #fff;
        padding: 10px;
        top: 100%;
        z-index: 1;
        border-radius: 6px;
        box-shadow: 0px 0px 8px rgb(212, 212, 212);

        ul {
            list-style: none;
            padding: 0;
            text-align: center;

            li {
                padding: 5px;

                a {
                    color: var(--black);
                    width: 100%;
                    font-size: 14px;
                    text-decoration: none;
                    display: block;
                }

                &:hover {
                    background-color: #ededed;
                }
            }
        }
    }
}

/* agenda css */
.filter-box{
    position: absolute;
    top: 45px;
    width: 16rem;
    background-color: #fff;
    display: none;
    box-shadow: 0px 0px 5px gray;
    border-radius: 6px;

    &.show{
        display: block;
    }
    .filter-header{
        padding: 10px;
    }
}

/* footer */
footer .footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

    li a {
        color: var(--black);
        text-decoration: none;
        font-family: "Spline Sans", sans-serif;
    }
}

li a:hover {
    color: var(--orange) !important;
}

.footer-end {
    background: #FAFAFA;
}

/* division */
.division-banner {
    background: url('/assets/img/divibanner.png');
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;

    h1 {
        font-size: 50px;
    }

    p {
        font-size: 20px;
    }

    &::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, black, transparent);
    }
}

.select-role {
    h1 {
        font-size: 36px;
    }

    .role-container {
        gap: 100px;

        .select-role-box {
            cursor: pointer;
            border-radius: 50%;
            width: 139px;

            img {
                width: 100%;
            }

            &:hover {
                box-shadow: 0px 0px 9px gray;
            }
        }
    }
}

/* signin page */
.signin-container {
    padding: 20px;
    background: url('/assets/img/signin-box.png');
    min-height: calc(100vh - 105px);
    background-size: cover;
    background-position: center;
    position: relative;

    h1 {
        font-size: 30px;
    }

    &::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, black, transparent);
    }

}

.login-card {
    background: #fff;
    min-width: 454px;
    width: 454px;
    max-width: 60%;
    border-radius: 6px;
    padding: 3rem 1.5rem;

    &.register-card {
        width: 50%;
    }

    .form-check-input:checked {
        background-color: var(--orange);
        border-color: var(--orange);
    }

    input,
    select {
        border: none;
        border-bottom: 1px solid #ADADAD;
        border-radius: 0;
        padding: 5px 0;

        &:focus {
            box-shadow: none;
        }
    }

    .form-check {

        input {
            border: 1px solid #ADADAD;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            margin-top: 1px;
        }
    }
}

.register-bottom-width {
    width: 400px;
    margin: auto;
}

.toggle-password {
    position: absolute;
    right: 0;
    top: 10px;
}

.signup-divider {
    &::after {
        content: "";
        width: 33%;
        height: 1px;
        background: #ADADAD;
        position: absolute;
        right: 0;
        top: 11px;
    }

    &::before {
        content: "";
        width: 33%;
        height: 1px;
        background: #ADADAD;
        position: absolute;
        left: 0;
        top: 11px;
    }
}

.social-login {
    border: 1px solid #ADADAD;
    padding: 10px 40px;
    border-radius: 10px;

    img {
        width: 22px;
    }
}


/* telephone input */
.iti.iti--allow-dropdown {
    width: 100%;
}

/* landing page */
.banner {
    background: url('/assets/img/signin-box.png');
    height: 746px;
    background-size: cover;
    background-position: center;
    position: relative;

    .banner-content {
        width: 70%;
        text-align: center;
        margin: auto;

        h1 {
            font-size: 50px;
        }

    }

    &::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, black, transparent);
    }
}

.main-btn {
    border: 1px solid var(--orange);
    background-color: #F6F6F6;
    color: var(--orange);
    font-size: 14px;

    &.active-btn {
        background-color: var(--orange);
        color: #fff;
    }
}

.blog-box {
    border: 1px solid #E8E8E8;
    border-radius: 6px;

    .blog-img {
        height: 247px;
        object-fit: cover;
        width: 100%;
        border-radius: 6px;
    }

    .blog-content {
        /* margin-top: -7px; */
        border-top: 1px solid #E8E8E8;
        padding: 20px 15px;
        min-height: 210px;
        padding-bottom: 0;
    }

    .blog-title {
        font-family: Inter;
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        color: #1C1C1C;
    }

    ul {
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;

        li {
            display: flex;
            gap: 10px;
            align-items: center;
            font-family: Inter;
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
            color: #6D6D6D;

            img {
                width: 20px;
            }
        }
    }
}

.all-padding {
    padding: 5rem 0;
}

.brochure-section {
    background-color: var(--orange);
}

.brochure-template {
    width: 500px;
    height: 656px;
    margin: auto;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 6px;

    &:hover .brochure-content {
        top: 0;
    }

    .brochure-content {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 100%;
        transition: .5s ease-in-out;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: end;
        background: linear-gradient(360deg, black 10%, transparent 100%);

        .icon-box {
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }
}

.attandance-section {
    /* background: #F6F6F6; */
    background: var(--light-orange);
}

.attandance-box {
    background: #fff;
    border-radius: 6px;
    padding: 15px;
    position: relative;
    cursor: pointer;
    width: 200px;
    text-align: center;

    .attandance-title {
        margin-bottom: 5px;
    }

    p {
        font-family: Inter;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #6D6D6D;
        margin-bottom: 5px;
    }

    .attandance-tooltip {
        display: none;
        padding: 10px;
        border-radius: 5px;
        background: #fff;
        position: absolute;
        top: 30%;
        z-index: 1;
        box-shadow: 0px 4px 45.1px 0px #00000026;
        left: 30%;
        width: 230px;
    }

    &:hover .attandance-tooltip {
        display: block;
    }

    @media (max-width: 768px) {
        .attandance-tooltip {
            top: auto;
            /* bottom: 10px; */
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 300px;
            display: none !important;

            &.active {
                display: block !important;
            }
        }
    }
}

.survey-img {
    width: 80%;
    height: 346px;
    margin: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.sponsor-logos {
    img {
        width: 200px;
    }
}

.suggestion-form {
    label {
        font-family: Inter;
        font-size: 16px;
        font-weight: 500;
        line-height: 25.6px;
        color: var(--black);
    }

    input,
    textarea {
        background: none;
        border: 0;
        border-radius: 0;
        border-bottom: 1px solid #ADADAD;
        padding: 0;

        &:focus{
            box-shadow: none;
            outline: none;
            background: none;
            border-color: #ADADAD !important;
        }
    }
}

.faq-section .accordion {
    .accordion-item {
        border: 0;
        border-bottom: 1px solid #1C1C1C;
        border-radius: 0;
        background: none;

        .accordion-header {
            .accordion-button {
                color: var(--black);
                font-weight: 500;
                background: none;
                box-shadow: none;
                padding-left: 0;
                padding-right: 0;

                &::after {
                    width: 24px;
                    height: 24px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-size: 1rem;
                    background-position: center;
                    border-radius: 50%;
                    border: 1px solid #1C1C1C;
                }
            }
        }

        .accordion-body {
            color: var(--gray);
            font-size: 14px;
            padding-left: 0;
            padding-right: 0;
        }

    }

}


/* schedule page */
.schedule-table {
    border-radius: 6px;
    overflow: hidden;

    th,
    td {
        padding: 15px;
        font-size: 16px;
    }

    thead th {
        background: var(--orange);
        color: #fff;
    }

    tbody td {
        color: var(--gray);
    }
}

/* all attendees */
.all-attendees {

    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        background: var(--orange);
        color: #fff;
    }

    .nav-pills .nav-link {
        background-color: #fff;
        border: 1px solid var(--orange);
        color: var(--orange);
        padding: 7px 30px;
        width: 140px;
    }
}

/* profile */
.avatar1 {
    width: 83px;
    height: 83px;
    border-radius: 50%;
    overflow: hidden;
}
.profile-img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin: auto;
    
    img{
        object-fit: cover;
    }
    .profile-img-overlay{
        background: rgba(0,0,0,0.5);
        position: absolute;
        width: 100%;
        bottom:0px ;
        height: 30px;
        

        input{
            position: absolute;
            width: 100%;
            opacity: 0;
        }
    }
}

/* logout */
#logoutModal{
    .modal-footer{
        button{
            width: 45%;
        }
    }
}

.select-role-box:hover {
    box-shadow: none !important;
}

.select-role-box.active-type:hover {
    box-shadow: 0px 0px 20px gray !important;
}

.not-active-type img {
    filter: opacity(0.5);
}

/* responsive design */
@media screen and (max-width:991px) {
    .division-banner {
        h1 {
            font-size: 28px;
        }

        p {
            font-size: 16px;
        }
    }

    .attendees-container-box {
        overflow: auto;
        height: 500px;
    }

    .register-bottom-width {
        width: 100%;
    }

    .select-role {
        h1 {
            font-size: 20px;
        }

        .role-container {
            gap: 30px;

            .select-role-box {
                width: 97px !important;
            }
        }
    }

    .login-card {
        min-width: 90% !important;
        width: 90%;
    }

    .navbar-collapse {
        /* position: fixed; */
        position: absolute;
        z-index: 1;
        background: #fff;
        width: 74%;
        left: 0;
        top: 104px;
        display: block;
        padding: 10px;
        height: 100vh !important;
        box-shadow: 0px 8px 8px;
        transition: .5s ease-in-out;
        transform: translateX(-100%);

        &.show {
            transform: translateX(0%);
        }
    }

    .suggestion-form {
        img {
            object-fit: cover;
            height: 400px !important;
        }
    }

    .banner {
        height: 407px;

        h1 {
            font-size: 24px !important;
        }

        p {
            font-size: 14px;
        }
    }

    .agenda-container,
    .brochure-section,
    .attandance-section,
    .sponsor-section {
        h2 {
            font-size: 20px;
        }

        p {
            font-size: 14px;
        }
    }

    .main-btn {
        font-size: 12px;

        &.active-btn {
            background-color: var(--orange);
            color: #fff;
        }
    }

    .brochure-section {
        .brochure-template {
            width: 335px;
            height: 437px;
        }
    }

    .all-padding {
        padding: 2rem 0;
    }

    .attandance-box {
        width: 47%;

        .attandance-data{
            margin: 0;
        }
    }

    .all-attendees {

        .nav-pills .nav-link {
            width: auto;
        }
    }

    .sponsor-logos {
        img {
            width: 86px;
        }
    }

    .banner-disabled {
        display: none;
    }
}

.password.is-invalid {
    background-position: 94% !important;
}

.otp-input {
    text-align: center;
}

.name-nav-section {
    min-width: 140px;
}

#otp-form {
    text-align: -webkit-center;
}

#otp-inputs {
    width: 70%;
}
#countdown-section {
    display: none;
}

.disabled-link {
    pointer-events: none;
    color: grey;
}

.cursor-pointer {
    cursor: pointer !important;
}

.bg-theme {
    background-color: var(--orange) !important;
}

.form-check-input:checked {
    background-color: var(--orange) !important;
    border-color: var(--orange);
}

.input-ihes:focus {
    border-color: #0059174f !important;
    box-shadow: 0 0 0 .25rem rgb(0 89 23 / 27%) !important;
}

.input-csce:focus {
    border-color: #eb7d0047 !important;
    box-shadow: 0 0 0 .25rem rgb(235 125 0 / 35%) !important;
}

#calendar {
    display: none;
    position: absolute;
    z-index: 1000;
    right: 110px;
    top: 100%;
}

.previous-next-date {
    padding: 12px !important;
}

.data-filter {
    background: var(--orange) !important;
    color: #fff !important;
    border-radius: var(--bs-border-radius) !important;
}

.carousel-indicators {
    margin-bottom: -2rem !important;
}

.carousel-control-prev,
.carousel-control-next {
    margin: -45px !important;
    width: 3% !important;
}

@media screen and (max-width:576px) {
    .carousel-control-prev,
    .carousel-control-next {
        margin: -11px !important;
        width: 3% !important;
    }

    .carousel-indicators {
        margin-bottom: -1.5rem !important;
    }

    .sponsor-logos {
        img {
            width: 160px;
        }
    }
}

.text-overflow-wrap {
    overflow-wrap: anywhere;
}
