/**********************************************************************************************************************
* FONTS
**********************************************************************************************************************/
/* exo-2-100 - latin */
/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: normal;
    font-weight: 100;
    src: url('/fonts/exo-2-100.woff2') format('woff2');
}

/* exo-2-100italic - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: italic;
    font-weight: 100;
    src: url('/fonts/exo-2-100italic.woff2') format('woff2');
}

/* exo-2-200 - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: normal;
    font-weight: 200;
    src: url('/fonts/exo-2-200.woff2') format('woff2');
}

/* exo-2-200italic - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: italic;
    font-weight: 200;
    src: url('/fonts/exo-2-200italic.woff2') format('woff2');
}

/* exo-2-300 - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/exo-2-300.woff2') format('woff2');
}

/* exo-2-300italic - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: italic;
    font-weight: 300;
    src: url('/fonts/exo-2-300italic.woff2') format('woff2');
}

/* exo-2-regular - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/exo-2-regular.woff2') format('woff2');
}

/* exo-2-italic - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: italic;
    font-weight: 400;
    src: url('/fonts/exo-2-italic.woff2') format('woff2');
}

/* exo-2-500 - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/exo-2-500.woff2') format('woff2');
}

/* exo-2-500italic - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: italic;
    font-weight: 500;
    src: url('/fonts/exo-2-500italic.woff2') format('woff2');
}

/* exo-2-600 - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/exo-2-600.woff2') format('woff2');
}

/* exo-2-600italic - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: italic;
    font-weight: 600;
    src: url('/fonts/exo-2-600italic.woff2') format('woff2');
}

/* exo-2-700 - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/exo-2-700.woff2') format('woff2');
}

/* exo-2-700italic - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: italic;
    font-weight: 700;
    src: url('/fonts/exo-2-700italic.woff2') format('woff2');
}

/* exo-2-800 - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: normal;
    font-weight: 800;
    src: url('/fonts/exo-2-800.woff2') format('woff2');
}

/* exo-2-800italic - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: italic;
    font-weight: 800;
    src: url('/fonts/exo-2-800italic.woff2') format('woff2');
}

/* exo-2-900 - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: normal;
    font-weight: 900;
    src: url('/fonts/exo-2-900.woff2') format('woff2');
}

/* exo-2-900italic - latin */
@font-face {
    font-display: swap;
    font-family: Exo2;
    font-style: italic;
    font-weight: 900;
    src: url('/fonts/exo-2-900italic.woff2') format('woff2');
}

