/*
  Dividers
 */
.divider-10
{
    height: 10px;
}

.divider-25
{
    height: 25px;
}

.divider-50
{
    height: 50px;
}

.divider-75
{
    height: 75px;
}

.divider-100
{
    height: 100px;
}

/*
    Other css
 */

@font-face
{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-pro/SourceSansPro-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 100 900;
    src: url('../fonts/Work_Sans/WorkSans-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Work Sans';
    font-style: italic;
    font-weight: 100 900;
    src: url('../fonts/Work_Sans/WorkSans-Italic-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Work_Sans/static/WorkSans-Regular.ttf') format('truetype');
}

/* Fallback static Bold */
@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Work_Sans/static/WorkSans-Bold.ttf') format('truetype');
}


body
{
    margin: 0;
    font-family: 'Open Sans', serif;
}

.navbar
{
    height: 100px;
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    background: #943624;
    color: white;
}

.navbar-left
{
    margin-left: 20px;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    width: auto;
}

.navbar-logo
{
    width: 150px;
    height: 80px;
    background: url('../images/logo-white.svg') no-repeat center;
    background-size: contain;
    z-index: 10;
}

.navbar-logo-dark
{
    background: url('../images/logo.svg') no-repeat center !important;
}

.navbar-header-text
{
    font-size: 24px;
    margin-left: 2%;
    display: flex;
    align-items: center;
    color: white;
}

.navbar-right
{
    display: flex;
    padding: 1%;
    width: fit-content;
    color: white;
}

.content
{
    padding: 10px 8% 2% 8%;
}

.button-custom
{
    height: 60px;
    color: white;
    width: fit-content;
}

.button-custom-small
{
    height: 50px;
    color: white;
}

.required:after
{
    content:" *";
    color: black;
}

.row-hover:hover td
{
    background: #f3f3f3;
}

.text-align-center
{
    text-align: center;
}

.btn-primary-large
{
    background-color: #943624;
    font-size: 17px;
    padding: 1% 3%;
}

.btn-primary-normal
{
    background-color: #943624;
    font-size: 15px;
    padding: 1% 1%;
}

.btn-grey-large
{
    background-color: #e0dfdf;
    font-size: 17px;
    padding: 1% 3%;
    margin-right: 1%;
}

.btn-grey-normal
{
    background-color: #e0dfdf;
    font-size: 15px;
    padding: 1% 1%;
    margin-right: 1%;
}

.breadcrumb-content
{
    padding: 15px 8% 0 9%;
}

.title-content
{
    padding: 15px 8% 0 9%;
}

table.dataTable thead th,
table.dataTable.no-footer
{
    border-bottom: 1px solid #ddd !important;
}

.floating {
    position: relative;
}

.floating input {
    width: 100%;
    padding: 24px 12px 16px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #faf8f4;
    font-size: 16px;
    color: #000;
}

.floating input::placeholder {
    color: transparent;
}

.floating label {
    position: absolute;
    top: 18px;
    left: 12px;
    font-size: 16px;
    color: #81796e;
    transition: all .2s;
    pointer-events: none;
}

.floating input:focus + label,
.floating input:not(:placeholder-shown) + label {
    top: 8px;
    left: 12px;
    font-size: 12px;
    opacity: 0.8;
}

.floating select:focus + label,
.floating select:not([value=""]) + label {
    top: 6px;
    left: 12px;
    font-size: 12px;
    opacity: 0.8;
    color: #191a16; /* Highlight color */
    z-index: 4;
}

.floating select {
    width: 100%;
    padding: 24px 12px 8px 12px;
    border: 1px solid #191A16;
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
    color: #000;
    position: relative;
    z-index: 2;
}

.checkbox-custom
{
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-custom div
{
    height: 100%;
}

.gap-24
{
    height: 24px;
}

.gap-48
{
    height: 48px;
}

.input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 1px #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 4px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-overlay.hidden {
    display: none;
}

.loading-spinner {
    border: 6px solid #e0e0e0;
    border-top: 6px solid #3b82f6; /* blue accent */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

.loading-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

