/**
 * Theme for Portal
 */
:root {}

/**
 * Components
 */
 
/* Form Control */
body.portal .form-control:focus {
    border-color: #95c49c;
    box-shadow: 0 0 0 0.2rem rgba(235, 162, 174, 0.5);
}

body.portal .form-group.has-error label {
    color: #a94442;
}

body.portal .form-group.has-error .form-control,
body.portal .form-group.has-error .input-group-addon {
    border-color: #a94442;
    color: #a94442;
}

body.portal .form-group.has-error .form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(238, 164, 163, .25);
}

body.portal .form-group.has-error .form-control::placeholder {
    color: #a94442;
}

/* Buttons */
body.portal .btn-primary {
    color: #fff;
    background-color: #c9e3cd;
    border-color: #c9e3cd;
}

body.portal .btn-primary:hover {
    color: #fff;
    background-color: #add0b2;
    border-color: #add0b2;
}

body.portal .btn-primary:focus,
body.portal .btn-primary.focus {
    color: #fff;
    background-color: #add0b2;
    border-color: #add0b2;
    box-shadow: 0 0 0 0.2rem rgba(173, 208, 178, 0.5) !important;
}

body.portal .btn-primary.disabled,
body.portal .btn-primary:disabled {
    color: #fff;
    background-color: #c9e3cd;
    border-color: #c9e3cd;
}

body.portal .btn-primary:not(:disabled):not(.disabled):active,
body.portal .btn-primary:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #95c49c;
    border-color: #83b78a;
}

/**
 * Pages
 */

