@charset "UTF-8";
@font-face {
    font-family: 'Open Sans';
    font-weight: 300;
    src: url(/Content/Omnibees/css/fonts/open-sans/OpenSans-Light.ttf);
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 500;
    src: url(/Content/Omnibees/css/fonts/open-sans/OpenSans-Regular.ttf);
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 600;
    src: url(/Content/Omnibees/css/fonts/open-sans/OpenSans-SemiBold.ttf);
}

@font-face {
    font-family: 'Open Sans';
    font-weight: bold;
    src: url(/Content/Omnibees/css/fonts/open-sans/OpenSans-Bold.ttf);
}


/* clears the 'X' from Internet Explorer */
input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the 'X' from Chrome */
input[type=text]::-webkit-search-decoration,
input[type=text]::-webkit-search-cancel-button,
input[type=text]::-webkit-search-results-button,
input[type=text]::-webkit-search-results-decoration {
    display: none;
}

/* GERAL
-----------------------------------------------------------------------------*/
:root {
    --primaryColor: #E6E6E6;
    --primaryDarker: #9C9C9C;
    --secondaryColor: #273240;
}

*::selection {
    background: var(--primaryColor);
    color: var(--secondaryColor);
}

*::-moz-selection {
    background: var(--primaryColor);
    color: var(--secondaryColor);
}

html {
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--secondaryColor);
    padding-right: 0 !important;
}

