﻿html, body {
    background-color: var(--backgroundColor);
    font-family: var(--textFont) !important;
    font-size: 16px;
    color: var(--textFontColor) !important;
    position: relative;
    /*overflow: auto;*/
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    /*min-width: 100vw;*/
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.col-no-padding {
    padding: 0 !important;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.text-normal {
    color: var(--textFont) !important;
    font-family: var(--textFontColor) !important;
}

.text-menu {
    font-family: var(--menuFont) !important;
    font-size: 18px;
    color: var(--menuFontColor) !important;
}

.text-title {
    color: var(--titleFontColor) !important;
    font-family: var(--titleFont) !important;
}

.text-title-color {
    color: var(--titleFontColor) !important;
}

.font-title {
    font-family: var(--titleFont) !important;
}

.btn-white {
    background: #ffffff !important;
    text-align: center !important;
    border: 1px solid #F1F1F1 !important;
    border-radius: 0.5rem;
}

.btn-success {
    background: var(--buttonColor) !important;
    text-align: center !important;
    border: 2px solid var(--buttonColor) !important;
    border-radius: 0.5rem;
}

    .btn-success:hover {
        background: var(--buttonColor) !important;
        text-align: center !important;
        border: 2px solid var(--buttonColor) !important;
    }

.btn-outline-secondary {
    border: 1px solid #000000 !important;
    color: #000 !important;
    text-align: center !important;
}

    .btn-outline-secondary:hover {
        color: #FFF !important;
        background-color: #000 !important;
        border: 1px solid #000000 !important;
    }

.btn-cancelar {
    background: #FFF !important;
    border: 2px solid var(--buttonColor) !important;
    color: var(--buttonColor) !important;
    border-radius: 0.5rem;
    text-align: center !important;
}

.text-white {
    color: white;
}

.bg-grey {
    background-color: #ECECEC;
    border-color: #ECECEC;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

input {
    border: 0px solid transparent;
    background-color: var(--backgroundColor) !important;
    font-size: 13px;
    color: var(--textFontColor) !important;
    font-weight: 500;
    outline: none;
}

    input::placeholder {
        font-size: 13px;
        font-style: italic;
        font-weight: 500;
        color: var(--textFontColor);
    }

.input-date {
    border: 0px solid transparent;
    background-color: #FFF;
    font-size: 13px;
    color: #848484;
    font-weight: 500;
    outline: none;
}

.input-time {
    border: 1px solid black;
    background-color: #FFF;
    font-size: 16px;
    color: black;
    font-weight: 500;
    outline: none;
    border-radius: 4px;
}

input[type=file] {
    color: transparent;
    width: 130px;
}

/*-------------JUMP HUB----------------*/

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: var(--textFontColor);
    background-color: var(--backgroundColor);
    border-color: var(--textFontColor) var(--textFontColor) var(--backgroundColor);
}

.form-select {
    background-color: var(--backgroundColor) !important;
    color: var(--textFontColor) !important;
}

.form-control-sm {
    background-color: var(--backgroundColor) !important;
    color: var(--textFontColor) !important;
}

.form-control {
    background-color: var(--backgroundColor) !important;
    color: var(--textFontColor) !important;
}

    .form-control:focus {
        color: var(--textFontColor) !important;
        background-color: var(--backgroundColor) !important;
        border-color: var(--titleFontColor) !important;
        outline: 0;
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset, 0px 0px 8px rgba(0, 0, 00, 0.5);
    }

    .form-control:disabled, .form-control[readonly] {
        box-shadow: 200px 200px 200px rgba(0, 0, 0, 0.15) inset !important;
    }

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
    color: var(--menuFontColor);
}

    .navbar .navbar-nav li.active {
        position: relative;
    }

.navbar .navbar-nav li.rounded-highlight:hover,
.navbar .navbar-nav li.rounded-highlight:focus {
    background-color: transparent;
    box-shadow: none;
}


/*MENU FOR LG SCREEN*/
@media only screen and (min-width: 992px) {

    .active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        background-color: var(--menuFontColor) !important;
        height: 10px;
        border-radius: 2px 2px 0px 0px;
    }

    .navbar {
        padding: 0;
    }

        .navbar .navbar-nav .nav-link {
            padding: 35px 1em;
        }

        .navbar .navbar-brand {
            padding: 0 1em;
        }

        .navbar .navbar-nav li:hover,
        .navbar .navbar-nav li:focus,
        .navbar .navbar-nav li::after {
            background-color: var(--menuColor);
            box-shadow: inset 0 0 0 10em rgba(255, 255, 255, 0.5);
            color: var(--menuColor);
            transition: ease 0.3s;
        }

        .navbar .nav-item .dropdown-menu {
            border: none;
            display: block;
            opacity: 0;
            visibility: hidden;
            transition: none;
            margin-top: 0;
            background-color: var(--menuColor);
            box-shadow: inset 0 0 0 10em rgba(255, 255, 255, 0.5);
            z-index: 1056;
        }

        .navbar .nav-item:hover .dropdown-menu {
            width: 100%;
            transition: ease 0.3s;
            opacity: 1;
            visibility: visible;
            top: 100%;
            transform: rotateY(0deg);
            background-color: var(--menuColor);
            box-shadow: inset 0 0 0 10em rgba(255, 255, 255, 0.5);
        }

    .dropdown-item {
        padding: 8px;
        position: relative;
    }

        .dropdown-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 5%;
            right: 15%;
            background-color: var(--menuFontColor) !important;
            height: 1px;
        }

        .dropdown-item:hover {
            background-color: var(--menuColor);
            box-shadow: inset 0 0 0 10em rgba(255, 255, 255, 0.5);
            color: var(--menuFontColor);
        }
}

