/* Variables */
:root {
    --primary-color: #a92d23;
    --primary-color-rgb: 255,99,100;
    --primary-color-degraded: #E29092;
    --bs-primary-rgb: 229, 94, 61;
    --bs-progress-bar-bg: #E55E3D;
    --btn-seconday-color: #cbd1da;
    --bs-danger-rgb: 220,99,100;
    --bs-btn-bg: var(--primary-color);
    --color-validated: #009c9b;
    --color-trashable: #cbd1da;
}


/* Typography */
body, ul, li, p, a, label, input {
    /*font-family: 'Roboto', sans-serif;*/
    font-weight: 300;
    font-family: "Kumbh Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
            "YOPQ" 300;


}
h1, h2, h3, h4, h5, h6 {
    /*font-family: "Kanit", sans-serif;*/
}
.h1, h1 {
    font-size: 48px;
    font-weight: 700;
}
.h2, h2 {
    font-size: 20px;
    font-weight: 300;
}
.h3, h3 {
    font-size: 18px;
}


a {
    text-decoration: none;
    color: var(--primary-color);
}

b,strong {
    font-weight: 600;
}

.mt-90 {
    margin-top: 90px;
}

/* General */
.logo { font-weight: 500 !important;}
.text-warning {  color: #ede861 !important;}
.text-muted { color: #bcbcbc !important;}
.text-success { color: #7952B1 !important;}
.text-light { color: #cfd6e1 !important;}
.text-primary { color: var(--primary-color) !important; }
/*.bg-dark { background-color: #212934 !important;}*/
.bg-light { background-color: #e9eef5 !important;}
.bg-black { background-color: #1d242d !important;}
.bg-success { background-color: #59ab6e !important;}
.btn-success {
    background-color: #59ab6e !important;
    border-color: #56ae6c !important;
}
.btn-desactivated, .btn-desactivated:hover {
    background-color: grey !important;
    border-color: grey !important;
    cursor: auto;
    color: #fff;
}
.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #E55E67;
    border: 1px solid #E55E67;
}

.btn-secondary {
    background-color: var(--btn-seconday-color);
    border: 1px solid var(--btn-seconday-color);

}

.btn-primary-reverse{
    background-color: #fff !important;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(229, 94, 61, .5);
}

.pagination .page-link:hover {color: #000;}
.pagination .page-link:hover, .pagination .page-link.active {
    background-color: #69bb7e;
    color: #fff;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-60 {
    margin-bottom: 60px;
}



.mb-150 {
    margin-bottom: 150px !important;
}

.mb-150 {
    margin-bottom: 150px !important;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-150 {
    padding-top: 150px !important;
}

.h-100 {
    height: 100%;
}

.badge {
    background-color: var(--primary-color);
    color: #fff;
}

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

.container, .container-fluid, nav {
    /*min-width: 420px;*/
}

.nav-link a:active, .nav-link a:focus {
    color: #fff;
}

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

a.badge-subtle-danger:hover {
    color: #fff;
    font-weight: bold;
}

p {
    margin: 0 0 5px 0;
}

.form-control {
    border-radius: 40px;
}

.container-hero .form-control:focus {
    border-color: transparent;
    box-shadow: unset;
}

.input-group-text {
    border-radius: 40px;
    border: 0;
    background-color: #fff;
    color: var(--primary-color);
}

.btn {
    border-radius: 40px;
    &:disabled {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: inline-block !important;
}

.desktop-flex-only {
    display: flex !important;
}

#toast-container>div {
    opacity: 0.9 !important;
}

.error {
    color: var(--primary-color);
}

.validated {
    color: #5bca8d;
}

.neutral {
    color: #67aaf9;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .mobile-only {
        display: inline-block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .desktop-flex-only {
        display: none !important;
    }

    .mb-60-m {
        margin-bottom: 60px;
    }
}

.nav-link {
    color: var(--primary-color);

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

    &.active {
        font-weight: bold;
    }
}

.render-wysiwyg {
    * {
        font-family: "Kumbh Sans", sans-serif !important;
        color: var(--bs-heading-color) !important;
    }

    p, p * {
        font-weight: 300 !important;
        font-size: var(--bs-body-font-size) !important;
    }
}

