:root {

    --bs-dark-pink: #B00855;
    --mauve: #A747A2;
    --brilliant-cyan-blue: #6E78DC;
    --deep-sky-blue: #00A1F4;
    --light-blue: #CBF6FF;
    --christmas-green: #41870B;
    --washed-orange: #d39e00;
    --bs-dark-red: #910804;
    --light-gray: #f6f6f6;
    --silver: #C0C0C0;
    --bs-dark-gray: #989898;
    --light-dark: #e8e8e8;
    --almost-dark: #09161E;
    --bs-dark-cyan: #092221;

}

html {
    scroll-behavior: smooth;
}

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

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

.extra-shadow-8dp {
    -webkit-box-shadow: 6px 6px 6px rgba(150, 170, 190, 0.4), -9px -9px 10px rgba(242, 247, 252, 0.5) !important;
    -moz-box-shadow: 6px 6px 6px rgba(150, 170, 190, 0.4), -9px -9px 10px rgba(242, 247, 252, 0.5) !important;
    box-shadow: 6px 6px 6px rgba(150, 170, 190, 0.4), -9px -9px 10px rgba(242, 247, 252, 0.5) !important;
    border-top: 1px solid rgba(245, 249, 250, 0.20) !important;
    border-right: 1px solid rgba(224, 229, 235, 0.70) !important;
    border-bottom: 1px solid rgba(224, 229, 235, 0.70) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.20) !important;

}

.m-0-auto {
    margin: 0 auto !important;
}

.border-width-2 {
    border-width: 2px !important;
}

.font-11 {
    font-size: 11px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-15 {
    font-size: 15px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-17 {
    font-size: 17px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-22 {
    font-size: 22px !important;
}

.font-25 {
    font-size: 25px !important;
}

.font-35 {
    font-size: 35px !important;
}

.font-30 {
    font-size: 30px !important;
}

.font-40 {
    font-size: 40px !important;
}

.font-45 {
    font-size: 45px !important;
}

.empty-space-30 {
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 30px;
}

.empty-space-20 {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 20px;
}

.empty-space-40 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    line-height: 40px;
}

.empty-space-10 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.equal-height {
    min-height: 100%;
    height: auto;
    max-height: 100%;
    vertical-align: middle;
}

.letter-spacing-2px {
    letter-spacing: 2px !important;
}

.text-shadow {
    text-shadow: 2px 2px var(--bs-dark);
}


.text-overFlow-ellipsis {
    text-overflow: ellipsis;
    /* Required for text-overflow to do anything */
    white-space: nowrap;
    overflow: auto;
}

.text-overFlow-ellipsis-normal {
    text-overflow: ellipsis;
    /* Required for text-overflow to do anything */
    white-space: normal;
    overflow: auto;
    width: 85px;
}

.text-overFlow-ellipsis-normal-next-line {
    text-overflow: ellipsis;
    /* Required for text-overflow to do anything */
    white-space: normal;
    overflow: visible;
}

.text-light-dark {
    color: var(--light-dark) !important;
}


.text-silver {
    color: var(--silver) !important;
}

.bg-main-dark-color {
    background-color: var(--almost-dark) !important;
}

.bg-gradient-main-dark-and-secondary-color {
    background-image: linear-gradient(to left, #1b243f, #283661, #384984, #495caa, #5d70d0) !important;
    object-fit: cover;
}

.d-none-without-important {
    display: none;
}

.zoom-effect-container {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.zoom-effect-container:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.08) !important;
    cursor: zoom-in !important;
}

.border-radius-8 {
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    border-radius: 8px !important;
}

.border-radius-16 {
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
    border-radius: 16px !important;
}

/** Bootstrap border-top-color-based **/

.card-border-top-success {
    border-top: 2px solid var(--bs-success) !important;
}

.card-border-top-danger {
    border-top: 2px solid var(--bs-danger) !important;
}

.card-border-top-primary {
    border-top: 2px solid var(--bs-primary) !important;
}

.card-border-top-info {
    border-top: 2px solid var(--bs-info) !important;
}

.card-border-top-secondary {
    border-top: 2px solid var(--bs-secondary) !important;
}

.card-border-top-warning {
    border-top: 2px solid var(--bs-warning) !important;
}

.card-border-top-light {
    border-top: 2px solid var(--bs-light) !important;
}

.card-border-top-dark {
    border-top: 2px solid var(--bs-dark) !important;
}

.card-border-top-purple {
    border-top: 2px solid var(--bs-purple) !important;
}

/** Alternative colors for card border top color **/

.card-border-top-cyan-blue-color {
    border-top: 2px solid var(--brilliant-cyan-blue) !important;
}

.card-border-top-deep-sky-blue-color {
    border-top: 2px solid var(--deep-sky-blue) !important;
}

.card-border-top-dark-red-color {
    border-top: 2px solid var(--bs-dark-red) !important;
}

.card-border-top-washed-orange-color {
    border-top: 2px solid var(--washed-orange) !important;
}

.card-border-top-silver-color {
    border-top: 2px solid var(--silver) !important;
}

.card-border-top-dark-cyan-color {
    border-top: 2px solid var(--bs-dark-cyan) !important;
}

.card-border-top-mauve-color {
    border-top: 2px solid var(--mauve) !important;
}

.card-border-top-dark-pink-color {
    border-top: 2px solid var(--bs-dark-pink) !important;
}

.card-border-left-design-primary {
    border-left: 4px solid var(--bs-primary) !important;
}

.card-border-left-design-secondary {
    border-left: 4px solid var(--bs-secondary) !important;
}

.card-border-left-design-success {
    border-left: 4px solid var(--bs-success) !important;
}

.card-border-left-design-info {
    border-left: 4px solid var(--bs-info) !important;
}

.card-border-left-design-warning {
    border-left: 4px solid var(--bs-warning) !important;
}

.card-border-left-design-danger {
    border-left: 4px solid var(--bs-danger) !important;
}

.card-border-left-design-light {
    border-left: 4px solid var(--bs-light) !important;
}

.card-border-left-design-dark {
    border-left: 4px solid var(--bs-dark) !important;
}

.m-height-auto {
    min-height: auto !important;
}

.text-decoration-underline {
    text-decoration: underline;
}

.text-decoration-line-through {
    text-decoration: line-through;
}

.max-w-100 {
    max-width: 100% !important;
}

.pulse-animation {
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}

.bounce-animation {
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-9px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-9px);
    }
}