/* Login Page */
body.portal.login-page.bg-gradient-primary {
    background-color: #c9e3cd !important;
    background-image: linear-gradient(180deg, #c9e3cd 10%, #b2d4b7 100%) !important;
    background-size: cover !important;
}

body.site .login-panel {
    max-width: 500px;
}

body.site .login-image-logo {
    max-width: 80%;
}

body.site form.user .btn-user,
body.site form.user .form-control-user {
    font-size: 0.9rem;
}

/**********************
 ***** Portal APP *****
 **********************/
body.portal-app {
    overflow: hidden;
}

body.portal-app,
body.portal-app *,
body.portal-app *::before,
body.portal-app *::after {
    box-sizing: border-box;
    font-family: "Assistant", serif !important;
}

body.portal-app .fa, 
body.portal-app .far, 
body.portal-app .fas,
body.portal-app .fa::before, 
body.portal-app .far::before, 
body.portal-app .fas::before,
body.portal-app .fa::after, 
body.portal-app .far::after, 
body.portal-app .fas::after {
    font-family: "Font Awesome 5 Free" !important;
}

body.portal-app {
    margin: 0;
    padding: 0;
    background-color: #f8f1e7;
    min-height: 100vh;
}

body.portal-app .app-pages {
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.2s linear;
}

body.portal-app .app-pages.remove-transition {
    transition: unset !important;
}

body.portal-app .app-pages > * {
    padding: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

body.portal-app .app-pages > * > .header {
    display: flex;
    flex-direction: row;
    gap: 30px;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    justify-content: start;
    background-color: #f8f1e7;
}

body.portal-app .app-pages > * > .header > .left,
body.portal-app .app-pages > * > .header > .right {
    align-self: self-start;
}

body.portal-app .app-pages > * > .header > .left {
    width: 50px;
}

body.portal-app .app-pages > * > .header > .right {
    flex: 1 0 0%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

body.portal-app .app-pages > * > .header > .right .toolbar {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

body.portal-app .app-pages > * > .header > .right > .page-title {
    width: 100%;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    left: -40px;
    display: block;
    position: relative;
    cursor: default;
}

body.portal-app .app-pages > * > .header > .right .app-btn {
    width: auto;
    min-width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 20px;
    height: auto;
    font-size: 18px;
}

body.portal-app .app-pages > * > .page-content {
    overflow: auto;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    bottom: 20px;
    z-index: 1;
}

@media (max-width: 575px) {
    body.portal-app .app-pages > *:not(#main) > .header {
        gap: 10px;
    }

    body.portal-app .app-pages > *:not(#main) > .header > .right {
        flex-direction: column;
    }
}

/* Loading */
body.portal-app .loading {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    justify-content: center;
    align-items: center
}

body.portal-app .loading.show {
    display: flex;
}

body.portal-app .loading .loading-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999997;
    background-color: #fff;
    opacity: 0.4;
}

body.portal-app .loading .pl {
	display: block;
	width: 4.25em;
	height: 4.25em;
    position: relative;
    z-index: 999998;
}

body.portal-app .loading .pl__ring, 
body.portal-app .loading .pl__ball {
	animation: ring 2s ease-out infinite;
}

body.portal-app .loading .pl__ball {
	animation-name: ball;
}

@keyframes ring {
	from {
		stroke-dasharray: 0 257 0 0 1 0 0 258;
	}
	25% {
		stroke-dasharray: 0 0 0 0 257 0 258 0;
	}
	50%, to {
		stroke-dasharray: 0 0 0 0 0 515 0 0;
	}
}

@keyframes ball {
	from, 50% {
		animation-timing-function: ease-in;
		stroke-dashoffset: 1;
	}
	64% {
		animation-timing-function: ease-in;
		stroke-dashoffset: -109;
	}
	78% {
		animation-timing-function: ease-in;
		stroke-dashoffset: -145;
	}
	92% {
		animation-timing-function: ease-in;
		stroke-dashoffset: -157;
	}
	57%, 71%, 85%, 99%, to {
		animation-timing-function: ease-out;
		stroke-dashoffset: -163;
	}
}

/* Message */
.message {
    margin-top: 5px;
    width: 100%;
    display: none;
    font-size: 15px;
    cursor: default;
}

.message-error {
    color: #a94442;
}

.message-success {
    color: #259352;
}

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

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

/**
 * Components
 */
body.portal-app button,
body.portal-app a {
    outline: 0;
}

body.portal-app .app-btn {
    padding: 6px 30px;
    font-size: 20px;
    font-weight: 600;
    background-color: #c9e3cd;
    border: 1px solid #c9e3cd;
    border-radius: 10px;
    min-width: 200px;
    color: #fff;
    border-radius: 30px;
    -webkit-transition: all .1s linear;
    -ms-transition: all .1s linear;
    transition: all .1s linear;
}

body.portal-app .app-btn:hover,
body.portal-app .app-btn:active,
body.portal-app .app-btn.active {
    background-color: #add0b2;
    border-color: #95c49c;
}

body.portal-app .app-btn-back-page {
    border: none;
    background: none;
    font-size: 1.5rem;
    padding: 0 12px;
}

/* Header */
body.portal-app .header > .left > .app-btn-back-page {
    margin-left: -12px;
}

/* Form */
body.portal-app .form.form-page {
    display: none;
}

body.portal-app .form.form-page:first-child {
    display: block;
}

body.portal-app .form {
    padding: 50px 20px 0 20px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

body.portal-app .form .form-title {
    font-size: 24px;
    font-weight: 600;
    cursor: default;
}

body.portal-app .form .form-subtitle {
    font-size: 20px;
    font-weight: normal;
    cursor: default;
}

body.portal-app .form > .form-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 20px;
}

body.portal-app .form > .form-fields .form-field {
    border: 1px solid #dadada;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: start;
    align-items: start;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-top: 15px;
}

body.portal-app .form > .form-fields .form-field:first-child {
    margin-top: 0;
}

body.portal-app .form > .form-fields .form-field > * {
    width: 100%;
}

body.portal-app .form > .form-fields .form-field:focus-within {
    border-color: #95c49c;
    box-shadow: 0 0 0 0.2rem rgba(173, 208, 178, 0.5);
}

body.portal-app .form > .form-fields .form-field > label {
    margin: 0;
    padding: 6px 20px 0 20px;
    color: #5b5b5d;
    cursor: text;
}

body.portal-app .form > .form-fields .form-field > input[type="text"]::placeholder,
body.portal-app .form > .form-fields .form-field > input[type="phone"]::placeholder,
body.portal-app .form > .form-fields .form-field > textarea::placeholder {
    color: #5b5b5d;
    cursor: text;
    font-size: 1rem;
}

body.portal-app .form > .form-fields .form-field > input[type="text"].no-opacity-placeholder::placeholder,
body.portal-app .form > .form-fields .form-field > input[type="phone"].no-opacity-placeholder::placeholder,
body.portal-app .form > .form-fields .form-field > textarea.no-opacity-placeholder::placeholder{
    opacity: unset;
}

body.portal-app .form > .form-fields .form-field > input[type="text"],
body.portal-app .form > .form-fields .form-field > input[type="phone"],
body.portal-app .form > .form-fields .form-field > select,
body.portal-app .form > .form-fields .form-field > textarea {
    border: none;
    padding: 0 20px 6px 20px;
    font-size: 20px;
    background-color: transparent;
}

body.portal-app .form > .form-fields .form-field > input[type="text"]:focus,
body.portal-app .form > .form-fields .form-field > input[type="phone"]:focus,
body.portal-app .form > .form-fields .form-field > select:focus,
body.portal-app .form > .form-fields .form-field > textarea:focus {
    border: none;
    outline: none;
}

body.portal-app .form > .form-fields .form-field .required-field {
    font-size: 16px;
    line-height: normal;
    color: #a94442;
    cursor: default;
}

body.portal-app .form > .form-fields .custom-switch-two-options{
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 0;
}

body.portal-app .form > .form-fields > .custom-switch-two-options{
    padding-top: 0;
    font-size: 20px;
    align-items: center;
    font-weight: 400;
    justify-content: center;
}

body.portal-app .form > .form-fields .custom-switch-two-options * {
    cursor: pointer;
}

body.portal-app .form > .form-fields .custom-switch-two-options > label {
    margin: 0;
}

body.portal-app .form > .form-fields .custom-switch-two-options > *:first-child {
    padding-right: 9px;
}

body.portal-app .form > .form-fields .custom-switch-two-options > *:last-child {
    padding-left: 4px;
}

body.portal-app .form > .form-fields > .custom-switch-two-options > .custom-switch {
    padding-top: 9px;
}

body.portal-app .form > .form-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 25px;
}

body.portal-app .form > .form-buttons.vertical-buttons {
    flex-direction: column;
}

body.portal-app .form > .form-buttons.center-buttons {
    justify-content: center;
}

body.portal-app .form > .form-buttons.vertical-buttons.center-buttons {
    align-items: center;
}

body.portal-app .form > .form-buttons > * {
    width: auto;
}

body.portal-app .form > .form-buttons.vertical-buttons > * {
    width: 100%;
    max-width: 300px;
}

body.portal-app .form > .form-buttons > .back-button {
    background-color: #fbddb6;
    border: none;
    color: #212529;
    width: auto;
    min-width: unset;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
}

body.portal-app .form > .form-fields .form-field-group {
    border: 1px solid #dadada;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: start;
    align-items: start;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

body.portal-app .form > .form-fields .form-field-group:focus-within {
    border-color: #95c49c;
    box-shadow: 0 0 0 0.2rem rgba(235, 162, 174, 0.5);
}

body.portal-app .form > .form-fields .form-field-group > .form-field {
    border: none;
    border-radius: unset;
}

body.portal-app .form > .form-fields .form-field-group > .form-field:focus-within {
    border-color: unset;
    box-shadow: unset;
}

body.portal-app .form > .form-fields .form-field-group.vertical {
    flex-direction: row;
    gap: 1px;
}

body.portal-app .form > .form-fields .form-field-group.vertical > .form-field {
    width: 33.3333%;
    margin-top: 0;
}

/* Panel */
body.portal-app .box-panel {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 10px 15px -8px rgba(0,0,0,.25);
    max-width: 1024px;
    margin: 0 auto;
}

body.portal-app .box-panel .form {
    padding: 0;
    max-width: none;
    width: 100%;
}

body.portal-app .box-panel .form .form-title {
    font-size: 22px;
}

body.portal-app .box-panel .form > .form-fields .form-field > input[type="text"], 
body.portal-app .box-panel .form > .form-fields .form-field > input[type="phone"], 
body.portal-app .box-panel .form > .form-fields .form-field > select, 
body.portal-app .box-panel .form > .form-fields .form-field > textarea {
    padding: 6px 14px;
}

body.portal-app .box-panel > .row-separator {
    margin-top: 18px;
}

body.portal-app .box-panel > .row-separator:first-child {
    margin-top: 0;
}

body.portal-app .box-panel .row-separator.column-3,
body.portal-app .box-panel .row-separator.column-2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

body.portal-app .box-panel .row-separator.column-3 > * {
    max-width: 33.3333%;
    width: 100%;
}

body.portal-app .box-panel .row-separator.column-2 > * {
    max-width: 50%;
    width: 100%;
}

@media (max-width: 768px) {
    body.portal-app .box-panel .row-separator.column-3,
    body.portal-app .box-panel .row-separator.column-2 {
        flex-direction: column;
    }

    body.portal-app .box-panel .row-separator.column-3 > *,
    body.portal-app .box-panel .row-separator.column-2 > * {
        max-width: none;
    }
}

@media (max-width: 575px) {
    body.portal-app .form > .form-fields .form-field-group.vertical {
        flex-direction: column;
    }

    body.portal-app .form > .form-fields .form-field-group.vertical > .form-field {
        width: 100% !important;
    }
}

/**
 * Main Page
 */
body.portal-app div#main {
    background-color: transparent;
}

/* Hamburger */

.nav-but-wrap {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease-out;
}

.nav-but-wrap .menu-icon {
    height: auto;
    width: 50px;
    position: relative;
    z-index: 9;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 13px 10px;
}

.nav-but-wrap .menu-icon > * {
    display: flex;
    cursor: pointer;
}

.nav-but-wrap .menu-icon > .menu-icon__line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: #1f2029;
    -webkit-transition: background-color .3s ease, -webkit-transform .1s ease;
    transition: background-color .3s ease, -webkit-transform .1s ease;
    transition: transform .1s ease, background-color .3s ease;
    transition: transform .1s ease, background-color .3s ease, -webkit-transform .1s ease;
}

.nav-but-wrap .menu-icon > .menu-icon__line-left {
    width: 16.5px;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
}

.nav-but-wrap .menu-icon > .menu-icon__line-right {
    width: 16.5px;
    align-self: self-end;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}

.nav-but-wrap .menu-icon:hover > .menu-icon__line-left,
.nav-but-wrap .menu-icon:hover > .menu-icon__line-right {
    width: 30px;
}

/* Hamburger Content */

.nav {
    position: absolute;
    z-index: 3;
    width: 250px;
    height: min-content;
}

.nav:before,
.nav:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: rgba(20, 21, 26, 0.6);
    border-bottom-right-radius: 200%;
    z-index: -1;
    transition: border-radius linear 0.6s, width cubic-bezier(0.77, 0, 0.175, 1) 0.4s, height cubic-bezier(0.77, 0, 0.175, 1) 0.4s;
}