/**********************************************************************************************************************
* HTML and BODY
**********************************************************************************************************************/
html, body {
    font-family: Exo2, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.tooltip {
    font-family: Exo2, Tahoma, Arial;
    font-weight: 300;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.navbar-brand {
    font-weight: bolder;
}

.disabled-tag {
    pointer-events: none;
    opacity: 0.8;
}

/**********************************************************************************************************************
* FRONT
**********************************************************************************************************************/
.form-switch .form-check-input {
    border-radius: 1em;
}

.link-hover {
    background-color: none;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}


    .link-hover:hover {
        padding: 4px 0px 4px 0px;
        background-color: silver;
        -webkit-transition: background-color 1s ease-out;
        -moz-transition: background-color 1s ease-out;
        -o-transition: background-color 1s ease-out;
        transition: background-color 1s ease-out;
    }

/**********************************************************************************************************************
* VALIDATIONS
**********************************************************************************************************************/
.input-validation-error {
    border-bottom-color: orangered;
}

.required {
    border-left: solid;
    border-left-width: 4px;
    border-left-color: #379392;
}

/**********************************************************************************************************************
* SIZES
**********************************************************************************************************************/
.w-50px {
    width: 50px;
}

.w-60px {
    width: 60px;
}

.w-80px {
    width: 80px;
}

.w-100px {
    width: 100px;
}

.w-150px {
    width: 150px;
}

.w-200px {
    width: 200px;
}

.w-250px {
    width: 250px;
}

.w-300px {
    width: 300px;
}

a,
.btn-link {
    text-decoration: none;
}

.text-justify {
    text-align: justify;
}

/**********************************************************************************************************************
* PADDING / MARGINS
**********************************************************************************************************************/
.pl-0 {
    padding-left: 0 !important
}

.pl-1 {
    padding-left: .25rem !important
}

.pl-2 {
    padding-left: .5rem !important
}

.pl-3 {
    padding-left: 1rem !important
}

.pl-4 {
    padding-left: 1.5rem !important
}

.pl-5 {
    padding-left: 3rem !important
}

.pr-0 {
    padding-right: 0 !important
}

.pr-1 {
    padding-right: .25rem !important
}

.pr-2 {
    padding-right: .5rem !important
}

.pr-3 {
    padding-right: 1rem !important
}

.pr-4 {
    padding-right: 1.5rem !important
}

.pr-5 {
    padding-right: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}


.ml-0 {
    margin-left: 0 !important
}

.ml-1 {
    margin-left: .25rem !important
}

.ml-2 {
    margin-left: .5rem !important
}

.ml-3 {
    margin-left: 1rem !important
}

.ml-4 {
    margin-left: 1.5rem !important
}

.ml-5 {
    margin-left: 3rem !important
}

.mr-0 {
    margin-right: 0 !important
}

.mr-1 {
    margin-right: .25rem !important
}

.mr-2 {
    margin-right: .5rem !important
}

.mr-3 {
    margin-right: 1rem !important
}

.mr-4 {
    margin-right: 1.5rem !important
}

.mr-5 {
    margin-right: 3rem !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

/**********************************************************************************************************************
* SELECTED TEXT BACKGROUND COLOR
**********************************************************************************************************************/
::selection {
    background-color: #66b2b2;
    color: #000;
}

.tooltip {
    font-family: Exo2, Tahoma, Arial;
    font-weight: 300;
}

/**********************************************************************************************************************
* MVC GRID
**********************************************************************************************************************/
td .form-check-input[type=checkbox] {
    border-radius: 0;
    font-size: large;
}

th .form-check-input[type=checkbox] {
    border-radius: 0;
    font-size: large;
}

.mvc-grid thead {
    height: 4em;
}

.mvc-grid td {
    vertical-align: middle;
}

.mvc-grid-table > table > thead > tr > th {
    background: var(--breadcrumb-bg);
    color: var(--breadcrumb-color);
}

.mvc-grid-table > table > tfoot > tr > td {
    background: var(--breadcrumb-bg);
    color: var(--breadcrumb-color);
}

.mvc-grid-sort,
.mvc-grid-filter {
    background: var(--breadcrumb-bg);
    color: var(--breadcrumb-color);
}

    .mvc-grid-filter:focus,
    .mvc-grid-filter:hover {
        background: var(--breadcrumb-bg);
        color: var(--breadcrumb-color);
    }

.mvc-grid-popup,
.mvc-grid-popup .mvc-grid-value,
.mvc-grid-popup .mvc-grid-method,
.mvc-grid-popup .mvc-grid-operator {
    background: var(--bs-body-bg);
}

.mvc-grid-table > table > thead > tr > th,
.mvc-grid-table > table > tbody > tr > td,
.mvc-grid-table > table > tfoot > tr > td {
    border: 1px solid var(--bs-table-border-color);
    padding: 0.5em;
}

.mvc-grid-table > table > tfoot > tr > td {
    border-top: 2px solid var(--bs-table-border-color);
}

.mvc-grid-pager button {
    background: #455A64;
    color: #fff;
}

    .mvc-grid-pager button:focus,
    .mvc-grid-pager button:hover {
        background: #37474F;
        color: #fff;
    }

.mvc-grid-pager .active,
.mvc-grid-pager .active:focus,
.mvc-grid-pager .active:hover {
    border-color: #00796B;
    background: var(--bs-primary);
    color: #ffffff;
}

.mvc-grid-pager [disabled],
.mvc-grid-pager [disabled]:hover {
    background: #455A64;
    color: #777777;
    opacity: 0.5;
}

/**********************************************************************************************************************
* TINYMCE
**********************************************************************************************************************/
.tox-promotion {
    display: none;
}

.tox-statusbar__branding {
    display: none;
}

/**********************************************************************************************************************
* ADMIN DASHBOARD
**********************************************************************************************************************/
table {
    font-size: 0.875rem;
}

label {
    font-size: .92rem;
}

.breadcrumb {
    background: var(--breadcrumb-bg);
    color: var(--breadcrumb-color);
    font-size: 0.9rem !important
}

.dropdown-menu {
    --bs-dropdown-border-color: var(--my-bs-dropdown-link-hover-bg);
    --bs-dropdown-border-width: 1px;
    border: 1px solid var(--bs-dropdown-border-color);
}

.text-light-gray {
    color: #979797;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: var(--my-bs-dropdown-link-hover-bg);
}

/**********************************************************************************************************************
* HERO SECTION
**********************************************************************************************************************/
.bg-cover {
    background-size: cover !important;
}

.bg-center {
    background-position: center center !important;
}

.primary-overlay {
    position: relative;
}

    .primary-overlay::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: " ";
        opacity: 0.4;
        /*background: #38a7bb;*/
        background: #4c2a80;
        transition: all 0.3s;
    }

.secondary-overlay {
    position: relative;
}

    .secondary-overlay::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: " ";
        opacity: 0.4;
        background: #949494;
        transition: all 0.3s;
    }

.info-overlay {
    position: relative;
}

    .info-overlay::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: " ";
        opacity: 0.4;
        background: #17a2b8;
        transition: all 0.3s;
    }

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.overlay-content {
    position: relative;
    z-index: 20;
}