/*MENU FOR SM SCREEN*/
@media only screen and (max-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        border: none;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: none;
        margin-top: 0;
        background: rgba(0,0,0,0);
        z-index: 1056;
    }

    .navbar .nav-item:hover .dropdown-menu {
        width: 100%;
        transition: ease 0.3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateY(0deg);
        background: rgba(0,0,0,0);
    }

    .dropdown-item:hover, .dropdown-item:focus {
        background: rgba(0,0,0,0);
        color: var(--menuFontColor);
    }
}

/*---------------Preview---------------*/

.bg-preview {
    background-color: var(--previewBackgroundColor);
    border-color: var(--previewBackgroundColor);
}

.text-menu-preview {
    font-family: var(--previewMenuFont) !important;
    font-size: 16px;
    color: var(--previewMenuFontColor) !important;
}

.text-title-preview {
    color: var(--previewTitleFontColor) !important;
    font-family: var(--previewTitleFont) !important;
}

.text-font-preview {
    color: var(--previewTextFontColor) !important;
    font-family: var(--previewTextFont) !important;
}

.table-preview {
    color: var(--previewTextFontColor) !important;
    background-color: var(--previewBackgroundColor) !important;
}

.input-preview {
    color: var(--previewTextFontColor) !important;
    background-color: var(--previewBackgroundColor) !important;
}
    .input-preview::placeholder {
        color: var(--previewTextFontColor) !important;
    }


.input-preview::placeholder {
    font-size: 11px;
    font-family: var(--previewTextFont) !important;
}

.btn-preview {
    background: var(--previewButtonColor) !important;
    text-align: center !important;
    border: 3px solid var(--previewButtonColor) !important;
    border-radius: 0.5rem;
}

    .btn-preview:hover {
        background: var(--previewButtonColor) !important;
        text-align: center !important;
        border: 3px solid var(--previewButtonColor) !important;
    }

.btn-cancelar-preview {
    background: #FFF !important;
    border: 2px solid var(--previewButtonColor) !important;
    color: var(--previewButtonColor) !important;
    border-radius: 0.5rem;
    text-align: center !important;
}

.navbar-preview {
    height: 70px;
    background: linear-gradient(to right, var(--previewMenuColor), var(--previewMenuColorEnd)) !important;
}

.nav-link-preview {
    padding: 22px 1em !important;
    font-size: 16px !important;
}


.navbar .navbar-nav li.nav-item-preview:hover,
.navbar .navbar-nav li.nav-item-preview:focus,
.navbar .navbar-nav li.nav-item-preview::after {
    background-color: var(--previewMenuColor) !important;
    box-shadow: inset 0 0 0 10em rgba(255, 255, 255, 0.5) !important;
    color: var(--previewMenuFontColor) !important;
}

.navbar .navbar-nav .nav-link-preview:hover,
.navbar .navbar-nav .nav-link-preview:focus {
    color: var(--previewMenuFontColor);
}

.active-preview {
    position: relative;
}

    .active-preview ::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        background-color: var(--previewMenuFontColor) !important;
        height: 8px;
        border-radius: 3px 3px 0px 0px;
    }