.nav:after {
    background-color: rgba(9, 9, 12, 1);
    background-image: url(/img/portal/hamburguer_background.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 300%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
}

.nav:before {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.nav__content {
    visibility: hidden;
    width: 100%;
    height: min-content;
    text-align: left;
    padding-top: 45px;
    padding-bottom: 20px;
}

.nav__content > .nav__list {
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.nav__content > .nav__list > .nav__list-item {
    position: relative;
    display: block;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
    opacity: 0;
    text-align: left;
    color: #fff;
    overflow: hidden;
    font-size: 22px;
    line-height: 1.2;
    -webkit-transform: translate(30px, 0%);
    transform: translate(30px, 0%);
    -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
    transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, transform .2s ease;
    transition: opacity .2s ease, transform .2s ease, -webkit-transform .2s ease;
    margin-top: 7px;
    margin-bottom: 7px;
}

.nav__content > .nav__list > .nav__list-item a {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    cursor: pointer;
    font-weight: 600;
    z-index: 2;
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    width: 100%;
    outline: 0;
}

.nav__content > .nav__list > .nav__list-item a:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 5px;
    height: 0;
    opacity: 0;
    background-color: #8167a9;
    z-index: 1;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
}

.nav__content > .nav__list > .nav__list-item a:hover:after {
    height: 100%;
    opacity: 1;
    top: 0;
}

.nav__content > .nav__list > .nav__list-item a:hover {
    color: rgba(255, 255, 255, 1);
}

.nav__content > .nav__list > .nav__list-item.active-nav a {
    color: rgba(255, 255, 255, 1);
}

.nav__content > .nav__list > .nav__list-item.active-nav a:after {
    height: 100%;
    opacity: 1;
    top: 0;
}

/* Active Hamburger */

body.nav-active .nav__content {
    visibility: visible;
}

body.nav-active .nav-but-wrap .menu-icon > .menu-icon__line {
    background-color: #fff;
    -webkit-transform: translate(0px, 0px) rotate(-45deg);
    transform: translate(0px, 0px) rotate(-45deg);
}

body.nav-active .nav-but-wrap .menu-icon > .menu-icon__line-left {
    width: 15px;
    -webkit-transform: translate(2px, 4px) rotate(45deg);
    transform: translate(2px, 4px) rotate(45deg);
}

body.nav-active .nav-but-wrap .menu-icon > .menu-icon__line-right {
    width: 15px;
    float: right;
    -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
    transform: translate(-3px, -3.5px) rotate(45deg);
}

body.nav-active .nav-but-wrap > .menu-icon:hover .menu-icon__line-left,
body.nav-active .nav-but-wrap > .menu-icon:hover .menu-icon__line-right {
    width: 15px;
}

body.nav-active .nav {
    visibility: visible;
}

body.nav-active .nav:before,
body.nav-active .nav:after {
    width: 250px;
    height: 100%;
    border-radius: 15px;
}

body.nav-active .nav:after {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

body.nav-active .nav:before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, transform .3s ease, color .3s ease;
    transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(0) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(1) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(2) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(3) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(4) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(5) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(6) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(7) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(8) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(9) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

body.nav-active .nav__content > .nav__list > .nav__list-item:nth-child(10) {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

/* Hamburger - Light */

body.hamburger-light .nav:before {
    background-color: rgba(235, 235, 235, 0.4);
}

body.hamburger-light .nav:after {
    background-color: rgb(246, 239, 249);
    box-shadow: 6px 6px 22px rgba(42, 31, 63, 0.1);
}

body.hamburger-light .nav__content > .nav__list > .nav__list-item a {
    color: rgba(0, 0, 0, 0.6);
}

body.hamburger-light .nav__content > .nav__list > .nav__list-item a:hover {
    color: #1f2029;
}

body.hamburger-light .nav__content > .nav__list > .nav__list-item.active-nav a {
    color: #1f2029;
}

body.nav-active.hamburger-light .nav-but-wrap .menu-icon > .menu-icon__line {
    background-color: #1f2029;
}

/* Header Profile */

body.portal-app div#main .header .profile-name {
    cursor: default;
    font-size: 20px;
}

body.portal-app div#main .header .profile-icon {
    color: #c9e3cd;
    padding: 6px 10px 6px 0;
    cursor: pointer;
}

/* Page Content */

body.portal-app div#main .page-content > .top {
    text-align: center;
}

body.portal-app div#main .page-content > .top .logo > img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

body.portal-app div#main .page-content > .content {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/**
 * New Client
 */
body.portal-app div#new-client .page-content .kbw-signature-container {
    position: relative;
    z-index: 1;
}