@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb0 {
    margin-bottom: 0px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt0 {
    margin-top: 0px;
}

.ml10 {
    margin-left: 10px;
}

.ml20 {
    margin-left: 20px;
}

/* Perfect Scrollbar
---------------------------------------------------------------- */
.scrollbar::-webkit-scrollbar {
    width: 5px;
    border-width: 5px;
}

.scrollbar::-webkit-scrollbar-track-piece {
    background-color: #e6e6e6;
    border-color: #fcfcfc;
    border-width: 2px 2px 2px 2px;
    border-style: solid;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c5c5c5;
    border-color: #c5c5c5;
    border-style: solid;
    border-width: 1px 8px 1px 8px;
}

/* BOTÕES
-----------------------------------------------------------------------------*/
a.btn {
    border: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    width: auto;
}

button.btn {
    height: 28px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: normal;
}

button.btn:disabled::before {
    opacity: 0.3;
}

.btn-icon:before {
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 7px;
}

.btn-icon:disabled::before {
    opacity: 0.3;
}

.btn-onlyicon {
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    border: none;
    padding: 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px !important;
    border: 1px solid #c5c5c5;
}

.btn-onlyicon:before {
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    margin: 0px !important;
}

.btn-onlyicon:focus,
.btn-onlyicon:active,
.btn-onlyicon.active {
    background-color: #e6e6e6;
    border-color: #e6e6e6;
}

.btn-onlyicon:hover {
    background-color: #e6e6e6;
    border-color: #e6e6e6;
}

.btn-primary {
    color: #ffffff;
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.btn-primary:hover {
    background-color: var(--primaryDarker);
    border-color: var(--primaryDarker);
    color: #ffffff;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary.active {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.btn-secondary {
    background-color: #ffffff;
    border: 1px solid #c5c5c5!important;
    border-radius: 4px;
    font: normal normal 600 11px/15px "Open Sans", sans-serif;
    color: var(--secondaryColor);
}

.btn-secondary:hover {
    border: 1px solid #e6e6e6 !important;
    background-color: #e6e6e6;
    color: var(--secondaryColor);
}

.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
    color: var(--secondaryColor);
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
    background-color: #ffffff;
    border-color: #e6e6e6;
    color: var(--secondaryColor);
}

.btn-tertiary {
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    border-radius: 4px;
    font: normal normal 600 11px/15px "Open Sans", sans-serif;
    color: var(--secondaryColor);
}

.btn-tertiary:hover {
    background-color: #e6e6e6;
    color: var(--secondaryColor);
    border: 1px solid #f5f5f5;
}

.btn-tertiary:focus,
.btn-tertiary:active,
.btn-tertiary.active {
    background-color: #f5f5f5;
    color: var(--secondaryColor);
}

.btn-tertiary:not(:disabled):not(.disabled):active,
.btn-tertiary:not(:disabled):not(.disabled).active {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
}

.btn-toggle {
    background-color: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    color: var(--secondaryColor);
    padding: 8px 10px;
    transition-duration: 0.3s;
    width: auto;
}

.btn-toggle:hover {
    background-color: var(--secondaryColor);
    color: #ffffff;
}

.btn-toggle:focus,
.btn-toggle:active,
.btn-toggle.active {
    color: #ffffff;
    background-color: var(--secondaryColor);
    border: 1px solid var(--secondaryColor);
}

.btn-help {
    position: relative;
}

.btn-help:before {
    content: "";
    background-image: url(../img/chat.svg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.btn-help--online:before {
    background-image: url(../img/Online.svg);
}

.btn-help--offline:before {
    background-image: url(../img/Offline.svg);
}
/* BEHAVIOURS
-----------------------------------------------------------------------------*/
/* PLACEHOLDER
-----------------------------------------------------------------------------*/
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
    color: #9c9c9c;
}

input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
textarea::-moz-placeholder {
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
    color: #9c9c9c;
}

input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
textarea:-moz-placeholder {
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
    color: #9c9c9c;
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
    color: #9c9c9c;
}

input[type="text"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
    color: #9c9c9c;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: #151b26;
}

input[type="text"]:active,
input[type="password"]:active,
input[type="search"]:active,
input[type="number"]:active,
textarea:active {
    border-color: #151b26;
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="number"]:hover,
textarea:hover {
    border-color: #151b26;
}

textarea {
    border-radius: 2px;
}

textarea:valid {
    border-color: #151b26;
}

a {
    transition-duration: 0s;
    cursor: pointer !important;
}

a:focus {
    outline: none;
    outline: none;
    box-shadow: none !important;
}

button {
    outline: none;
    box-shadow: none !important;
    transition-duration: 0.3s;
    cursor: pointer !important;
}

button:focus {
    outline: none;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

button:active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

button:hover {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.form-control {
    border-radius: 0px;
}

input {
    outline: none;
    box-shadow: none !important;
    transition-duration: 0.3s;
    border-radius: 0px;
}

input:focus {
    outline: none;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

input:hover {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

input:active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

input:disabled {
    background-color: #e6e6e6 !important;
}

input:disabled:hover {
    border-color: #c5c5c5 !important;
    border-width: 1px !important;
    border-style: solid !important;
}

textarea {
    outline: none;
    box-shadow: none !important;
    transition-duration: 0.3s;
}

textarea:focus {
    outline: none;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

textarea:hover {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

textarea:active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

textarea:disabled {
    background-color: #e6e6e6;
}

textarea::-webkit-scrollbar {
    width: 5px;
    border-width: 5px;
}

textarea::-webkit-scrollbar-track-piece {
    background-color: #e6e6e6;
    border-color: #ffffff;
    border-width: 2px 2px 2px 2px;
    border-style: solid;
}

textarea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c5c5c5;
    border-color: #c5c5c5;
    border-style: solid;
    border-width: 1px 8px 1px 8px;
}

select {
    outline: none;
    box-shadow: none !important;
    transition-duration: 0.3s;
}

label:focus {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.btn:active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.btn.active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

select.custom-select {
    background-image: url(../img/chevron.svg);
    background: #ffffff url(../img/chevron.svg) right 0.625rem center/8px 10px no-repeat;
}

.form-group > label {
    font: normal normal bold 11px/15px "Open Sans";
    color: var(--secondaryColor);
    margin-bottom: 5px;
}

.form-control.is-invalid {
    border-color: #fe0000;
}

.form-control.is-invalid:hover {
    border-color: #fe0000 !important;
}

/* UPLOAD FILE
--------------------------------------------------------------------------------------*/
.uploadfile {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.uploadfile .inputfile {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #c5c5c5;
    border-radius: 4px;
    padding: 3px 8px 3px 4px;
    position: relative;
    /*width: 135px;*/
    transition-duration: 0.3s;
    cursor: pointer;
}

.uploadfile .inputfile label {
    white-space: nowrap;
    cursor: pointer;
    font-weight: normal;
}

.uploadfile .inputfile:before {
    width: 24px;
    height: 24px;
    content: "";
    background-image: url(../img/upload.svg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.uploadfile .inputfile:hover {
    background-color: #e6e6e6;
}

.uploadfile .inputfile input[type="file"] {
    opacity: 0;
    position: absolute;
}

.uploadfile .help {
    font: italic normal normal 11px/13px "Open Sans";
    color: #9c9c9c;
    margin-left: 10px;
}

.uploadfile--primary .inputfile {
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}

.uploadfile--primary .inputfile label {
    color: #fff;
}

.uploadfile--primary .inputfile:before {
    content: "";
    background-image: url(../img/upload.svg);
    filter: invert(99%) sepia(2%) saturate(1039%) hue-rotate(259deg) brightness(117%) contrast(100%);
}

.uploadfile--primary .inputfile:hover {
    background-color: var(--primaryDarker);
    border: 1px solid var(--primaryColor);
}

.searchplace {
    background-color: #ffffff;
    border: 1px solid #c5c5c5;
    border-radius: 4px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0px 10px;
}

.searchplace:hover {
    border-color: #151b26;
}

.searchplace.active {
    border-color: #151b26;
}

.searchplace input.form-control {
    border: none;
    padding: 0.3rem 0.75rem;
    font-size: 11px;
    line-height: 1rem;
    height: 28px;
    border-radius: 4px !important;
    background-color: transparent !important;
}

.searchplace button.btn-icon--search:before {
    width: 14px;
    height: 14px;
    background-size: cover;
    opacity: 0.5;
}

/* DROPDOWN SELECT
--------------------------------------------------------------------------------------*/
.dropdown-select > button {
    transition-duration: 0.3s;
    display: block;
    width: 100%;
    height: calc(2em + 0.5rem + 2px);
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 400;
    line-height: 2;
    color: var(--secondaryColor);
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    border-radius: 2px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    background-image: url(../img/chevron.svg);
    background: #ffffff url(../img/chevron.svg) right 0.625rem center/8px 10px no-repeat;
}

.dropdown-select > button:hover,
.dropdown-select > button:active,
.dropdown-select > button:focus {
    background-color: #fff;
}

.dropdown-select .dropdown-menu {
    width: 100%;
}

.dropdown-select .dropdown-menu button.dropdown-item {
    padding: 7px 1.5rem;
}

.dropdown-select .dropdown-menu button.dropdown-item:hover {
    background-color: #e6e6e6;
}

/* SELECT
-----------------------------------------------------------------------------*/
.select-box {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    font-family: "Open Sans", "Helvetica Neue", "Segoe UI", "Calibri", "Arial", sans-serif;
    font-size: 18px;
    color: #60666d;
}

@media (min-width: 768px) {
    .select-box {
        width: 70%;
    }
}

@media (min-width: 992px) {
    .select-box {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .select-box {
        width: 30%;
    }
}

.select-box__current {
    position: relative;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    outline: none;
}

.select-box__current:focus + .select-box__list {
    opacity: 1;
    animation-name: none;
}

.select-box__current:focus + .select-box__list .select-box__option {
    cursor: pointer;
}

.select-box__current:focus .select-box__icon {
    transform: translateY(-50%) rotate(180deg);
}

.select-box__icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    opacity: 0.3;
    transition: 0.2s ease;
}

.select-box__value {
    display: flex;
}

.select-box__input {
    display: none;
}

.select-box__input:checked + .select-box__input-text {
    display: block;
}

.select-box__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 15px;
    background-color: #ffffff;
}

.select-box__list {
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;
    opacity: 0;
    animation-name: HideList;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: step-start;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.select-box__option {
    display: block;
    padding: 15px;
    background-color: #ffffff;
}

.select-box__option:hover,
.select-box__option:focus {
    color: #546c84;
    background-color: #fbfbfb;
}

@keyframes HideList {
    from {
        transform: scaleY(1);
    }

    to {
        transform: scaleY(0);
    }
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    position: relative !important;
    right: -5px !important;
    background-image: url(../img/cancel.svg) !important;
    width: 24px;
    height: 24px;
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 60px;
}

input[type="search"]::-webkit-search-cancel-button:hover {
    background-color: #e5e5e5;
}

.input-group {
    border: 1px solid #c5c5c5;
    border-radius: 2px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background-color: #ffffff;
}

.input-group:hover {
    border-color: #151b26;
}

.input-group.disabled {
    background-color: #e6e6e6;
}

.input-group.disabled .input-group-append .input-group-text {
    background-color: #e6e6e6;
}

.input-group.disabled:hover {
    border: 1px solid #c5c5c5;
}

.input-group .form-control {
    border: none !important;
}

.input-group .form-control:hover {
    border: none !important;
}

.input-group .input-group-append {
    background-color: transparent !important;
    opacity: 1;
}

.input-group .input-group-append .input-group-text {
    font: normal normal bold 10px/14px "Open Sans";
    color: #9c9c9c;
    background-color: transparent !important;
    opacity: 1;
    padding: 0.25rem 8px;
    border: none;
}

.input-group--toggle {
    border: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.input-group--toggle button {
    /*margin-right: 10px;*/
    padding-left: 20px;
    padding-right: 20px;
    height: 32px;
    width: 49%;
}

.input-group--toggle button:last-child {
    margin-right: 0px;
}

textarea {
    line-height: 150% !important;
}

input[type="text"],
input[type="pass"],
input[type="email"],
input[type="number"],
textarea {
    /*background-color: #FFFFFF;*/
    border: 1px solid #c5c5c5;
    border-radius: 2px;
    height: 32px;
    padding: 5px;
}

input[type="text"]::-webkit-inner-spin-button,
input[type="pass"]::-webkit-inner-spin-button,
input[type="email"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-inner-spin-button,
textarea::-webkit-inner-spin-button {
    -webkit-appearance: none;
    cursor: pointer;
    display: block;
    width: 14px;
    color: #333333;
    text-align: center;
    position: relative;
    opacity: 1;
    background-image: url("../img/arrow-numbers.svg");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

input[type="text"]:hover::-webkit-inner-spin-button,
input[type="pass"]:hover::-webkit-inner-spin-button,
input[type="email"]:hover::-webkit-inner-spin-button,
input[type="number"]:hover::-webkit-inner-spin-button,
textarea:hover::-webkit-inner-spin-button {
    width: 14px;
    height: 14px;
    position: relative;
    border-radius: 0px;
}

input[type="number"] {
    min-width: 65px;
    width: 65px;
}

.btn-date,
input[type="date"] {
    min-height: 36px;
    height: 36px;
}

.btn-date:hover,
input[type="date"]:hover {
    border-color: #151b26 !important;
}

.btn-date:focus,
.btn-date:active,
input[type="date"]:focus,
input[type="date"]:active {
    border-color: #151b26 !important;
}

/* CUSTOM RADIO
-----------------------------------------------------------------------------*/
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url(../img/circle-full.svg) !important;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-position: center;
}

.custom-radio .custom-control-label::before {
    color: #000;
    border-color: #c5c5c5;
    background-color: #fff;
    width: 12px;
    height: 12px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #000;
    background-color: #fff;
}

.custom-radio .custom-control-label::after {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    content: "";
    background-size: 80%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-position: center;
    left: -21px;
    top: 50%;
    transform: translateY(-50%);
}

/* CUSTOM CHECKBOX
-----------------------------------------------------------------------------*/
.checkbox {
    position: absolute;
    opacity: 0;
}

.checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin-left: 3px;
    font-weight: normal;
}

.checkbox + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border: solid 1px #c5c5c5;
    border-radius: 2px;
}

.checkbox:hover + label:before {
    background: #ffffff;
    border: solid 1px #151b26;
}

.checkbox:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
    box-shadow: none !important;
}

.checkbox:checked + label:before {
    background: #151b26;
    box-shadow: none !important;
    border: solid 1px #151b26;
}

.checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
    box-shadow: none !important;
}

.checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
    border: none;
    box-shadow: none !important;
}

.checkbox:checked + label:after {
    content: "";
    position: absolute;
    left: 2px;
    top: 6px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none !important;
}

.dropdown-menu .dropdown-item {
    padding: 10px 10px;
    font: normal normal normal 11px/15px "Open Sans";
    color: var(--secondaryColor);
}

.dropdown-menu .dropdown-item.dropdown-item-disabled {
    color: #9c9c9c;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f1f1f1;
}

.form-group .custom-radio {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.btn-switch {
    padding: 0;
    position: relative;
    border: none;
    height: 1.5rem;
    width: 3rem;
    border-radius: 1.5rem !important;
    color: #6b7381;
    background: #9c9c9c;
}

.btn-switch--default {
    height: 24px !important;
}

.btn-switch:focus,
.btn-switch.focus,
.btn-switch:focus.active,
.btn-switch.focus.active {
    outline: none;
}

.btn-switch:before,
.btn-switch:after {
    line-height: 1.5rem;
    width: 4rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}

.btn-switch:before {
    left: -4rem;
}

.btn-switch:after {
    right: -4rem;
    opacity: 0.5;
}

.btn-switch > .handle {
    position: absolute;
    /*top: 0.35rem;*/
    left: 0.1875rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 1.125rem;
    background: #ffffff;
    transition: left 0.25s;
}

.btn-switch.active {
    transition: background-color 0.25s;
}

.btn-switch.active > .handle {
    left: 1.6875rem;
    transition: left 0.25s;
}

.btn-switch.active:before {
    opacity: 0.5;
}

.btn-switch.active:after {
    opacity: 1;
}

.btn-switch.btn-sm:before,
.btn-switch.btn-sm:after {
    line-height: -0.5rem;
    color: #ffffff;
    letter-spacing: 0.75px;
    left: 0.4125rem;
    width: 2.325rem;
}

.btn-switch.btn-sm:before {
    text-align: right;
}

.btn-switch.btn-sm:after {
    text-align: left;
    opacity: 0;
}

.btn-switch.btn-sm.active:before {
    opacity: 0;
}

.btn-switch.btn-sm.active:after {
    opacity: 1;
}

.btn-switch.btn-xs:before,
.btn-switch.btn-xs:after {
    display: none;
}

.btn-switch:before,
.btn-switch:after {
    color: #9c9c9c;
}

.btn-switch.active {
    background-color: #4baf4f;
}

.btn-switch.btn-lg {
    padding: 0;
    position: relative;
    border: none;
    height: 2.5rem;
    width: 5rem;
    border-radius: 2.5rem;
}

.btn-switch.btn-lg:focus,
.btn-switch.btn-lg.focus,
.btn-switch.btn-lg:focus.active,
.btn-switch.btn-lg.focus.active {
    outline: none;
}

.btn-switch.btn-lg:before,
.btn-switch.btn-lg:after {
    line-height: 2.5rem;
    width: 5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}

.btn-switch.btn-lg:before {
    left: -5rem;
}

.btn-switch.btn-lg:after {
    right: -5rem;
    opacity: 0.5;
}

.btn-switch.btn-lg > .handle {
    position: absolute;
    top: 0.3125rem;
    left: 0.3125rem;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 1.875rem;
    background: #ffffff;
    transition: left 0.25s;
}

.btn-switch.btn-lg.active {
    transition: background-color 0.25s;
}

.btn-switch.btn-lg.active > .handle {
    left: 2.8125rem;
    transition: left 0.25s;
}

.btn-switch.btn-lg.active:before {
    opacity: 0.5;
}

.btn-switch.btn-lg.active:after {
    opacity: 1;
}

.btn-switch.btn-lg.btn-sm:before,
.btn-switch.btn-lg.btn-sm:after {
    line-height: 0.5rem;
    color: #ffffff;
    letter-spacing: 0.75px;
    left: 0.6875rem;
    width: 3.875rem;
}

.btn-switch.btn-lg.btn-sm:before {
    text-align: right;
}

.btn-switch.btn-lg.btn-sm:after {
    text-align: left;
    opacity: 0;
}

.btn-switch.btn-lg.btn-sm.active:before {
    opacity: 0;
}

.btn-switch.btn-lg.btn-sm.active:after {
    opacity: 1;
}

.btn-switch.btn-lg.btn-xs:before,
.btn-switch.btn-lg.btn-xs:after {
    display: none;
}

.btn-switch.btn-sm {
    padding: 0;
    position: relative;
    border: none;
    height: 24px;
    width: 50px;
    border-radius: 1.5rem;
}

.btn-switch.btn-sm:focus,
.btn-switch.btn-sm.focus,
.btn-switch.btn-sm:focus.active,
.btn-switch.btn-sm.focus.active {
    outline: none;
}

.btn-switch.btn-sm:before,
.btn-switch.btn-sm:after {
    line-height: 1.5rem;
    width: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}

.btn-switch.btn-sm:before {
    left: -0.5rem;
}

.btn-switch.btn-sm:after {
    right: -0.5rem;
    opacity: 0.5;
}

.btn-switch.btn-sm > .handle {
    position: absolute;
    /*top: 1px;*/
    left: 1px;
    width: 22px;
    height: 22px;
    border-radius: 1.125rem;
    background: #ffffff;
    transition: left 0.25s;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.btn-switch.btn-sm > .handle:before {
    width: 18px;
    height: 18px;
    display: inline-block;
    content: "";
    background-image: url(../img/close-grey.svg);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-switch:disabled .handle:before {
    opacity: 0.5;
}

.btn-switch.btn-sm.active > .handle:before {
    width: 18px;
    height: 18px;
    display: inline-block;
    content: "";
    background-image: url(../img/check-green.svg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-switch.btn-sm.active {
    transition: background-color 0.25s;
}

.btn-switch.btn-sm.active > .handle {
    left: 1.6875rem;
    transition: left 0.25s;
}

.btn-switch.btn-sm.active:before {
    opacity: 0.5;
}

.btn-switch.btn-sm.active:after {
    opacity: 1;
}

.btn-switch.btn-sm.btn-sm:before,
.btn-switch.btn-sm.btn-sm:after {
    line-height: -0.5rem;
    color: #ffffff;
    letter-spacing: 0.75px;
    left: 0.4125rem;
    width: 2.325rem;
}

.btn-switch.btn-sm.btn-sm:before {
    text-align: right;
}

.btn-switch.btn-sm.btn-sm:after {
    text-align: left;
    opacity: 0;
}

.btn-switch.btn-sm.btn-sm.active:before {
    opacity: 0;
}

.btn-switch.btn-sm.btn-sm.active:after {
    opacity: 1;
}

.btn-switch.btn-sm.btn-xs:before,
.btn-switch.btn-sm.btn-xs:after {
    display: none;
}

.btn-switch.btn-xs {
    padding: 0;
    position: relative;
    border: none;
    height: 1rem;
    width: 2rem;
    border-radius: 1rem;
}

.btn-switch.btn-xs:focus,
.btn-switch.btn-xs.focus,
.btn-switch.btn-xs:focus.active,
.btn-switch.btn-xs.focus.active {
    outline: none;
}

.btn-switch.btn-xs:before,
.btn-switch.btn-xs:after {
    line-height: 1rem;
    width: 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}

.btn-switch.btn-xs:before {
    left: 0;
}

.btn-switch.btn-xs:after {
    right: 0;
    opacity: 0.5;
}

.btn-switch.btn-xs > .handle {
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 0.75rem;
    background: #ffffff;
    transition: left 0.25s;
}

.btn-switch.btn-xs.active {
    transition: background-color 0.25s;
}

.btn-switch.btn-xs.active > .handle {
    left: 1.125rem;
    transition: left 0.25s;
}

.btn-switch.btn-xs.active:before {
    opacity: 0.5;
}

.btn-switch.btn-xs.active:after {
    opacity: 1;
}

.btn-switch.btn-xs.btn-sm:before,
.btn-switch.btn-xs.btn-sm:after {
    line-height: -1rem;
    color: #ffffff;
    letter-spacing: 0.75px;
    left: 0.275rem;
    width: 1.55rem;
}

.btn-switch.btn-xs.btn-sm:before {
    text-align: right;
}

.btn-switch.btn-xs.btn-sm:after {
    text-align: left;
    opacity: 0;
}

.btn-switch.btn-xs.btn-sm.active:before {
    opacity: 0;
}

.btn-switch.btn-xs.btn-sm.active:after {
    opacity: 1;
}

.btn-switch.btn-xs.btn-xs:before,
.btn-switch.btn-xs.btn-xs:after {
    display: none;
}

.btn-switch.btn-secondary {
    color: #6b7381;
    background: #bdc1c8;
}

.btn-switch.btn-secondary:before,
.btn-switch.btn-secondary:after {
    color: #6b7381;
}

.btn-switch.btn-secondary.active {
    background-color: #4baf4f;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch input:disabled + .slider {
    opacity: 0.5;
}

.switch input:checked + .slider {
    background-color: #4baf4f;
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px #4baf4f;
}

.switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #9c9c9c;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch .slider.round {
    border-radius: 34px;
}

.switch .slider.round:before {
    border-radius: 50%;
}

.switch.switch-md {
    width: 48px;
    height: 24px;
}

.switch.switch-md input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

.switch.switch-md .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch.switch-sm {
    width: 31px;
    height: 16px;
}

.switch.switch-sm input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

.switch.switch-sm .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 2px;
    bottom: 2px;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch.switch-lg {
    width: 50px;
    height: 24px;
}

.switch.switch-lg input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-image: url(../img/check-green.svg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.switch.switch-lg .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-image: url(../img/close-grey.svg);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
}

.validation-message {
    font: normal normal normal 11px/15px "Open Sans";
    color: #ff0000;
    margin-bottom: 20px;
}

.validation-message:empty {
    display: none;
}


.container-fluid {
    padding: 0px;
}

.main-wrapper {
    width: 100vw;
    height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}


.main-wrapper .image-side {
    width: 50vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.main-wrapper section.main {
    background-color: #fcfcfc;
    width: 50vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: space-between;
}

.main-wrapper section.main > header {
    height: 50px;
    background-color: #ffffff;
    border-bottom: solid 1px #e6e6e6;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding-left: 11px;
    padding-right: 11px;
}

.main-wrapper section.main > header label {
    line-height: 2 !important;
    font: normal normal bold 14px/19px "Open Sans", sans-serif;
    color: var(--secondaryColor);
    margin-right: 15px;
    margin-bottom: 0px;
}

.main-wrapper section.main .main-body {
    height: calc(100vh - 50px - 50px);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-direction: column;
}

.main-wrapper section.main .main-body article {
    width: 400px;
    min-width: 400px;
}

.main-wrapper section.main .main-body article header {
    margin-bottom: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.main-wrapper section.main .main-body article header .brand {
    width: 50%;
}

.main-wrapper section.main .main-body article header .brand picture img {
    max-height: 60px;
    max-width: 220px;
    object-fit: cover;
}

.main-wrapper section.main .main-body article .content-auth {
    padding: 30px 30px 20px 30px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
}

.main-wrapper section.main .main-body article .content-auth h2 {
    font: normal normal bold 20px/27px "Open Sans", sans-serif;
    color: #151b26;
    margin-top: 0;
}

.main-wrapper section.main .main-body article .content-auth p {
    font: normal normal normal 12px/17px "Open Sans", sans-serif;
    color: var(--secondaryColor);
    margin-bottom: 25px;
}

.main-wrapper section.main .main-body article .content-auth .login-options {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.main-wrapper section.main .main-body article .content-auth .login-options .btnbar {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    text-align: right;
}

.main-wrapper section.main .main-body article .content-auth .login-options .btnbar button {
    margin-left: 10px;
}

.main-wrapper section.main .main-body article .content-auth .login-options a.forget-pass,
a {
    font: normal normal 600 10px/14px "Open Sans", sans-serif;
    color: #0c83d9;
    text-decoration: none;
}

.main-wrapper section.main .main-body article .content-auth .login-options a.forget-pass:hover,
a:hover{
    text-decoration: underline;
}

.main-wrapper section.main .main-body article footer {
    margin-top: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 20px 20px 20px 40px;
    font: normal normal normal 13px/18px "Open Sans", sans-serif;
    letter-spacing: 0px;
    color: var(--secondaryColor);
}

.main-wrapper section.main .main-body article footer ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    margin-top: 5px;
}

.main-wrapper section.main .main-body article footer ul li {
    font: normal normal normal 11px/16px "Open Sans", sans-serif;
    color: var(--secondaryColor);
}

.main-wrapper section.main .main-body article footer ul li:before {
    content: "";
    content: "•   ";
    margin-right: -6px;
}

.main-wrapper section.main > footer {
    font: normal normal normal 10px/14px "Open Sans", sans-serif;
    letter-spacing: 0px;
    color: var(--secondaryColor);
    height: 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.dropdown-language a.dropdown-toggle {
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
    color: var(--secondaryColor);
    text-decoration: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.dropdown-language a.dropdown-toggle:after {
    content: "";
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/arrow-down.svg);
    width: 24px;
    height: 24px;
    display: inline-block;
    border: none;
    transition-duration: 0.3s;
}

.dropdown-language a.dropdown-toggle.show:after {
    background-image: url(../img/arrow-up.svg);
}

.dropdown-language ul.dropdown-menu {
    border: solid 1px #e6e6e6;
    padding: 0px;
    box-shadow: 0px 3px 15px #00000029;
}

.dropdown-language ul.dropdown-menu li:last-child a:last-child {
    border-bottom: none;
}

.dropdown-language ul.dropdown-menu li a.dropdown-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 12px 15px;
    border-bottom: solid 1px #e6e6e6;
    font-size: 12px;
}

.dropdown-language ul.dropdown-menu li a.dropdown-item:hover {
    background-color: #f5f5f5;
}

.dropdown-language ul.dropdown-menu li a.dropdown-item img {
    margin-right: 8px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    input + label {
        top: 0 !important;
        position: absolute;
        font-size: 11px !important;
        top: 0 !important;
        transition: none;
        -moz-transition: none;
        -webkit-transition: none;
    }

    input {
        padding-top: 8px !important;
    }
}

input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
    display: none;
}

/*# sourceMappingURL=stylesheet.css.map */


.modallogin .modal-dialog .modal-content {
    box-shadow: 0px 0px 5px #00000080;
    border: none;
}

.modallogin .modal-dialog .modal-content .modal-header {
    border-bottom: none;
    padding: 15px 15px 0px 0px;
    justify-content: flex-end;
}

.btn-close {
    opacity: .4;
    background-color: transparent;
}

.modal-dialog .modal-content .modal-header .btn-close {
    box-sizing: content-box;
    width: 14px;
    height: 14px;
    padding: 0px;
    color: #000;
    background-image: url(../img/close-modal.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    border: 0;
    border-radius: 0.25rem;
    background-color: transparent;
}

.modallogin .modal-dialog .modal-content .modal-body {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 0px;
    display: -webkit-flex;
    display: flex;
    /*-webkit-align-items: center;
align-items: center;*/
}

.modallogin .modal-dialog .modal-content .modal-body.message-success:before {
    content: "";
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/Sucesso.svg);
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-right: 10px;
}

.modallogin .modal-dialog .modal-content .modal-body.message-error:before {
    content: "";
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/error.svg);
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-right: 10px;
}

.modallogin .modal-dialog .modal-content .modal-body .modal-body-content h5 {
    font: normal normal bold 14px/19px "Open Sans";
    color: #151B26;
    margin-bottom: 10px;
}

.modallogin .modal-dialog .modal-content .modal-body .modal-body-content p {
    font: normal normal normal 11px/15px "Open Sans";
    color: var(--secondaryColor);
    margin-bottom: 20px;
}

.modallogin .modal-dialog .modal-content .modal-footer {
    background-color: #F5F5F5;
    padding: 10px 30px;
    border: none;
}

.modallogin .modal-dialog .modal-content .modal-footer button {
    min-width: 65px;
    font-weight: 600;
}

.popover {
    background-color: #1D273A;
    font: normal normal bold 11px/15px "Open Sans";
    color: #FFFFFF;
    border: none;
}

.popover .arrow:after {
    border-left-color: #1D273A;
}

.popover .arrow:before {
    display: none;
}

.popover h3 {
    display: none;
}

.popover .popover-body {
    font: normal normal bold 11px/15px "Open Sans";
    color: #FFFFFF;
}

.popover .popover-body p {
    margin-bottom: 14px;
}

.popover .popover-body ul {
    list-style: inside;
}

.popover .popover-body ul li {
    font: normal normal normal 11px/15px "Open Sans";
    margin-bottom: 7px;
}

/* MATERIAL DESIGN TEXT FIELD ----------------------------------------------
/* CSS Material Design Outlined Text Field
---------------------------------------------------------------------------- */
.outlined-input-field .mdc-text-field {
    position: relative;
}

.outlined-input-field .mdc-text-field label {
    position: absolute;
    font-size: 1rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    color: #9c9c9c;
    padding: 0 0.3rem;
    margin: 0 0.5rem;
    transform-origin: left top;
    pointer-events: none;
    font: normal normal normal 13px/18px "Open Sans", sans-serif;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.outlined-input-field .mdc-text-field .toggle-password {
    position: absolute;
    right: 0;
    margin-right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.outlined-input-field .mdc-text-field .toggle-password.eye-show {
    background-image: url(../img/ShowPassword.svg);
}

.outlined-input-field .mdc-text-field .toggle-password.eye-slash {
    background-image: url(../img/HidePassword.svg);
}

.outlined-input-field .mdc-text-field input {
    border: 1px solid #c5c5c5;
    outline: none;
    border-radius: 2px;
    background-color: #ffffff;
    height: 48px;
    padding: 1rem 0.7rem;
    color: var(--secondaryColor);
    transition: 0.1s ease-out;
    font: normal normal 600 14px/23px "Open Sans", sans-serif;
    width: 100%;
}

.outlined-input-field .mdc-text-field input.input-form:hover {
    border-color: #4e4076;
}

.outlined-input-field .mdc-text-field input.input-form:active {
    border-color: #4e4076;
    border-width: 2px;
    border-radius: 2px;
}

.outlined-input-field .mdc-text-field input.input-form:focus {
    border-color: #4e4076;
    border-width: 2px;
    border-radius: 2px;
}

.outlined-input-field .mdc-text-field input.input-form:focus + label,
.outlined-input-field .mdc-text-field label.active
{
    color: var(--secondaryColor);
    font: normal normal 600 10px/17px "Open Sans", sans-serif;
    top: 0;
    transform: translateY(-50%);
}

.outlined-input-field .mdc-text-field input.input-form:disabled + label {
    background-color: transparent;
}

.outlined-input-field .mdc-text-field input.input-form:not(:placeholder-shown) + label,
.outlined-input-field .mdc-text-field input.input-form:-webkit-autofill + label {
    top: 0;
    font: normal normal 600 10px/17px "Open Sans", sans-serif;
    transform: translateY(-50%);
    background-color: #ffffff;
}

.outlined-input-field .mdc-text-field input.input-form:disabled,
.outlined-input-field .mdc-text-field input.input-form[readonly] {
    color: #9c9c9c;
    border: 1px solid #c5c5c5;
    background-color: #e6e6e6;
}

.outlined-input-field .helper-text {
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
    color: #9c9c9c;
    margin-top: 10px;
}

.outlined-input-field.error-input-field {
    border-color: #ff0000!important;
}

.outlined-input-field.error-input-field .outlined-text-field input {
    /*color: $error;*/
}

.outlined-input-field.error-input-field .outlined-text-field input.input-form {
    border-color: #ff0000!important;
}

.outlined-input-field.error-input-field .outlined-text-field input.input-form:hover {
    border-color: #ff0000!important;
}

.outlined-input-field.error-input-field .outlined-text-field input.input-form:focus {
    border-color: #ff0000!important;
}

.outlined-input-field.error-input-field .outlined-text-field input.input-form:focus + label {
    color: #ff0000!important;
}

.outlined-input-field.error-input-field .outlined-text-field label {
    color: #ff0000!important;
}

.outlined-input-field.error-input-field .helper-text {
    color: #ff0000!important;
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
}

.outlined-input-field.warning-input-field {
    border-color: #fdba01;
}

.outlined-input-field.warning-input-field .outlined-text-field input {
    border-color: #fdba01;
}

.outlined-input-field.warning-input-field .outlined-text-field input:focus {
    border-color: #fdba01;
}

.outlined-input-field.warning-input-field .outlined-text-field input:focus + label {
    color: #fdba01;
}

.outlined-input-field.warning-input-field .outlined-text-field label {
    color: #fdba01;
}

.outlined-input-field.warning-input-field .helper-text {
    color: #fdba01;
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
}

.input-field-error-message {
    color: #ff0000;
    font: normal normal normal 11px/15px "Open Sans", sans-serif;
}


.langdropdown a::before {
    content: '';
    width: 16px;
    height: 16px;
    background-size: cover;
    margin-right: 8px;
}

.lang-pt-br::before {
    background-image: url(../img/ico16x16_pt_br.svg);
}

.lang-pt-pt::before {
    background-image: url(../img/ico16x16_pt_pt.svg);
}

.lang-de::before {
    background-image: url(../img/ico16x16_de.svg);
}

.lang-dk::before {
    background-image: url(../img/ico16x16_dk.svg);
}

.lang-en::before {
    background-image: url(../img/ico16x16_en.svg);
}

.lang-es::before {
    background-image: url(../img/ico16x16_es.svg);
}

.lang-fr::before {
    background-image: url(../img/ico16x16_fr.svg);
}

.lang-it::before {
    background-image: url(../img/ico16x16_it.svg);
}

.lang-pt::before {
    background-image: url(../img/ico16x16_pt.svg);
}

.lang-usa::before {
    background-image: url(../img/ico16x16_usa.svg);
}

.login-options .dropdown-language {
    display: none;
}

.content-auth h2,
.content-auth p {
    text-align: left;
}


@media only screen and (max-width: 991px) {
    .main-wrapper section.main .main-body {
        height: calc(100vh - 60px);
    }

    .main-wrapper section.main .main-body article {
        width: calc(100% - 30px);
        max-width: 500px;
    }

    .image-side {
        display: none !important;
    }

    .brand {
        margin: auto;
        text-align: center;
    }

    .main-wrapper section.main {
        width: 100%;
    }

    .main-wrapper section.main {
        background: #fff;
    }

    .main-body .content-auth {
        border: 0 !important;
    }

    .content-auth h2,
    .content-auth p {
        text-align: center;
    }

    .login-options *:not(button) {
        font-size: 13px!important;
    }

    .login-options .btnbar,
    .login-options .btnbar button {
        width: 100%;
        display: block;
        margin-left: 0 !important;
    }

    .login-options .btnbar button {
        margin-bottom: 10px;
    }

    .login-options .dropdown-language {
        display: inline-flex;
    }


    .content-auth h2 {
        font-size: 24px!important;
    }

    .content-auth p {
        font-size: 16px!important;
        padding: 0 10px;
    }

    #footer {
        display: block;
        text-align: center;
    }

    #footer p {
        color: #9C9C9C;
    }

    #footer a {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .login-options .btnbar > * {
        display: inline-block;
        font-size: 16px!important;
        height: 48px;
        line-height: 35px;
    }

    .login-options.multiple .btnbar > * {
        width: 50%;
        margin-bottom: 0 !important;
    }

    .login-options.multiple .btnbar > *:not(:last-child) {
        margin-right: 20px;
    }

    .modal-dialog {
        margin: 0 40px;
        max-width: 100%;
    }

    #securityWarningModal .modal-dialog {
        margin: 0;
    }

    .modal-footer {
        justify-content: center;
        background-color: #fff!important;
        padding: 30px!important;
    }

    .modal-footer form {
        width: 100%;
    }

    .modal-footer > button,
    .modal-footer form button {
        height: 36px;
        font-size: 14px;
        display: block;
        width: 100%;
    }

    .modallogin .modal-body {
        padding: 0 30px!important;
    }

    .modal-body-content {
        margin-top: 60px;
        text-align: center;
        width: 100%;
    }

    .modal-body-content p {
        font-size: 14px;
    }

    .modal-body::before {
        position: absolute;
        left: 50%;
        margin-left: -18px;
        margin-right: 0!important;
    }

    .modal-body-content p {
        margin-bottom: 0!important;
        font-size: 12px!important;
    }

    .popover {
        display: none;
    }

    .password-rules,
    .password-rules p{
        color: #9C9C9C !important;
        font-size: 11px !important;
        text-align: left !important;
        
    }

    .password-rules p {
        padding-left: 0!important;
    }

    .password-rules p,
    .password-rules li {
        margin-bottom: 5px !important;
    }
    
    .password-rules ul {
        list-style: disc!important;
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .main-wrapper section.main .main-body article .content-auth p {
        margin-bottom: 30px;
    }
}

#securityWarningModal .modal-header {
    background-color: #F5F5F5;
    text-align: center;
    position: relative;
}

#securityWarningModal .modal-header h5 {
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: 17px;
}

#securityWarningModal .btn-close {
    /*opacity: .4;*/
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    /*transform: scale(1.2);*/
    box-sizing: content-box;
    width: 14px;
    height: 14px;
    padding: 0px;
    color: #000;
    background-image: url(../img/close-modal.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    border: 0;
    border-radius: 0.25rem;
}

#securityWarningModal ul {
    list-style: disc !important;
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 30px;
}

#securityWarningModal ul li {
    margin: 5px 0;
}

#securityWarningModal .modal-dialog {
    margin: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    border: 0;
    max-width: 100%!important;
}

#securityWarningModal .modal-content {
    border: 0 !important;
}



/* AI Chat Balloon Styles */
.ai-chat-balloon {
    color: var(--text, #273240);
    background-color: white;
    border-radius: 10px;
    width: 105px;
    font-size: 10px;
    text-align: left;
    font-weight: 600;
    position: fixed;
    right: 88px;
    padding: 10px;
    padding-right: 15px;
    bottom: 26px;
    font-family: "Open Sans", sans-serif;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 1000;
}
.ai-chat-balloon .ai-chat-close {
    position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: var(--text, #273240);
    opacity: 0.5;
    font-weight: bold;
}
.ai-chat-balloon .ai-chat-close:hover {
    opacity: 0.8;
}