:root {
    --primary: #eae4d9;
    --secondary: #443124;
}


a {
    color: var(--secondary);
    text-decoration: none;
}
.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* GLOBAL */
.object-position-center {
    object-position: center;
}
.object-position-bottom {
    object-position: bottom;
}
.rotate-180 {
    transform: rotate(180deg);
}
.color-secondary {
    color: var(--secondary);
}
.color-toasted {
    color: #AB8A7A;
}
.color-link {
    color: #3bbeff;
}
.color-link:hover {
    color: #93d5ff;
}
.fs-xl {
    font-size: 2.5rem;
}
.fs-xxl {
    font-size: 4rem;
}
.fs-sm {
    font-size: 1rem;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-primary-2 {
    background-color: #F0E7D6 !important;
}
.bg-gray {
    background-color: #D3D3D3 !important;
}
.bg-primary-60 {
    background-color: rgba(224, 215, 199, 0.6) !important;
}
.max-w-md {
    max-width: 768px;
}
.max-h-400 {
    max-height: 400px;
}
.max-h-600 {
    max-height: 600px;
}
.min-h-200 {
    min-height: 200px;
}
.h-200 {
    height: 200px;
}
.vh-25 {
    height: 25vh;
}
.vh-50 {
    min-height: 330px;
    height: 50vh;
}
.justify-align-center {
    justify-content: center;
    align-items: center;
}
.btn-close {
    box-shadow: none !important;
}
.mas-rounded {
    border-radius: 5px;
}
@media (max-width: 768px) {
    .fs-sm {
        font-size: 0.875rem;
    }
}
/* end: GLOBAL */

/* NAVBAR */
.navbar {
    transition: background-color 0.25s ease;
}
.navbar-height { /* For the non transparent background */
    height: 76px;
}
.nav-link {
    width: 75px;
    white-space: nowrap;
}
.nav-link, .navbar-brand, .navbar-toggler {
    color: #ffffff;
}
.nav-link:hover, .navbar-brand:hover {
    color: #ffffff;
}
.bg-primary .nav-link, .bg-primary .navbar-brand, .bg-primary .navbar-toggler {
    color: #000000;
}
.navbar-toggler, .navbar-toggler:focus {
    border: 0 !important;
    box-shadow: none;
}
.dropdown-menu-lang {
    display: none;
    position: absolute;
    right: 40px;
    top: 50px;
    padding: 10px;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    width: 150px;
    list-style-type: none;
    background-color: var(--primary);
}
.dropdown-menu-lang.show {
    display: block;
}
.dropdown-item {
    padding: 2px;
}
.dropdown-item:hover {
    color: #616161;
}
.dropdown-item.active {
    border-radius: 5px;
    background-color: #d8cebf;
}
.offcanvas {
    width: 75% !important;
    max-width: 400px;
}
/* BTN */
.btn-primary {
    text-transform: uppercase;
    padding: 2px 10px;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 5px;
    color: #000000;
}
.btn-primary:hover {
    border-color: #535353;
    color: #535353;
}
.btn-primary.disabled {
    pointer-events: none;
    opacity: 0.5;
}
.btn-primary.active {
    background-color: var(--primary);
}
.btn-primary.btn-white {
    color: #ffffff;
    border: 1px solid #ffffff;
}
.btn-white:hover {
    color: #dfdfdf;
    border: 1px solid #dfdfdf;
}

/* FILTER LOCATIONS */
.location-filter a {
    padding: 2px 10px;
    border: 1px solid transparent;
}
.location-filter a:hover, .location-filter a.active {
    border: 1px solid #000000;
    border-radius: 5px;
}

/* INPUT */
        /* form-group and mas-field based on -> Uiverse.io by mrhyddenn */
.form-group {
    position: relative;
    padding: 20px 0 0;
    width: 100%;
}
.form-group.form-group-small {
    max-width: 180px;
}

.mas-field {
    font-family: inherit;
    width: 100%;
    border: none;
    border-bottom: 1px solid #9b9b9b;
    border-radius: 0;
    outline: 0;
    font-size: 17px;
    color: #000000;
    padding: 2px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.mas-field::placeholder {
    color: transparent;
}

.mas-field:placeholder-shown ~ .mas-label {
    cursor: text;
    top: 20px;
}

.mas-label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #9b9b9b;
    pointer-events: none;
}

.mas-field:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #000000;
    border-image-slice: 1;
}
textarea.form-control, .form-check-input {
    background-color: #f6f6f6;
}

.mas-field:focus ~ .mas-label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    color: #000000;
}
/* reset input */
.mas-field:required, .mas-field:invalid {
    box-shadow: none;
}
.form-control:focus, .form-check-input:focus {
    border: 2px solid #737373;
    box-shadow: none;
}
.mas-field.is-invalid {
    border-bottom: 2px solid #dc3545;
}

/* Css text HTML missing */
.ql-align-justify{text-align:justify}