body.portal-app div#new-client .page-content .kbw-signature-container .signature-clean-button {
    padding: 0px 9px 0 9px;
    width: auto;
    min-width: auto;
    position: absolute;
    top: 6px;
    right: 4px;
    background: none;
    color: gray;
    border: none;
    cursor: pointer;
}

body.portal-app div#new-client .page-content .kbw-signature-container .signature-clean-button:hover {
    color: #555;
}

body.portal-app div#new-client .page-content .kbw-signature-container .signature-clean-button .fas {
    font-size: 22px;
}

/**
 * Add Procedure
 */
body.portal-app div#add-procedure .header .page-title {
    left: 0;
} 

body.portal-app div#add-procedure .page-content .eyelashes-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1024px;
    margin: 24px auto 0 auto;
}

body.portal-app div#add-procedure .page-content .eyelashes-list > * {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

body.portal-app div#add-procedure .page-content .eyelashes-list .eyelash-image {
    width: 100%;
    max-width: 400px;
    position: relative;
}

body.portal-app div#add-procedure .page-content .eyelashes-list .eyelash-image > img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

body.portal-app div#add-procedure .page-content .eyelashes-list .eyelash-image > .data {
    position: absolute;
    z-index: 2;
    top: 40%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
}

body.portal-app div#add-procedure .page-content .eyelashes-list .eyelash-image > .data > * {
    font-size: 20px;
    text-align: center;
    padding: 6px 0;
    width: 11.1111%;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #cacaca;
    -webkit-transition: all .1s linear;
    -ms-transition: all .1s linear;
    transition: all .1s linear;
    position: relative;
    z-index: 1;
}