.overlay-dense::after {
    opacity: 0.9 !important;
}

/**********************************************************************************************************************
* ANIMATION
**********************************************************************************************************************/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.animation-fadeIn {
    animation: fadeIn 3s;
}

/**********************************************************************************************************************
* RECTANGLE RADIO CHECK
**********************************************************************************************************************/
.rectangle-check {
    position: relative;
    padding: 3px;
}

    .rectangle-check label.btn:hover {
        border-radius: 4px;
        transition: all 0.2s linear;
        box-shadow: 0px 0px 5px 2px rgba(128,128,128,0.2);
    }

    .rectangle-check .icon-left,
    .rectangle-check .icon-right {
        padding: 0px 20px;
        position: absolute;
        top: 50%;
        margin-top: -0.8em;
        pointer-events: none;
    }

    .rectangle-check .icon-left {
        left: 0;
    }

    .rectangle-check .icon-right {
        right: 0;
    }

/**********************************************************************************************************************
* API
**********************************************************************************************************************/

#backToTopButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

/**********************************************************************************************************************
* MODALS
**********************************************************************************************************************/

#modalSelect .modal-body table input[type=radio] {
    transform: scale(1.5);
    margin-left: 4px;
    margin-right: 4px;
}

/**********************************************************************************************************************
* IMAGE
**********************************************************************************************************************/
:root {
    --image-size: 400px;
    --image-height: 225px;
    --image-noneditable-size: 80px;
}

.tooltip-inner {
    max-width: 300px !important;
}