@media screen and (max-width: 1333px) {

}


@media screen and (max-width: 1100px) {


}


@media screen and (max-width: 1000px) {

    .no-padding-on-mobile-devices {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    .container {
        max-width: calc(100% - 20px) !important;
    }

    .col-xl, .col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg, .col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md, .col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm, .col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col, .col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

}


@media screen and (max-width: 770px) {

    .empty-space-40 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
        line-height: 30px !important;
    }

    .no-padding-on-mobile-devices {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    .container {
        max-width: calc(100% - 12px) !important;
    }

    .col-xl, .col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg, .col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md, .col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm, .col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col, .col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    .max-text-width {
        width: 100% !important;
        max-width: 150px !important;
    }

    .m-sm-0-auto {
        margin: 0 auto !important;
    }

    .avatar-sm {
        padding: 3px;
        border: 1px solid var(--primary);
    }

    .badge {
        white-space: normal !important;
    }

    .d-sm-block-custom {
        display: block !important;
    }

    .d-sm-none-custom {
        display: none !important;
    }

    .media-responsive {
        display: block !important;
        text-align: center;
    }

    .card-img-custom {
        display: block;
        margin: 0 auto;
        padding-bottom: 7px;
    }

}

@media screen and (max-width: 600px) {

    .w-sm-100 {
        width: 100% !important;
    }

    .layout-horizontal-bar .main-header .logo {
        max-width: 150px !important;
    }


}

.text-muted {
    color: #70657b !important;
}

.main-logo {
    width: 130px;
    height: auto;
}

.form-group {
    margin-bottom: 10px;
}

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

.footer {
    position: static;
    bottom: 0;
    left: 42%;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size: 13px;
}