body.portal-app div#add-procedure .page-content .eyelashes-list .eyelash-image > .data > *:hover {
    outline: none;
}

body.portal-app div#add-procedure .page-content .eyelashes-list .eyelash-image > .data > *:focus {
    border-color: #95c49c;
    box-shadow: 0 0 0 0.2rem rgba(235, 162, 174, 0.5) !important;
    z-index: 2;
}

body.portal-app div#add-procedure .page-content .eyelashes-list .eyelash-title {
    font-weight: 600;
    cursor: default;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
}

body.portal-app div#add-procedure .page-content .eyelashes-photos {
    margin: 24px 0;
    text-align: center;
}

@media (max-width: 768px) {
    body.portal-app div#add-procedure .page-content .eyelashes-list {
        flex-direction: column;
    }

    body.portal-app div#add-procedure .page-content .eyelashes-list > * {
        width: 100%;
    }
}

body.portal-app div#add-procedure .page-content .other-styles {
    margin-top: 24px;
    margin-bottom: 16px;
}

/**
 * Search Client
 */
body.portal-app div#search-client .page-content .search-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

body.portal-app div#search-client .page-content .search-filters .search-filter-input-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
}

body.portal-app div#search-client .page-content .search-filters .search-filter-input-container .search-filter-input {
    padding: 10px 45px 10px 45px;
    font-size: 18px;
    font-weight: normal;
    width: 100%;
    border-radius: 26px;
    border: none;
    line-height: normal;
    box-shadow: 0px 10px 15px -13px rgba(0,0,0,.25);
    position: relative;
    z-index: 2;
}