.image-container {
    text-align: center;
    position: relative;
    width: var(--image-size);
    height: var(--image-height);
    left: 50%;
    transform: translate(-50%, 0);
}

    .image-container img {
        border-radius: calc(var(--image-size) / 40);
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
    }

        .image-container img:hover {
            opacity: 0.8;
            box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 1px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
        }

    .image-container input {
        opacity: 1;
        display: none;
        font-size: 200px;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .image-container .progress {
        background: #aaaaaa;
        position: absolute;
        height: 20px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(var(--image-size) - 10px);
        z-index: 1;
        pointer-events: none;
        opacity: 0.7;
        display: none;
    }

        .image-container .progress .bar {
            background: rgb(55,147,146);
            width: 33%;
            height: 20px;
        }

        .image-container .progress .label {
            line-height: 20px;
            text-align: center;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 20px;
        }

    .image-container .delete {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        border-radius: 4px;
    }


.image-container-noneditable {
    text-align: center;
    position: relative;
    width: var(--image-noneditable-size);
    height: var(--image-noneditable-size);
    left: 50%;
    transform: translate(-50%, 0);
    pointer-events: none;
}

    .image-container-noneditable img {
        border-radius: calc(var(--image-noneditable-size) / 2);
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
    }

/**********************************************************************************************************************
* SELECT2
**********************************************************************************************************************/

.select2-selection,
.select2-search,
.select2-results,
.select2-container--bootstrap-5 .select2-selection
.select2-container--bootstrap-5 .select2-selection--single,
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered,
.select2-selection__choice__display,
.select2-selection__choice {
    background-color: var(--bs-body-bg) !important;
    color: var(--bs-body-color) !important;
    border-color: var(--bs-border-color) !important;
    border-radius: 0px !important;
}

.select2-results__option.select2-results__option--selected {
    background-color: var(--bs-primary) !important;
    color: black !important;
}
/**********************************************************************************************************************
* VARIABLES
**********************************************************************************************************************/
[data-bs-theme=light] {
    --breadcrumb-bg: #dee2e6;
    --breadcrumb-bg-lighter: #f0f1f1;
    --breadcrumb-color: rgba(33, 37, 41, 0.75);
    --btn-outline-color: #000;
    --btn-outline-light-hover-color: #000;
    --bs-body-bg: #f4f7fa;
    --my-bs-dropdown-link-hover-bg: #e7e9ec;
}

[data-bs-theme=dark] {
    color-scheme: dark;
    --breadcrumb-bg: #343a40;
    --breadcrumb-bg-lighter: #4d5155;
    --breadcrumb-color: rgba(222, 226, 230, 0.75);
    --btn-outline-color: #fff;
    --btn-outline-light-hover-color: #fff;
    --bs-body-bg: #212529;
    --my-bs-dropdown-link-hover-bg: #131517;
}

/**********************************************************************************************************************
* BUTTONS
**********************************************************************************************************************/
.btn {
    text-transform: uppercase;
    --bs-btn-font-weight: 400;
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-dark {
    --bs-btn-color: var(--btn-outline-color);
    --bs-btn-hover-color: var(--btn-outline-color);
}

.btn-light {
    --bs-btn-color: #000;
    --bs-btn-hover-color: #000;
    --bs-btn-border-color: #d3d4d5;
}

.btn-link {
    --bs-btn-color: var(--btn-outline-light-hover-color);
    --bs-btn-hover-color: var(--btn-outline-light-hover-color);
    --bs-btn-active-color: var(--bs-btn-hover-color);
}

.btn-outline-light {
    --bs-btn-color: var(--btn-outline-light-hover-color);
    --bs-btn-hover-color: #000;
    --bs-btn-border-color: #d3d4d5;
    --bs-btn-hover-border-color: #a4a4a4;
}

.btn-red {
    --bs-btn-bg: #F44336;
    --bs-btn-hover-bg: #D32F2F;
    --bs-btn-active-bg: #D32F2F;
    --bs-btn-disabled-bg: #D32F2F;
}

.btn-pink {
    --bs-btn-bg: #C2185B;
    --bs-btn-hover-bg: #AD1457;
    --bs-btn-active-bg: #AD1457;
    --bs-btn-disabled-bg: #AD1457;
}

.btn-purple {
    --bs-btn-bg: #7B1FA2;
    --bs-btn-hover-bg: #6A1B9A;
    --bs-btn-active-bg: #6A1B9A;
    --bs-btn-disabled-bg: #6A1B9A;
}


.btn-deep-purple {
    --bs-btn-bg: #512DA8;
    --bs-btn-hover-bg: #4527A0;
    --bs-btn-active-bg: #4527A0;
    --bs-btn-disabled-bg: #4527A0;
}

.btn-indigo {
    --bs-btn-bg: #303F9F;
    --bs-btn-hover-bg: #283593;
    --bs-btn-active-bg: #283593;
    --bs-btn-disabled-bg: #283593;
}

.btn-blue {
    --bs-btn-bg: #1976D2;
    --bs-btn-hover-bg: #1565C0;
    --bs-btn-active-bg: #1565C0;
    --bs-btn-disabled-bg: #1565C0;
}

.btn-light-blue {
    --bs-btn-bg: #0288D1;
    --bs-btn-hover-bg: #0277BD;
    --bs-btn-active-bg: #0277BD;
    --bs-btn-disabled-bg: #0277BD;
}

.btn-cyan {
    --bs-btn-bg: #0097A7;
    --bs-btn-hover-bg: #00838F;
    --bs-btn-active-bg: #00838F;
    --bs-btn-disabled-bg: #00838F;
}

.btn-teal {
    --bs-btn-bg: #00796B;
    --bs-btn-hover-bg: #00695C;
    --bs-btn-active-bg: #00695C;
    --bs-btn-disabled-bg: #00695C;
}

.btn-green {
    --bs-btn-bg: #388E3C;
    --bs-btn-hover-bg: #2E7D32;
    --bs-btn-active-bg: #2E7D32;
    --bs-btn-disabled-bg: #2E7D32;
}

.btn-light-green {
    --bs-btn-bg: #689F38;
    --bs-btn-hover-bg: #558B2F;
    --bs-btn-active-bg: #558B2F;
    --bs-btn-disabled-bg: #558B2F;
}

.btn-lime {
    --bs-btn-bg: #AFB42B;
    --bs-btn-hover-bg: #9E9D24;
    --bs-btn-active-bg: #9E9D24;
    --bs-btn-disabled-bg: #9E9D24;
}

.btn-yellow {
    --bs-btn-bg: #FBC02D;
    --bs-btn-hover-bg: #F9A825;
    --bs-btn-active-bg: #F9A825;
    --bs-btn-disabled-bg: #F9A825;
}

.btn-amber {
    --bs-btn-bg: #FFA000;
    --bs-btn-hover-bg: #FF8F00;
    --bs-btn-active-bg: #FF8F00;
    --bs-btn-disabled-bg: #FF8F00;
}

.btn-orange {
    --bs-btn-bg: #FF8F00;
    --bs-btn-hover-bg: #EF6C00;
    --bs-btn-active-bg: #EF6C00;
    --bs-btn-disabled-bg: #EF6C00;
}

.btn-deep-orange {
    --bs-btn-bg: #E64A19;
    --bs-btn-hover-bg: #D84315;
    --bs-btn-active-bg: #D84315;
    --bs-btn-disabled-bg: #D84315;
}

.btn-brown {
    --bs-btn-bg: #5D4037;
    --bs-btn-hover-bg: #4E342E;
    --bs-btn-active-bg: #4E342E;
    --bs-btn-disabled-bg: #4E342E;
}

.btn-grey {
    --bs-btn-bg: #616161;
    --bs-btn-hover-bg: #424242;
    --bs-btn-active-bg: #424242;
    --bs-btn-disabled-bg: #424242;
}

.btn-blue-grey {
    --bs-btn-bg: #455A64;
    --bs-btn-hover-bg: #37474F;
    --bs-btn-active-bg: #37474F;
    --bs-btn-disabled-bg: #37474F;
}

.btn-all-attributes {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

/**********************************************************************************************************************
* COLORS
**********************************************************************************************************************/
.text-red {
    color: #F44336;
}

.text-pink {
    color: #C2185B;
}

.text-purple {
    color: #7B1FA2;
}


.text-deep-purple {
    color: #512DA8;
}

.text-indigo {
    color: #303F9F;
}

.text-blue {
    color: #1976D2;
}

.text-light-blue {
    color: #0288D1;
}

.text-cyan {
    color: #0097A7;
}

.text-teal {
    color: #00796B;
}

.text-green {
    color: #388E3C;
}

.text-light-green {
    color: #689F38;
}

.text-lime {
    color: #AFB42B;
}

.text-yellow {
    color: #FBC02D;
}

.text-amber {
    color: #FFA000;
}

.text-orange {
    color: #FF8F00;
}

.text-deep-orange {
    color: #E64A19;
}

.text-brown {
    color: #5D4037;
}

.text-grey {
    color: #616161;
}

.text-blue-grey {
    color: #455A64;
}

/**********************************************************************************************************************
* BACKGROUND COLORS
**********************************************************************************************************************/
.bg-red {
    background-color: #F44336;
}

.bg-pink {
    background-color: #C2185B;
}

.bg-purple {
    background-color: #7B1FA2;
}


.bg-deep-purple {
    background-color: #512DA8;
}

.bg-indigo {
    background-color: #303F9F;
}

.bg-blue {
    background-color: #1976D2;
}

.bg-light-blue {
    background-color: #0288D1;
}

.bg-cyan {
    background-color: #0097A7;
}

.bg-teal {
    background-color: #00796B;
}

.bg-green {
    background-color: #388E3C;
}

.bg-light-green {
    background-color: #689F38;
}

.bg-lime {
    background-color: #AFB42B;
}

.bg-yellow {
    background-color: #FBC02D;
}

.bg-amber {
    background-color: #FFA000;
}

.bg-orange {
    background-color: #FF8F00;
}

.bg-deep-orange {
    background-color: #E64A19;
}

.bg-brown {
    background-color: #5D4037;
}

.bg-grey {
    background-color: #616161;
}

.bg-blue-grey {
    background-color: #455A64;
}


/**********************************************************************************************************************
* FONT WEIGHTS (fw-) / FONT SIZES (fs-)
**********************************************************************************************************************/
.fw-extrathin {
    font-weight: 100 !important;
}

.fw-extrathin-italic {
    font-weight: 100 !important;
    font-style: italic !important;
}

.fw-thin {
    font-weight: 200 !important;
}

.fw-thin-italic {
    font-weight: 200 !important;
    font-style: italic !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-light-italic {
    font-weight: 300 !important;
    font-style: italic !important;
}

.fw-reqular {
    font-weight: 400 !important;
}

.fw-regular-italic {
    font-weight: 400 !important;
    font-style: italic !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-medium-italic {
    font-weight: 500 !important;
    font-style: italic !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-semibold-italic {
    font-weight: 600 !important;
    font-style: italic !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-bold-italic {
    font-weight: 700 !important;
    font-style: italic !important;
}

.fw-extrabold {
    font-weight: 800 !important;
}

.fw-extrabold-italic {
    font-weight: 800 !important;
    font-style: italic !important;
}

.fw-black {
    font-weight: 900 !important;
}

.fw-black-italic {
    font-weight: 900 !important;
    font-style: italic !important;
}

.rtl {
    direction: rtl !important;
    font-family: Tahoma, Arial !important;
}

.ltr {
    text-align: left;
    direction: ltr !important;
    font-family: Exo2, Tahoma, Arial;
}

.fs-xsmall {
    font-size: 0.6rem !important;
}

.fs-small {
    font-size: 0.8rem !important;
}

.fs-small2 {
    font-size: 0.9rem !important;
}

.fs-normal {
    font-size: 1rem !important;
}

.fs-large {
    font-size: 1.05rem !important;
}

.fs-xlarge {
    font-size: 1.1rem !important;
}

.fs-xxlarge {
    font-size: 1.2rem !important;
}

.text-normal {
    text-transform: none;
}

.text-nowrap {
    white-space: nowrap;
}
/**********************************************************************************************************************
* END OF CSS
**********************************************************************************************************************/