.arrow-down-small-preview {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 13.0px 7.5px 0 7.5px;
    border-color: var(--previewTextFontColor) transparent transparent transparent;
    transform: rotate(0deg);
}

.arrow-down-preview {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 19px 10px 0 10px;
    border-color: var(--previewTitleFontColor) transparent transparent transparent;
    transform: rotate(0deg);
}

.arrow-left-preview {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 19px 10px 0;
    border-color: transparent var(--previewTitleFontColor) transparent transparent;
    transform: rotate(0deg);
}

/*-----------Fim Preview ---------*/

    .no-border-top {
        position: relative;
    }

        .no-border-top::after {
            content: '';
            position: absolute;
            top: 0;
            left: 5%;
            right: 15%;
            background-color: var(--menuFontColor) !important;
            height: 0px;
        }

    .dropdown-page {
        color: var(--titleFontColor) !important;
    }

        .dropdown-page:hover {
            background-color: var(--backgroundColor);
            box-shadow: none;
        }

    .dropdown-menu {
        background-color: var(--backgroundColor);
    }

    .btn-page {
        color: var(--titleFontColor) !important;
    }

    .nav-link {
        color: var(--menuFontColor);
        text-decoration: none !important;
    }

    .nav-item {
        color: var(--menuFontColor);
        text-decoration: none !important;
    }

    .inactive-link {
        cursor: default;
    }

    .bg-menu {
        /*background-color: var(--menuColor);*/
        background: linear-gradient(to right, var(--menuColor), var(--menuColorEnd));
        border-color: var(--menuColor);
    }

    .dropdown-menu-transparent {
        background: transparent;
        border-color: transparent;
        min-width: 7rem;
    }

    .bg-theme {
        background-color: var(--backgroundColor);
        border-color: var(--backgroundColor);
    }

    .bg-title-color {
        background-color: var(--titleFontColor) !important;
        border-color: var(--titleFontColor) !important;
    }

    .bg-light-yellow {
        background-color: #FFD84D;
        border-color: #FFD84D;
    }

        .bg-light-yellow:hover {
            background-color: #FFDE66;
            border-color: #FFDE66;
        }

    .bg-light-green {
        background-color: #99EC93;
        border-color: #99EC93;
    }

    .text-green {
        color: #2BB921 !important;
    }

    .text-yellow {
        color: #FFC600 !important;
    }

    .text-grey {
        color: #707070 !important;
    }

    .text-light-grey {
        color: #BFBFBF !important;
    }

    .text-dark-grey {
        color: #848484 !important;
    }

    .text-light-green {
        color: #7DCE77 !important;
    }

    .text-red {
        color: #FB4A4A !important;
    }

    .text-red-delete {
        color: red !important;
    }

    .text-black {
        color: black !important;
    }

    .text-theme {
        color: var(--textFontColor) !important;
    }

a,
a:hover,
a:focus {
    text-decoration: none !important;
    color: inherit;
}

.table {
    color: var(--textFontColor) !important;
    background-color: var(--backgroundColor) !important;
}