body.portal-app div#search-client .page-content .search-filters .search-filter-input-container .search-filter-input:hover {
    border: none;
    outline: none;
}

body.portal-app div#search-client .page-content .search-filters .search-filter-input-container .search-icon {
    position: absolute;
    z-index: 3;
    top: 50%;
    margin-top: -9px;
    left: 18px;
    font-size: 18px;
    color: #a4a4a4;
}

body.portal-app div#search-client .page-content .search-filters .search-filter-input-container .loading-icon {
    display: none;
    position: absolute;
    z-index: 3;
    top: 50%;
    margin-top: -9px;
    right: 18px;
    font-size: 18px;
    color: #6a6a6a;
}

body.portal-app div#search-client .page-content .search-filters .search-filter-client-status {
    display: flex;
    flex-direction: row;
    gap: 5px;
    cursor: default;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 14px;
}

body.portal-app div#search-client .page-content .search-filters .search-filter-client-status > span {
    cursor: pointer;
    padding: 5px 8px;
    font-size: 17px;
}

body.portal-app div#search-client .page-content .search-filters .search-filter-client-status > span > .counter {
    cursor: pointer;
    font-weight: 600;
}

body.portal-app div#search-client .page-content .search-filters .search-filter-client-status > span.active,
body.portal-app div#search-client .page-content .search-filters .search-filter-client-status > span.active > .counter {
    font-weight: bold;
}

body.portal-app div#search-client .page-content .client-list {
    width: 100%;
    height: auto;
    margin-top: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

body.portal-app div#search-client .page-content .client-list > .client-item {
    width: 100%;
    max-width: 400px;
    padding: 16px 16px 65px 16px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 10px 15px -8px rgba(0,0,0,.25);
    height: min-content;
    min-height: 160px;
    position: relative;
}

