:root {
    --primary-color: #F54A48;
    --primary-color-light: #F58229;
}

body {
    overflow-x: hidden;
}

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

.fs-10 {
    font-size: 10px !important;
}

.h-px-280 {
    height: 280px;
}

.min-h-150px {
    min-height: 150px;
}

.py-2px {
    padding-top: 2px;
    padding-bottom: 2px;
}

.vh-50 {
    height: 50vh;
}

.vh-80 {
    height: 80vh;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}

.w-40 {
    width: 40% !important;
}

.w-fit-content {
    width: fit-content !important;
}

.h-25px {
    height: 25px !important;
}

.mw-350px {
    max-width: 350px !important;
}

.ml-5 {
    margin-left: 5%;
}

.ml-auto {
    margin-left: auto;
}

.mh-px-135 {
    max-height: 135px !important;
}

.mh-100px {
    max-height: 100px !important;
}

.mr-5px {
    margin-right: 5px !important;
}

.mr-12px {
    margin-right: 12px !important;
}

.form-switch.form-switch-md .form-check-input {
    height: 1.5rem;
    width: calc(2rem + 0.75rem);
    border-radius: 3rem;
}

.break-word {
    word-break: break-word;
}

.word-wrap-break-word {
    word-wrap: break-word
}

.word-break-break-all {
    word-break: break-all;
}

.faq-details-modal label {
    font-weight: bolder !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.btn-primary {
    box-shadow: 0 0.125rem 0.25rem 0 rgb(255 62 29 / 40%);
    background: linear-gradient(to bottom, var(--primary-color-light) 0%, var(--primary-color-light) 45%, var(--primary-color) 100%);
    border: var(--primary-color-light);
}

.btn-primary:hover {
    background: linear-gradient(to bottom, var(--primary-color-light) 0%, var(--primary-color-light) 35%, var(--primary-color) 100%);
    border: var(--primary-color-light);
    box-shadow: 0 0.125rem 0.25rem 0 rgb(255 62 29 / 40%);
}

a {
    color: var(--primary-color-light);
}

a:hover {
    color: var(--primary-color);
}

.bg-menu-theme .menu-inner>.menu-item.active>.menu-link {
    color: var(--primary-color);
    background-color: rgba(255, 62, 29, 0.16) !important;
}

.bg-menu-theme .menu-sub>.menu-item.active>.menu-link:not(.menu-toggle):before {
    background-color: var(--primary-color) !important;
}

.bg-menu-theme .menu-inner>.menu-item.active:before {
    background: var(--primary-color);
}

.timeline .timeline-item .timeline-point {
    background-color: var(--primary-color-light);
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='%23F58229'/></svg>") !important;
    border-color: var(--primary-color-light);
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    background-color: var(--primary-color-light);
    border-color: var(--primary-color-light);
}

.form-check-input:focus {
    border-color: var(--primary-color-light);
}

.form-check-input:checked,
.form-check-input[type=checkbox]:indeterminate {
    background-color: var(--primary-color-light);
    border-color: var(--primary-color-light);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color-light);
}

.page-item.active .page-link,
.page-item.active .page-link:hover,
.page-item.active .page-link:focus,
.pagination li.active>a:not(.page-link),
.pagination li.active>a:not(.page-link):hover,
.pagination li.active>a:not(.page-link):focus {
    background-color: var(--primary-color-light);
    border-color: var(--primary-color-light);
    box-shadow: 0 0.125rem 0.25rem 0 rgb(255 62 29 / 40%);
}

form .required.form-label:after {
    color: red;
    content: "*";
    position: absolute;
    margin-left: 2px;
}

.bg-primary {
    background-color: var(--primary-color-light) !important;
}

.text-green {
    color: #51C93D;
}

.text-yellow {
    color: #FFD057;
}

.text-red {
    color: red;
}

.its-you {
    position: relative;
    top: -1.5px;
    padding: 1px 5px;
    font-size: 10px;
    margin-left: 5px;
    font-weight: bolder;
}

.user-profile-header .user-profile-img {
    height: 120px !important;
    width: 120px !important;
}

#loading-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    background-color: rgba(67, 89, 113, 0.4);
}

.loading-circle {
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1111;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
}

.switch-input:checked~.switch-toggle-slider .switch-on {
    background-color: var(--primary-color);
    color: white;
}

.hideMeAfter5Seconds {
    animation: hideAnimation 0s ease-in 5s;
    animation-fill-mode: forwards;
}

@keyframes hideAnimation {
    to {
        visibility: hidden;
        width: 0;
        height: 0;
    }
}


/* ============================  Mobile Screen ============================= */

@media screen and (max-width: 750px) {
    .float-start-mobile {
        float: left !important;
    }
}


/* ============================  Others Screen except Mobile ============================= */

@media screen and (min-width: 750px) {
    .float-end-desktop {
        float: right !important;
    }
}