.table-shadow {
    box-shadow: 0rem 0.3rem 0.3rem rgb(0 0 0 / 15%),
                inset 5rem 5rem 5rem rgb(0 0 0/ 7%);
}

    .table > :not(:first-child) {
        border-top: 0;
    }

    table tr:last-child {
        border: 0 transparent;
    }

    .table-noborder {
        border-collapse: collapse;
    }

    .td-noborder {
        border-style: none;
    }

    .table > thead > tr > th.text-table-home {
        font-weight: 500;
        vertical-align: middle;
    }

    .table > thead > tr > th.text-table-import {
        font-weight: 500;
        font-size: 16px;
        vertical-align: middle;
    }

    .table > tbody > tr > td.text-content-home {
        font-weight: normal;
        font-size: 16px;
    }

    .table > tbody > tr > td.text-content-settings {
        color: #929292;
        font-weight: normal;
        font-size: 14px;
    }

    .table > tbody > tr > td {
        vertical-align: middle !important;
    }

    .image-small {
        height: 45px;
        width: 45px;
    }

    .dot {
        height: 45px;
        width: 45px;
        background-color: #BFBFBF;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
        color: white;
        font-size: 16px;
        font-weight: normal;
        padding-top: 11px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .dot-60 {
        height: 60px;
        width: 60px;
        background-color: #BFBFBF;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
        color: white;
        font-size: 18px;
        font-weight: normal;
        padding-top: 18px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .dot-80 {
        height: 80px;
        width: 80px;
        background-color: #BFBFBF;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
        color: white;
        font-size: 30px;
        font-weight: normal;
        padding: 20px;
    }

    .card-shadow {
        box-shadow: 3px 3px 12px -3px rgb(0 0 0 / 30%) !important;
    }

    .filter-darker {
        filter: brightness(0.85);
    }

    .filter-lighter {
        filter: brightness(15%);
    }

    .modal-open {
        overflow-y: hidden !important;
    }

    @media (max-width: 1199px) {
        .modal-xl {
            max-width: 95%;
        }
    }

    .scroll {
        max-height: 65vh;
        overflow-y: auto;
    }

    .scroll-modal {
        max-height: 410px;
        min-height: 410px;
        overflow-y: auto;
        overflow-x: auto;
    }

    .scroll-modal-small {
        max-height: 400px;
        overflow-y: auto;
    }

    .page-link {
        font-size: 16px !important;
        border: none !important;
        color: var(--titleFontColor) !important;
        background-color: var(--backgroundColor) !important;
    }

.ui-autocomplete {
    background: var(--backgroundColor);
    color: var(--textFontColor);
    font-size: 14px;
    font-family: var(--textFont);
    max-height: 200px;
    min-width: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    z-index: 1055 !important;
    padding: 10px;
    border-bottom: 1px solid white;
    word-wrap: break-word;
    /*white-space: nowrap;*/
}

    .ui-menu-item .ui-menu-item-wrapper {
        /*border-bottom: 1px solid #848484;*/
    }

        .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
            font-size: 15px;
            font-weight: 600 !important;
            color: var(--textFontColor) !important;
            border: none;
            border-bottom: 1px solid var(--textFontColor);
            background-color: var(--backgroundColor);
        }

.big-autocomplete {
    background: var(--backgroundColor);
    font-size: 1.3rem;
    font-family: var(--titleFont);
    color: var(--titleFontColor);
    max-height: 250px;
    min-width: 450px;
    width: auto;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1055 !important;
    left: 80px !important;
    padding: 15px;
    white-space: nowrap;
}

        .big-autocomplete .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
            font-size: 1.3rem;
            font-weight: 600 !important;
            color: var(--titleFontColor) !important;
            border: none;
            border-bottom: 1px solid var(--titleFontColor);
            /*padding: 3px;*/
        }

    .form-switch.form-switch-md .form-check-input {
        height: 1.5rem;
        width: calc(2.5rem + 0.75rem);
    }

    .form-switch.form-switch-lg .form-check-input {
        height: 2rem;
        width: calc(3rem + 0.75rem);
        border-radius: 4rem;
    }

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

    .form-check-input:focus {
        border-color: var(--buttonColor) !important;
        box-shadow: none;
        color: var(--buttonColor) !important;
    }

    .form-switch .form-check-input:focus {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e")
    }

    .modal-content {
        border: none;
        margin-right: 0px !important;
    }

    .card-inside-modal {
        border-radius: 0.7rem !important;
        border: 0px solid var(--menuColor) !important;
    }

    .card-header-menu-color {
        color: white;
        background-color: var(--menuColorEnd) !important;
        border: 2px solid var(--menuColorEnd);
        border-top-left-radius: 0.7rem !important;
        border-top-right-radius: 0.7rem !important;
    }

    .card-body-menu-color {
        border: 3px solid var(--menuColorEnd);
        border-bottom-left-radius: 0.7rem !important;
        border-bottom-right-radius: 0.7rem !important;
    }

    .card-body-grey {
        border: 2px solid #707070;
        border-bottom-left-radius: 0.7rem !important;
        border-bottom-right-radius: 0.7rem !important;
    }

    .card {
        max-width: 100%;
        background-color: transparent;
    }

    .card-title {
        word-wrap: break-word;
    }

    .card-text {
        word-wrap: break-word;
    }

    .modal-title {
        word-wrap: break-word;
    }

    .text-wrap {
        word-wrap: break-word;
    }

    .nowrap {
        white-space: nowrap;
    }

    .removeUser {
        float: right;
    }

    .removeFunction {
        float: right;
    }

    .font-12 {
        font-size: 12px !important;
    }

    .font-13 {
        font-size: 13px !important;
    }

    .font-14 {
        font-size: 14px !important;
    }

    .font-16 {
        font-size: 16px !important;
    }

    .font-18 {
        font-size: 18px !important;
    }

    .font-20 {
        font-size: 20px !important;
    }

    .font-22 {
        font-size: 22px !important;
    }

    .font-24 {
        font-size: 24px !important;
    }

    .font-30 {
        font-size: 30px !important;
    }

    .font-34 {
        font-size: 34px !important;
    }

    .font-40 {
        font-size: 40px !important;
    }

    .login-image {
        background: url('../images/login_image.png') no-repeat center center;
        background-size: cover;
    }

    .loading-gif {
        content: url('../images/loading.gif');
    }

    .dropdown-toggle::after {
        vertical-align: middle;
        border-top: 0.7em solid;
        border-right: 0.4em solid transparent;
        border-bottom: 0;
        border-left: 0.4em solid transparent;
    }

    .font-home-card {
        font-size: 14px;
        word-break: break-all;
    }

    @media (max-width: 1310px) {
        .font-home-card {
            font-size: 12px;
        }
    }

    .home-card {
        position: relative;
        min-height: 180px;
    }

    .row-photos-home {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 15px;
    }

    .break-all {
        word-break: break-all;
    }

    .underline-search {
        border-bottom: 2px solid var(--textFontColor);
        margin-right: 10px;
        margin-left: 10px;
        width: 50%;
    }

    .arrow-right {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 7px 0 7px 13px;
        border-color: transparent transparent transparent var(--textFontColor);
        transform: rotate(0deg);
    }

    .arrow-right-small-menu-color {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 7px 0 7px 13px;
        border-color: transparent transparent transparent var(--menuFontColor);
        transform: rotate(0deg);
    }

    .arrow-right-big {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 10px 0 10px 17.3px;
        border-color: transparent transparent transparent var(--textFontColor);
        transform: rotate(0deg);
    }

    .arrow-left-small-menu-color {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 7px 13px 7px 0;
        border-color: transparent var(--menuFontColor) transparent transparent;
        transform: rotate(0deg);
    }

    .arrow-left {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 10px 17.3px 10px 0;
        border-color: transparent var(--titleFontColor) transparent transparent;
        transform: rotate(0deg);
    }

    .arrow-down {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 13.0px 7.5px 0 7.5px;
        border-color: var(--textFontColor) transparent transparent transparent;
        transform: rotate(0deg);
    }

    .arrow-down-big {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 17.3px 10px 0 10px;
        border-color: var(--titleFontColor) transparent transparent transparent;
        transform: rotate(0deg);
    }

    .arrow-down-big-text {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 17.3px 10px 0 10px;
        border-color: var(--textFontColor) transparent transparent transparent;
        transform: rotate(0deg);
    }

    .arrow-up {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0px 7.5px 13px 7.5px;
        border-color: transparent transparent var(--textFontColor) transparent;
        transform: rotate(0deg);
    }

    .arrow-up-big {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0 10px 17.3px 10px;
        border-color: transparent transparent var(--titleFontColor) transparent;
        transform: rotate(0deg);
    }

    .arrow-up-big-text {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0 10px 17.3px 10px;
        border-color: transparent transparent var(--textFontColor) transparent;
        transform: rotate(0deg);
    }

    #mask-loader {
        position: fixed;
        display: block;
        z-index: 999;
        width: 100%;
        height: 100%;
        background: rgba(70,70,70);
        text-align: center;
    }

    .center {
        position: absolute;
        margin: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    /* REMOVE ARROWS IN INPUT NUMBER */
    /* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    input[type=number] {
        -moz-appearance: textfield;
    }

    .customTooltip * {
        color: #929292;
    }

    .customTooltip .introjs-tooltip-title {
        color: var(--titleFontColor);
    }

    .nav-item.dropdown:not(.show) {
        margin-bottom: 0;
    }

        .nav-item.dropdown:not(.show) .dropdown-menu {
            display: none;
        }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }

.rounded-card {
    border-radius: 0.7rem;
}

@media (max-width: 576px) {
    .centered {
        margin-top: 25%
    }

    .nav-item.active::after {
        display: none;
    }

    .navbar-nav li.nav-item {
        padding: 0px 5px 0px 5px;
    }

        .navbar-nav li.nav-item:hover {
            padding: 0px 5px 0px 5px;
        }

    #principalMenu {
        margin-top: 5px;
    }
}

.btn-white-login {
    background: #ffffff !important;
    text-align: center !important;
    border: 1px solid #F1F1F1 !important;
    border-radius: 0.5rem;
}