body.portal-app div#search-client .page-content .client-list > .client-item > .name {
    font-size: 17px;
    font-weight: 600;
}

body.portal-app div#search-client .page-content .client-list > .client-item > .phone {
    margin-top: 10px;
}

body.portal-app div#search-client .page-content .client-list > .client-item > .email {
    margin-top: 2px;
}

body.portal-app div#search-client .page-content .client-list > .client-item .type {
    padding: 3px 8px;
    font-size: 13px;
    color: #fff;
    background-color: #943451;
    border-radius: 24px;
    cursor: default;
}

body.portal-app div#search-client .page-content .client-list > .client-item > .actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: left;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    align-items: flex-end;
}

body.portal-app div#search-client .page-content .client-list > .client-item > .actions > .right {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: right;
    flex: 1 0 0%;
}

body.portal-app div#search-client .page-content .client-list > .client-item > .actions > .right > * {
    padding: 2px 18px;
    height: auto;
    font-size: 18px;
    text-decoration: none;
    line-height: normal;
    text-align: center;
    min-width: 58px;
    border-radius: 7px;
    border: none;
}

/**
 * View Client
 */
body.portal-app div#view-client .header .page-title {
    left: 0;
}

body.portal-app div#view-client .page-content .tab-options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

body.portal-app div#view-client .page-content .tab-options > * {
    cursor: pointer;
}

body.portal-app div#view-client .page-content .tab-containers {
    width: 100%;
    height: auto;
    margin-top: 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

body.portal-app div#view-client .page-content .tab-containers > * {
    width: 100%;
    display: none;
}

body.portal-app div#view-client .page-content .tab-containers > *.active {
    display: block;
}

body.portal-app div#view-client .page-content .tab-containers .form-fields {
    gap: 20px;
    padding-top: 0;
}

body.portal-app div#view-client .add-procedure-button {
    display: none;
    padding-left: 6px;
    padding-right: 6px;
}

body.portal-app div#view-client .page-content .procedures-list {
    width: 100%;
    height: auto;
    margin-top: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

body.portal-app div#view-client .page-content .procedures-list > .client-procedure-item {
    width: 100%;
    max-width: 400px;
    padding: 16px 16px 65px 16px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 10px 15px -8px rgba(0,0,0,.25);
    height: min-content;
    min-height: 160px;
    position: relative;
}

body.portal-app div#view-client .page-content .procedures-list > .client-procedure-item > * > b {
    min-width: 85px;
    display: inline-block;
}

body.portal-app div#view-client .page-content .procedures-list > .client-procedure-item > .title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

body.portal-app div#view-client .page-content .procedures-list > .client-procedure-item > .responsible {
    margin-top: 10px;
}

body.portal-app div#view-client .page-content .procedures-list > .client-procedure-item > .date,
body.portal-app div#view-client .page-content .procedures-list > .client-procedure-item > .weeks {
    margin-top: 5px;
}

body.portal-app div#view-client .page-content .procedures-list > .client-procedure-item > .type {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 3px 8px;
    font-size: 13px;
    color: #fff;
    background-color: #c5004e;
    border-radius: 24px;
    cursor: default;
    display: none;
}

body.portal-app div#view-client .page-content .procedures-list > .client-procedure-item > .actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: right;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

body.portal-app div#view-client .page-content .procedures-list > .client-procedure-item > .actions > * {
    padding: 2px 18px;
    height: auto;
    font-size: 18px;
    text-decoration: none;
    line-height: normal;
    text-align: center;
    min-width: 58px;
    border-radius: 7px;
    border: none;
}

body.portal-app div#view-client .page-content .signature {
	width: 100%;
	border: 1px solid #cacaca;
	background: #fff;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    padding: 10px;
    min-height: 100px;
}

body.portal-app div#view-client .page-content .signature > img {
    width: 100%;
    max-width: 420px;
    height: auto;
}

@media (max-width: 500px) {
    body.portal-app div#view-client .page-content .tab-options {
        gap: 2px;
    }
    
    body.portal-app div#view-client .page-content .tab-options > * {
        width: 100%;
        border-radius: 9px;
        padding: 5px 24px;
    }
}

