body {
    background-color: var(--primary-color);;
    overflow-x: hidden;
}

#main-alert img {
    width: 60%;
}

#agenda-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 99999;
}

#eslabon-advertising {
    font-size: 13px;
    width: 100%;
    height: 70px;
    background-color: var(--tertiary-color);
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 0 10px 0 10px;
}
#eslabon-advertising a {
    color: white;
}

#report-test {
    width: 200px;
    top: 100px;
    position: absolute;
    background-color: white;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}
  
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

a {
    text-decoration: none;
    padding-top: 15px !important;
}
a span {
    margin-left: 3px;
}

h1, h2 {
    font-weight: bold !important;
}
h1 {
    color: var(--secondary-text-color);
}
h2 {
    color: var(--primarytext-color);
}

.middle-line {
    text-decoration: line-through !important;
}

hr {
    margin-top: 5px;
    margin-bottom: 5px;
}
img {
    max-width: 100%;
}
form input[type=text],
form input[type=password],
form input[type=number],
form textarea,
form select {
    font-size: 13px !important;
}

form input[type=text],
form input[type=password],
form input[type=number],
form select {
    height: 50px;
}

.error-text {
    color: var(--error-color);
}
.warning-text {
    color: var(--warning-color);
}
.error-border {
    border: 2px solid var(--error-color) !important;
}
.error-background {
    background-color: var(--error-color) !important;
    color: var(--neutral-color) !important;
}
.success-background {
    background-color: var(--success-color) !important;
    color: var(--neutral-color) !important;
}

.btn-group label {
    align-content: center;
}

.disabled-background {
    background-color: var(--disabled-color) !important;
}

.disabled-opacity {
    opacity: 0.5;
}

.overflow-auto {
    overflow: auto !important;
}
.side-right-container {
    position: fixed;
    background-color: var(--neutral-color);
    width: 90%;
    right: -99%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 10px 20px;
    min-height: 85%;
    max-height: 85%;
    box-shadow: var(--primary-color) 0px 20px 30px 20px;
    display: flex;
    z-index: 9;
}
.side-right-container form {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}
.side-right-container .row-options .col-4 {
    align-content: center;
}
.side-right-container .row-options .alert {
    margin: 0;
    padding: 5px;
}

.capitalize {
    text-transform: capitalize !important;
}
.alert {
    text-align: center !important;
}
.btn-group,
.col .btn {
    width: 100%;
}
.hide {
    display: none !important;
}
/* Cursor properties */
.c-pointer {
    cursor: pointer !important;
}

/* float properties */
.fr {
    float: right !important;
}
.fl {
    float: left !important;
}
/* display properties */
.df {
    display: flex !important;
}
.db {
    display: block !important;
}
.dib {
    display: inline-block !important;
}
.dif {
    display: inline-flex !important;
}
/* text properties */
.tw-auto {
    text-wrap: auto !important;
}
.tar {
    text-align: right !important;
}
.tac {
    text-align: center !important;
}
.tal {
    text-align: left !important;
}
/* width / height properties */
.w-auto {
    width: auto !important;
}
.w100 { width: 100% !important; }
.w20 { width: 20% !important; }
.w50 { width: 50% !important; }
.h100 {
    height: 100% !important;
}
/* padding properties */
.npdd {
    padding: 0 !important;
}
.padl10 {
    padding: 0 !important;
    padding-left: 10px !important;
}
.padt0 {
    padding-top: 0 !important;
}
.pad20 {
    padding: 20px !important;
}
.pad10 {
    padding: 10px !important;
}
.pad5 {
    padding: 5px !important;
}
/* margin properties */
.nm { margin: 0 !important; }
.mar0 { margin: 0 !important; }
.mar5 { margin: 5px !important }
.mt0 { margin-top: 0 !important; }
.mt3 { margin-top: 3px !important; }
.mt10 { margin-top: 10px !important; }
.mt30 { margin-top: 30px !important; }
.mb3 { margin-bottom: 3px !important; }
.mb10 { margin-bottom: 10px !important; }
/* flex properties */
.fl1 { flex: 1; }
.fl2 { flex: 2; }
.fl3 { flex: 3; }

/* absolute position properties */
.rightabsolute {
    position: absolute;
    right: 0;
}

/* align content properties */
.accenter {
    align-content: center !important;
}

.full-dashboard-container {
    min-height: 100%;
}

#loading-icon {
    position: absolute;
    left: 12px;
}
#loading-icon-fixed {
    position: fixed;
    top: 40%;
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    z-index: 99999;
}
.loading-icon-success {
    background-color: var(--success-color) !important;
}
.loading-icon-error {
    background-color: var(--error-color) !important;
}
#main {
    min-height: 100%;
    padding-top: 30px;
    padding-bottom: 100px;
    overflow: hidden !important;
}
#header img {
    width: 32px;
    height: 32px;
}
#header .navbar .container {
    margin: 0;
}
#header .navbar .navbar-nav {
    width: 100%;
}
#header a.dropdown-item {
    color: var(--default-text-color) !important;
}

#main .content {
    margin: 5px;
    padding: 10px;
    background-color: var(--transparent);
}
#main .content-bold {
    background-color: var(--disabled-color-bold);
}
#main .content-rounded {
    border-radius: 10px;
}
#main .content-bordered {
    border: 1px solid var(--disabled-color-bold);
}
#main .content-shadow {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
#main .content-primary {
    background-color: var(--primary-color);
    color: var(--neutral-color);
}

.mt-4-5 {
    margin-top: 2.3rem !important;
}
.mt-6 {
    margin-top: 4rem !important;
}

.modal {
    background-color: rgba(139, 105, 197, 0.8);
}
.modal-header,
.modal-footer {
    background-color: var(--primary-color) !important;
    color: var(--primary-text-color) !important;
}

.table-content .col {
    border: 1px solid black;
}

.modal-header h1,
.modal-header h2,
.modal-header h3,
.modal-header h4,
.modal-header h5,
.modal-header h6 {
    width: 100%;
}

.modal-body .row {
    margin: 0 !important;
}
.modal-body a {
    display: flex;
}

.sticky {
    position: fixed;
    padding-top: 30px;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 5;
    box-shadow: var(--primary-color) 0px 20px 30px -10px;
    border-radius: 0 0 25px 25px;
    padding-bottom: 10px;
}

.sticky + .content {
    padding-top: 102px;
}

.pac-container {
    z-index: 99999 !important;
}
.pac-container span {
    display: inline !important;
}

.result-modal .modal-dialog {
    align-items: end !important
}
.result-modal .modal-content {
    background-color: transparent;
}
.result-modal .modal-content > div {
    border-radius: 10px;
}
.result-modal section {
    margin: 5px;
    padding: 5px;
    border-radius: 10px;
    background-color: var(--background-color);
}
.result-modal-success {
    background-color: var(--success-color) !important;
}
.result-modal-error {
    background-color: var(--error-color) !important;
}

section#footer {
    position: fixed;
    background-color: var(--primary-color) !important;
    color: var(--primary-text-color);
    padding-left: 10px;
    bottom: 0;
    width: 100%;
}

span.badge {
    align-content: center;
}
.row-badge {
    padding-bottom: 3px !important;
}

#side-bar-orders-to-print {
    position: fixed;
    bottom: 5%;
    z-index: 9;
    width: 50%;
    height: 50%;
    padding: 20px;
    right: -51%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    overflow-y: auto;
}
#side-bar-orders-to-print .col {
    align-content: center;
}

.plan-container {
    min-height: 100px;
}
.plan-container ul {
    min-height: 50px;
    font-size: 14px;
}

.accordion-item .row {
    min-height: 40px;
}