/**
 * Photos Procedure
 */
body.portal-app div#photos-procedure .header .toolbar {
    display: flex;
}

body.portal-app div#photos-procedure .header .toolbar .open-camera {
    padding-left: 6px;
    padding-right: 6px;
}

body.portal-app div#photos-procedure .page-content .photos-list {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

body.portal-app div#photos-procedure .page-content .photos-list > .photo-item {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

body.portal-app div#photos-procedure .page-content .photos-list > .photo-item.full-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: 4;
    cursor: default;
}

body.portal-app div#photos-procedure .page-content .photos-list > .photo-item > img {
    object-fit: contain;
    width: 100%;
    height: 200px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    top: 0;
}

body.portal-app div#photos-procedure .page-content .photos-list > .photo-item > .actions {
    display: none;
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    z-index: 2;
}

body.portal-app div#photos-procedure .page-content .photos-list > .photo-item.full-image > img {
    width: auto;
    height: 100%;
}

body.portal-app div#photos-procedure .page-content .photos-list > .photo-item.full-image > .actions {
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

body.portal-app div#photos-procedure .page-content .photos-list > .photo-item > .actions .app-btn {
    padding: 4px 10px;
    min-width: auto;
}

body.portal-app div#photos-procedure .page-content .photos-list > .photo-item > .actions .app-btn.remove-button {
    padding-left: 11px;
    padding-right: 11px;
}

body.portal-app div#photos-procedure .page-content .photos-list.opened-photo > .photo-item:not(.full-image) {
    display: none;
}

@media (max-width: 575px) {
    body.portal-app div#photos-procedure .header .right {
        flex-direction: row !important;
    }

    body.portal-app div#photos-procedure .header .right .page-title {
        left: -10px;
    }
}

/**
 * Camera
 */
body.portal-app div#camera {
    background: #000;
}

body.portal-app div#camera .header {
    background: #000;
    color: #fff;
}

body.portal-app div#camera .header .fa {
    color: #fff;
}

body.portal-app div#camera .page-content #video,
body.portal-app div#camera .page-content #canvas,
body.portal-app div#camera .page-content #picture-screenshot {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

body.portal-app div#camera .page-content #canvas {
    z-index: 2;
    display: none;
}

body.portal-app div#camera .page-content #picture-screenshot {
    z-index: 4;
    background: #000;
    display: none;
    text-align: center;
}

body.portal-app div#camera .page-content .camera-actions {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

body.portal-app div#camera .page-content .camera-actions > * {
    width: 33.3333%;
    text-align: center;
}

body.portal-app div#camera .page-content .camera-actions .take-picture {
    width: 40px;
    height: 40px;
    position: relative;
    border: 2px solid #fff;
    border-radius: 100%;
    opacity: 0.7;
    padding: 0;
    background: transparent;
    outline: none;
}

body.portal-app div#camera .page-content .camera-actions .take-picture:hover,
body.portal-app div#camera .page-content .camera-actions .take-picture:active,
body.portal-app div#camera .page-content .camera-actions .take-picture:focus {
    opacity: 1;
}

body.portal-app div#camera .page-content .camera-actions .take-picture > span {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    padding: 0;
    background: #fff;
}

body.portal-app div#camera .page-content .camera-actions .change-camera {
    border: none;
    outline: none;
    background: transparent;
    font-size: 30px;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
}

body.portal-app div#camera .page-content .camera-actions .change-camera:hover,
body.portal-app div#camera .page-content .camera-actions .change-camera:active,
body.portal-app div#camera .page-content .camera-actions .change-camera:focus {
    opacity: 1;
}

body.portal-app div#camera .page-content .camera-actions > * {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

body.portal-app div#camera .page-content #picture-screenshot > img {
    position: relative;
    top: 0;
    z-index: 1;
    object-fit: contain;
    width: auto;
    height: 100%;
    margin: 0 auto;
}

body.portal-app div#camera .page-content #picture-screenshot > .screenshot-actions {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

body.portal-app div#camera .page-content #picture-screenshot > .screenshot-actions .app-btn {
    padding: 4px 20px;
    min-width: 150px;
}