:root {
    --white: #fff;
    --border: #f5f5f5;
    --gray200: #cdcdcd;
    --gray400: #777777;
    --gray600: #707070;
    --gray800: #595959;
    --gray900: #323232;
    --green: #00c27c;
    --red: #d33030;
    --bg-primary: var(--color-bg-primary);
    --bg-input: #f7f7f7;
}

* {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.container {
    min-width: 300px;
}

h3,
h4,
p {
    margin: 0;
}

input:focus {
    outline: none;
}

a {
    text-decoration: none;
}

a:hover {
    color: var(--bg-primary);
}

select {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 4px;
    height: 42px;
    color: var(--gray400);
}

select:focus {
    outline: none;
}

select.professional {
    min-width: 200px;
}

table {
    width: 100%;
}

table th {
    border: 0;
}

table td {
    padding: 12px;
    border-top: 1px solid var(--border) !important;
    border-bottom: 1px solid var(--border) !important;
    vertical-align: middle;
}

table td:first-child {
    border-left: 1px solid var(--border);
}

table td:last-child {
    border-right: 1px solid var(--border);
}

table tr.separator {
    height: 8px;
}

div.menu {
    overflow: hidden;
}

@media (max-width: 576px) {
    div.menu {
        overflow: scroll;
    }
}

div.menu:hover {
    overflow: auto;
}

div.avatar {
    min-width: 34px;
    min-height: 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #bababa;
}

div.avatar-placeholder {
    min-width: 34px;
    min-height: 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #bababa;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.avatar-placeholder.bg-main {
    background-color: var(--bg-primary);
}

div.avatar-placeholder img {
    width: 12px;
    height: auto;
}

div.avatar img {
    width: 12px;
    height: auto;
}

img.avatar {
    min-width: 34px;
    min-height: 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

button {
    border: 0;
    border-radius: 4px;
    padding: 8px 19px;
}

button.bg-main:disabled,
button.bg-secondary:disabled {
    opacity: 0.7;
}

.form-check-input:checked {
    background: var(--bg-primary);
    border: var(--bg-primary);
    background-repeat: no-repeat;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.25) !important;
}

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

.bg-main {
    background-color: var(--bg-primary);
}

.bg-green {
    background-color: var(--green);
}

.bg-red {
    background-color: var(--red);
}

.bg-gray400 {
    background-color: var(--gray400);
}

.bg-white {
    background-color: var(--white);
}

.border-red {
    border: 1px solid var(--red);
}

.border-gray600 {
    border: 1px solid var(--gray600);
}

.border-bottom {
    border-bottom: 1px solid #f5f5f5;
}

.fs-sm {
    font-size: 10px;
}

.fs-regular {
    font-size: 14px;
}

.fs-large {
    font-size: 18px;
}

.text-white {
    color: var(--white);
}

.text-green {
    color: var(--green);
}

.text-red {
    color: var(--red);
}

.text-gray200 {
    color: var(--gray200);
}

.text-gray400 {
    color: var(--gray400);
}

.text-gray600 {
    color: var(--gray600);
}

.text-gray800 {
    color: var(--gray800);
}

.text-gray900 {
    color: var(--gray900);
}

.text-primary {
    color: var(--bg-primary) !important;
}

/* modal */
.modal-header {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: 0px;
    padding: 24px;
}

.modal-content {
    border-radius: 4px;
    border: 0px;
}
.modal-body {
    padding: 0 24px 24px 24px;
}

.modal-title {
    font-size: 24px;
    color: #585666;
    font-weight: 600;
}

.btn-close {
    color: #323232;
    opacity: 1;
}

/* alerts */
.message,
.ajax-message {
    position: fixed;
    width: min(calc(100vw - 20px), 600px);
    right: 10px;
    top: 20px;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    background-color: #fff;
}

.message:before,
.ajax-message:before {
    content: "";
    position: absolute;
    width: 0;
    height: calc(100% - 44px);
    border-left: 1px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    height: 20px;
}

.message > .start-icon,
.ajax-message > .start-icon {
    margin-right: 5px;
    min-width: 20px;
    text-align: center;
}

.message.success,
.ajax-message.success {
    border: 1px solid rgba(36, 241, 6, 0.4);
    background-color: #d6ffe7;
    box-shadow: 0px 0px 2px #259c08;
    color: #0ad406;
    transition: 0.5s;
    /* cursor: pointer; */
}

.message.info,
.ajax-message.info {
    border: 1px solid rgba(6, 44, 241, 0.4);
    background-color: rgba(7, 73, 149, 0.1);
    box-shadow: 0px 0px 2px #0396ff;
    color: #0396ff;
    transition: 0.5s;
    /* cursor: pointer; */
}

.message.warning-session-alert.warning {
    border: 1px solid rgba(241, 142, 6, 0.81);
    background-color: #fff1de;
    box-shadow: 0px 0px 2px #ffb103;
    color: #ffb103;
    transition: 0.5s;
    /* cursor: pointer; */
    top: auto;
    bottom: 20px
}
.message.warning-session-alert.warning button {
    color: #ffb103;
    background-color: transparent;
    cursor: default;
}

.message.warning-session-alert.danger {
    border: 1px solid rgba(241, 6, 6, 0.81);
    background-color: #ffdcd9;
    box-shadow: 0px 0px 2px #ff0303;
    color: #ff0303;
    transition: 0.5s;
    /* cursor: pointer; */
    top: auto;
    bottom: 20px
}
.message.warning-session-alert.danger button {
    color: #ff0303;
    background-color: transparent;
    cursor: default;
}

.message.danger,
.ajax-message.danger {
    border: 1px solid rgba(241, 6, 6, 0.81);
    background-color: #ffdcd9;
    box-shadow: 0px 0px 2px #ff0303;
    color: #ff0303;
    transition: 0.5s;
    cursor: pointer;
}

.message.simple,
.ajax-message.simple {
    border: 1px solid rgba(6, 241, 226, 0.81);
    background-color: rgba(1, 204, 220, 0.16);
    box-shadow: 0px 0px 2px #03fff5;
    color: #03d0ff;
    transition: 0.5s;
    cursor: pointer;
}

.plan-alert.danger {
    background-color: #ff0303;
    color: white;
    font-weight: 600;
}

.plan-alert.warning {
    color: #ff0303;
    background-color: #ffdcd9;
}

hr.dashed {
    width: 52px;
    border-top: 1px dashed var(--gray600);
}

hr.small-dashed {
    width: 20px;
    border-top: 1px dashed var(--gray600);
}

.services-dropdown:hover {
    background-color: #FFF;
    color: var(--gray600);
}

button.btn-table {
    background-color: var(--bg-primary);
    color: #FFF;
}

button.btn-table:hover,
button.btn-table:focus {
    background-color: var(--color-bg-primary-hover);
    color: #FFF;
}

div.filter {
    min-width: 132px;
    width: 132px;
    height: 42px;
    background: transparent;
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 4px;
    border: solid 0;
    border-bottom-width: 2px;
    border-color: var(--bg-primary);
}

div.filter.border {
    background: var(--white);
    border: 1px solid var(--bg-primary) !important;
    color: var(--gray400);
}

div.filter.border input {
    color: var(--bg-primary);
}

div.filter input {
    color: var(--bg-primary);
    background-color: transparent;
    border: solid 0;
    width: 100%;
}
div.filter input:hover {
    cursor: pointer;
}

div.filter input:focus-visible {
    outline: none;
}

.cursor-pointer {
    cursor: pointer;
}

.body {
    display: flex;
    width: 100%;
    height: 100%;
}

.body > header {
    cursor: pointer;
}

.sidebar {
    width: 250px;
    height: 100vh;
    background: #f8f9fc;
    box-shadow: 1px 0px 0px #dedede;
    padding: 25px 16px 16px 16px;
    position: absolute;

    transition: width 0.1s ease-in-out;
}

@media (min-width: 992px) {
    .sidebar {
        position: relative;
    }
}

.sidebar.retract {
    width: 76px;
}

.sidebar header {
    display: flex;
    margin-bottom: 26px;
}

.sidebar header .initials {
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;

    /* background-color: var(--bg-primary); */
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: bold;
    color: var(--white);

    margin-right: 8px;
}

.sidebar header .username {
    font-size: 14px;
    color: #7c7c7a;
}

.sidebar header .username p,
.sidebar header .username strong {
    font-size: 16px;
    color: #000;
}

.sidebar header .username.truncate {
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

button.retract {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 0;
    color: var(--white);
    padding: 0px;

    position: absolute;
    right: -12px;
}

.sidebar.retract .search {
    display: none;
}

.sidebar .search {
    padding: 13px 16px;
    border: 1px solid #f3f3f3;
    border-radius: 8px;
    color: #7c7c7a;
    margin-bottom: 31px;
    white-space: nowrap;
}

.sidebar .search-mobile {
    margin-bottom: 16px;
    border-bottom: 1px ;
    padding: 0px;
    margin-left: 0px !important;
}

@media(max-width: 768px) {
    .header-dashboard .buttons {
        width: 100% !important;
        justify-content: space-between !important;
    }
    .search-mobile {
        margin-left: 0px !important;
        height: 100%;
    }
    .search-mobile span {
        height: 100%;
        background-color: #F4F4F4 !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        border-radius: 0px !important;
    }
    .header-dashboard {
        padding-left: 6px !important;
    }
}

.sidebar .search i {
    margin-right: 4px;
}

.sidebar .search input {
    border: 0;
    background: transparent;
}

.sidebar .search input:focus {
    outline: none;
}

.sidebar.retract .menu div {
    padding: 10px 14px;
}

.sidebar .menu div {
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #7c7c7a;
    white-space: nowrap;
}
.active-setup {
    border: 1px solid var(--bg-primary) !important;
    color: var(--bg-primary) !important;
}
.active-setup.active {
    color: var(--white) !important;
}
.sidebar .menu .btn-trigger-menu button  {
    font-weight: 600;
    font-size: 16px;
    color: rgb(124, 124, 122);
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.sidebar .menu .btn-trigger-menu a {
    color: rgb(124, 124, 122);
}
.sidebar .menu .btn-trigger-menu i.fa-chevron-up {
    transform: rotate(-180deg);
    transition: 300ms
}
.sidebar .menu .btn-trigger-menu.collapsed button, .sidebar .menu .btn-trigger-menu.collapsed i {
    color: rgb(124, 124, 122)
}
.sidebar .menu .btn-trigger-menu.collapsed i.fa-chevron-up {
    transform: rotate(-90deg);
    transition: 300ms
}
.sidebar .menu div.active, .sidebar .menu div.active a {
    color: var(--bg-primary) !important;
    width: 100%;
    /* color: var(--white); */
}
.sidebar .menu div.active i {
    color: var(--bg-primary) !important;
}
.sidebar.retract .menu span {
    display: none;
}

.sidebar footer {
    position: absolute;
    bottom: 0;
    padding: 25px 16px;
}

.sidebar.retract footer span {
    display: none;
}

.sidebar footer div {
    font-weight: 600;
    color: #7c7c7a;
    font-size: 16px;
    white-space: nowrap;
}

.main {
    width: 100%;
    height: 100%;
    overflow: auto;
    /* padding: 24px 36px; */
}

.main header {
    margin-bottom: 31px;
}

.main header #menu-mobile {
    display: none;
    background: transparent;
}

.card {
    border: none;
    padding: 12px;
    box-shadow: 0px 0px 50px 2px rgba(0,0,0,0.1);
}

.card-header {
    background: transparent;
    border: none;
    font-weight: bold;
    font-size: 16px;
}

.cards {
    display: flex;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 24px;
}

.cards .item {
    border-right: 1px solid #f5f5f5;
    padding-right: 36px;
    /* padding-left: 36px; */
    margin-right: 36px;
}

/* .cards .item:first-child {
    padding-left: 0px;
} */

.cards .item p {
    font-size: 14px;
}

.cards .item .icon-success {
    color: #00c27c;
    margin-left: 8px;
}

.cards .item .icon-danger {
    color: #ff0000;
    margin-left: 8px;
}

.cards .item:last-child {
    border-right: 0;
}

.datepicker {
    font-size: 12px;
}

@media (max-width: 564px) {
    .daterangepicker {
        top: 0px !important;
        margin-top: 7px !important;
        max-height: 100%;
        overflow-y: scroll;
    }

    .daterangepicker div.ranges {
        display: none;
    }
}

.custom-tabs {
    border-bottom: 1px solid #f3f3f3;
}

.custom-tabs .nav-link {
    font-size: 13px;
    color: var(--gray400);
}

.custom-tabs .nav-link.active {
    background: transparent;
    color: var(--bg-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--bg-primary);
    border-radius: 0;
}

.tab-content {
    overflow: auto;
}

.customers-desktop-table {
    border: 1px solid var(--border);
    display: none;
}

.customers-mobile-table {
    border: 1px solid var(--border);
}

@media (min-width: 576px) {
    .customers-desktop-table {
        display: table-row-group;
    }

    .customers-mobile-table {
        display: none;
    }
}

.sign-in .background {
    /* background-image: url(../img/background.png); */
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.sign-in .background .shadow {
    position: absolute;
    height: 100%;
    left: 0%;
    right: 0%;
    bottom: 0px;

    background: linear-gradient(
        267.35deg,
        rgba(0, 0, 0, 0.84) -9.62%,
        rgba(30, 30, 30, 0.7) 24.42%,
        rgba(29, 29, 29, 0.42) 45%,
        rgba(28, 28, 28, 0.7) 68.44%,
        #000000 107.09%
    );
}

.sign-in .form-container {
    height: 100vh;
    width: 100%;
    max-width: 700px;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign-in .form {
    max-width: 450px;
    width: 100%;
    padding: 32px;
}

.sign-in .form h1 {
    font-size: 24px;
    text-align: center;
    color: var(--gray900);
}

.sign-in .form h2 {
    font-size: 16px;
    text-align: center;
    color: var(--gray900);
}

.selectize-input.full {
    background-color: transparent !important;
    border: 0;
}

/* .selectize-dropdown-content {
    background-color: #fff !important;
} */

.selectize-input {
    background-color: transparent !important;
    border: 0px !important;
}

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

.selectize-input.focus {
    box-shadow: none !important;
}

.selectize-control {
    display: flex;
    align-items: center;
}

.selectize-control.multi .selectize-input > div {
    font-weight: 400 !important;
    font-size: 14px !important;
}

.selectize-dropdown [data-selectable].option {
    font-size: 14px !important;
}

.select-icon > .selectize-input.items.not-full.has-options:before {
    font-family: "Font Awesome 5 Pro", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji" !important;
    color: #a3a3a3;
    font-weight: 150 !important;
}

.selectize-input.locked::after {
    display: none !important;
}

.select-icon > .input-icon .selectize-control.single .selectize-input,
.select-icon > .selectize-control.single .selectize-input input {
    font-size: 16px;
}

.select-icon > .input-icon .selectize-dropdown [data-selectable].option {
    font-size: 24px;
}

.select-icon > .icon-select .selectize-input > * {
    font-size: 22px;
}

.select-icon .selectize-dropdown [data-selectable].option {
    font-family: "icomoon", "Font Awesome 5 Pro", system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
        "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 150 !important;
    font-size: 18px;
}

.select-icon .selectize-control.multi .selectize-input > div {
    font-family: "icomoon", "Font Awesome 5 Pro", system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
        "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 150 !important;
    font-size: 18px;
}

.select-icon .selectize-input.items.not-full.has-options:before {
    color: #a3a3a3;
    font-weight: 150 !important;
}

.select-icon .selectize-input > * {
    font-family: "icomoon", "Font Awesome 5 Pro", system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
        "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.selectize-dropdown-content {
    background: #fff;
    border: 1px solid var(--gray200);
    border-radius: 4px;
}

.select {
    background-color: var(--bg-input);
    padding: 0px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    min-height: 45px;
    padding-left: 16px;
}

select#duration {
    background-color: var(--bg-input);
}

select#duration > option:hover {
    cursor: pointer;
}

.selectize-control.multi .selectize-input > div.active {
    background-color: var(--gray200) !important;
    color: #000 !important;
}

.input,
.input-icon {
    background-color: var(--bg-input);
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.input-icon i {
    color: #a3a3a3;
}

.input-icon input {
    background: transparent;
    width: 100%;
    border: 0;
    margin-left: 16px;
    font-size: 14px;
}
.input textarea {
    resize: none;
    background: transparent !important;
    width: 100%;
    border: 0;
    font-size: 14px;
    padding: 0px !important;
}
.input input {
    background: transparent;
    width: 100%;
    border: 0;
    font-size: 14px;
}

.input input:focus,
.input-icon input:focus,
.input textarea:focus {
    outline: none;
    box-shadow: none !important;
}

.input-icon input::placeholder {
    color: #a3a3a3;
}

.input textarea {
    background: transparent;
    width: 100%;
    border: 0;
    font-size: 14px;
}

.input textarea:focus {
    outline: none;
}

.input-code {
    width: 48px;
    height: 48px;
    border-radius: 7px;
    background-color: var(--white);
    border: 1px solid #a3a3a3;
    text-align: center;
}

.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    /* margin-bottom: 12px;
    font-size: 22px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox input:checked ~ .checkmark {
    background-color: var(--bg-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    left: 9px;
    top: 6px;
    width: 7px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.upload-avatar {
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #bababa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-avatar img {
    width: 28px;
    height: auto;
}

div.initials {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    background: var(--gray800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -8px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.card-employee {
    border: 1px solid #dedede !important;
}
.employee-placeholder {
    background-color: #bababa;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.employee-placeholder img {
    width: 80px;
}

.profile main {
    margin-right: 16px;
    width: 100%;
}

@media (min-width: 992px) {
    .profile main .input-container {
        width: 50% !important;
    }
}

.profile > button {
    display: none;
}

.profile section {
    max-width: 360px;
}

.weekDays-selector input {
    display: none !important;
}

.weekDays-selector input[type="checkbox"] + label {
    display: inline-block;
    border-radius: 4px;
    background: #dddddd;
    height: 40px;
    width: 60px;
    margin-right: 3px;
    line-height: 40px;
    text-align: center;
    color: #767676;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
}

.weekDays-selector input[type="checkbox"]:checked + label {
    background: var(--bg-primary);
    color: #ffffff;
}

li.breadcrumb-item a {
    color: var(--bs-body-color);
}

#loading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 9;
}

button#dropdownServiceTable,
button#dropdownEmployeeTable,
button#dropdownProductTable {
    border: none;
}

button#dropdownServiceTable:hover,
button#dropdownEmployeeTable:hover,
button#dropdownProductTable:hover {
    color: #707070;
    outline: none;
    border: none;
}

button#dropdownServiceTable:focus,
button#dropdownEmployeeTable:focus,
button#dropdownProductTable:focus {
    color: #707070;
    border: none;
}

.table-responsive {
    min-height: 90px;
}

input.color {
    position: relative;
    visibility: hidden;
    z-index: -1;
    width: 0px;
    height: 0px;
}

div.color {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    border: 1px solid;
}

div.color.active {
    border: 2px solid #ffb12f;
}

div.color.custom {
    border: 1px dashed #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    font-size: 12px;
}

div.preview {
    position: relative;
}

div.preview iframe {
    width: 271px;
    height: 585px;
    margin-right: 12px;
    margin-top: 10px;
    z-index: 1;
}

div.preview img {
    position: absolute;
    bottom: 0;
    right: -3px;
    height: 600px;
    z-index: 0;
}

/* xxl */
@media (min-width: 1400px) {
    .schedule .filter {
        margin-left: 8px;
    }
}

/* xl */
@media (min-width: 1200px) and (max-width: 1399px) {
    .schedule .filter {
        margin-left: 8px;
    }
}

/* lg */
@media (min-width: 992px) and (max-width: 1199px) {
    .schedule .filter {
        margin-left: 8px;
    }
}

/* md */
@media (min-width: 768px) and (max-width: 991px) {
    .schedule .filter {
        margin-left: 8px;
    }
}

/* sm */
@media (min-width: 576px) and (max-width: 767px) {
    .sign-in .background {
        display: none;
    }

    .flex-wrap-mobile {
        flex-wrap: wrap;
    }

    .profile main {
        margin-right: 0;
    }
}

/* mobile */
@media (max-width: 992px) {
    .main header #menu-mobile {
        display: block;
        margin-left: -19px;
    }

    button.retract {
        display: none;
    }

    .sidebar {
        display: none;
    }

    .sidebar.open {
        display: block;
    }

    .sign-in .background {
        display: none;
    }

    .cards {
        flex-wrap: wrap;
    }

    .cards .item {
        margin-bottom: 16px;
        border-right: 0px;
        padding-left: 0px;
    }

    .schedule header {
        flex-wrap: wrap;
    }

    .flex-wrap-mobile {
        flex-wrap: wrap;
    }

    .profile main {
        margin-right: 0;
        max-width: 100%;
    }

    .profile > button {
        display: block;
    }

    .profile section {
        max-width: 100%;
    }
}

@media (max-width: 924px) {
    .cards .item {
        padding-right: 19px;
        margin-right: 19px;
    }
}

@media (max-width: 820px) {
    .cards .item {
        padding-right: 0px;
        margin-right: 12px;
    }
}

@font-face {
    font-family: "icomoon";
    src: url("../libs/iconmoon-barber/fonts/icomoon.eot?leyla4");
    src: url("../libs/iconmoon-barber/fonts/icomoon.eot?leyla4#iefix")
            format("embedded-opentype"),
        url("../libs/iconmoon-barber/fonts/icomoon.ttf?leyla4")
            format("truetype"),
        url("../libs/iconmoon-barber/fonts/icomoon.woff?leyla4") format("woff"),
        url("../libs/iconmoon-barber/fonts/icomoon.svg?leyla4#icomoon")
            format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-SCISSORS:before {
    content: "\e900";
}
.icon-RAZOR:before {
    content: "\e901";
}
.icon-NAIL-CLIPPER:before {
    content: "\e902";
}
.icon-HAIR-CLIPPER:before {
    content: "\e903";
}
.icon-Vector-2:before {
    content: "\e904";
}
.icon-Vector-1:before {
    content: "\e905";
}
.icon-Group-5:before {
    content: "\e906";
}
.icon-Group-4:before {
    content: "\e907";
}
.icon-Vector:before {
    content: "\e908";
}
.icon-Group-3:before {
    content: "\e909";
}
.icon-Group-2:before {
    content: "\e90a";
}
.icon-Group-1:before {
    content: "\e90b";
}
.icon-Group:before {
    content: "\e90c";
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bg-primary);
    --bs-btn-border-color: var(--bg-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-bg-primary-hover);
    --bs-btn-hover-border-color: var(--color-bg-primary-hover);
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-bg-primary-hover);
    --bs-btn-active-border-color: var(--color-bg-primary-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bg-primary);
    --bs-btn-disabled-border-color: var(--bg-primary);
}

.overflow-panel {
    height: 66vh;
    overflow-y: auto;
}

.pagination {
    color: var(--bg-primary);
    --bs-pagination-color: var(--bg-primary);
    --bs-pagination-hover-color: var(--bg-primary);
    --bs-pagination-active-border-color: var(--bg-primary);
}
.active>.page-link, .page-link.active {
    background: var(--bg-primary);
}

.border-left-status {
    border: none;
    border-left: solid;
    border-left-width: 15px !important;
    padding-left: 20px !important;
}
.border-left-status-warning {
    border-left-color: #FFE098 !important;
}
.border-left-status-info {
    border-left-color: #9FE5F7 !important;;
}
.border-left-status-success {
    border-left-color: #95C3A9 !important;;
}
.border-left-status-danger {
    border-left-color: #F29DA2 !important;;
}

.strike {
    text-decoration: line-through;
}

/* ANIMATIONS */

/* alets */
.fade-out {
	animation: fade-out 1s ease-out both;
}

/* pwa button */
.fade-in-fwd {
	animation: fade-in-fwd 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}

@keyframes fade-in-fwd {
    0% {
      transform: translateZ(-80px);
      opacity: 0;
    }
    100% {
      transform: translateZ(0);
      opacity: 1;
    }
  }
.input-search {
    display: flex;
    width: 100%;
    align-items: center;
    border: 1px solid var(--gray200);
    padding: 12px;
    border-radius: 4px;
}
.input-search input {
    border: none;
    width: 100%;
    padding-left: 12px;
    font-size: 14px;
}
.scrool-bar {
    padding: 15px 10px;
    max-height: 487px;
    /*height: 487px;*/
    overflow-y: auto;
}

.scrool-bar::-webkit-scrollbar {
    width: 10px;
}

.scrool-bar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scrool-bar::-webkit-scrollbar-thumb {
    background: var(--bg-primary);
}

.scrool-bar::-webkit-scrollbar-thumb:hover {
    background: var(--color-bg-primary-hover);
}
.header-dashboard {
    background-color: #F8F9FC;
    width: calc(100% + 5px);
    max-width: calc(100% + 5px);
    padding: 0px 24px;
    position: absolute !important;
    top: 0px;
    right: 0px;
    z-index: 9;
    box-shadow: 4px 0px 8px #a8a8a8;
}
.header-dashboard .search {
    opacity: .6;
    transition: all 400ms;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    background: transparent;
}
.header-dashboard .search input{
    background: transparent;
    cursor: pointer;
}
.header-dashboard .search .input-group{
    background: #e5e5e5;
    border-radius: 5px;
}
.header-dashboard .search:hover {
    opacity: 1;
    cursor: pointer !important;
}
.header-dashboard .buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.header-dashboard .buttons button.btn-header, .header-dashboard .buttons a.notification {
    padding: 18px 22px;
    border-radius: 0px;
    background-color: #F4F4F4;
}
.header-dashboard .buttons button.btn-header, .header-dashboard .buttons a.notification {
    font-size: 16px;
    color: #787878;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    margin-bottom: 0px !important;
}
.header-dashboard .buttons button.btn-header i, .header-dashboard .buttons a.notification i {
    font-size: 24px;
}
.header-dashboard .buttons button.btn-header.alert:after {
    content: "";
    display: block;
    background-color: #DE412C;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    bottom: 13px;
    right: 18px;
}
.title-notification {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    padding-bottom: 4px;
    position: absolute;
    top: 16px;
    left: 16px;
}
.custom-tab-menu-notification {
    width: 100%;
}
#settings-instance-tab-notification {
    width: 100%;
    /* margin-top: 16px; */
}
.custom-tab-menu-notification .custom-tab-notification {
    width: 50%;
}
.custom-tab-menu-notification .custom-tab-notification button {
    width: 100%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #27262D;
    font-weight: 500;
    border-radius: 0px;
    border-color: var(--bg-primary);
    background-color: #EAEAEA;
    padding-top: 2px;
    padding-bottom: 2px;
    position: relative;
}
.custom-tab-menu-notification .custom-tab-notification button.active {
    background-color: transparent;
    color: #27262D;
}
.custom-tab-menu-notification .custom-tab-notification button.active:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0px;
    left: 0px;
    background-color: var(--bg-primary);
    position: absolute;
}
.custom-tab-menu-notification .custom-tab-notification button i {
    padding-top: 4px;
}
.list-notifications ul {
    display: flex;
    margin-top: 8px;
    flex-direction: column;
    padding-left: 0px !important;
    max-height: 100% !important;
}
.list-notifications ul li {
    border-bottom: 1px solid #777777;
    padding-bottom: 4px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 24px;
}
.list-notifications ul#content_not_views li:first-child {
    padding-top: 0;
}
.list-notifications ul li h6 {
    font-size: 14px;
    color: #27262D;
    font-weight: 500;
}
.list-notifications ul li p {
    font-size: 14px !important;
    color: #27262D;
    font-weight: 400;
}
.list-notifications ul li div.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 16px;
}
.list-notifications ul li div.footer span {
    font-size: 12px;
    font-weight: 400;
    color: #27262D;
}
.list-notifications ul li div.footer a {
    display: flex;
    gap: 2px;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    /* color: #27262D; */
}
.list-notifications ul li div.footer a:hover {
    color: #0396ff;
}
.mark-notification:hover {
    color:#0ad406
}
.offcanvas-header-menu {
    height: 100vh;
    min-height: 400px;
}
.offcanvas-header-menu .offcanvas-body {
    display: flex;
    flex-direction: column;
}
.offcanvas-header-menu .tab-content {
    flex: 1;
}
.offcanvas-header-menu .tab-content .tab-pane {
    height: 100%;
}

#tab_content_notification::-webkit-scrollbar {
    width: 0.02px;
}
#tab_content_notification::-webkit-scrollbar-thumb {
    background-color: transparent;
}
#tab_content_notification::-webkit-scrollbar {
    display: none;
}
#tab_content_notification::-webkit-scrollbar {
    width: 0.02px;
}
#tab_content_notification::-webkit-scrollbar-thumb {
    background-color: transparent;
}
#tab_content_notification::-webkit-scrollbar {
    display: none;
}

@media(max-width: 768px) {
    .header-dashboard {
        padding: 0px 12px;
    }
    .header-dashboard .buttons button.btn-header, .header-dashboard .buttons a.notification {
        font-size: 14px;
        padding: 12px 12px;
    }
    .header-dashboard .buttons button.btn-header i, .header-dashboard .buttons a.notification i {
        font-size: 20px;
    }
    .header-dashboard .buttons button.btn-header.alert:after {
        bottom: 10px;
        right: 10px
    }
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.9s ease;
}
#overlay.show {
    display: flex;
    opacity: 1;
}
.container-spinner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner {
    border: 8px solid rgba(255, 255, 255, 0.6);
    border-top: 8px solid var(--bg-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background: transparent !important;
}
.field-error {
    font-size: 14px;
    color: red
}
.custom-tab-offcanvas-owner {
    border-bottom: 1px solid #f3f3f3 !important;
    margin-bottom: 0px !important;
}
.custom-tab-offcanvas-owner li {
    width: 50%;
}
.custom-tab-offcanvas-owner li button {
    width: 100%;
    color: var(--gray400) !important;
    font-size: 14px !important;
}
.custom-tab-offcanvas-owner li button.active {
    background-color: transparent !important;
    color: var(--bg-primary) !important;
    border-bottom: 2px solid var(--bg-primary) !important;
    border-radius: 0px !important;
    font-weight: 600 !important;
}
.toast-success {
    opacity: 1 !important;
}
.toast-error {
    opacity: 1 !important;
}
.bonus-campaign-credit {
    width: 96%;
    max-width: 96%;
    background: url('/img/bg.png') no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    overflow: auto
}
.bonus-campaign-credit .modal-content {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    width: 1140px;
    max-width: 1140px;
}
.bonus-campaign-credit .modal-content .part-one {
    position: relative;
    background-color: #141414;
    width: 54%;
    margin-right: -7%;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 10;
    align-items: center;
    overflow: hidden;
}
.bonus-campaign-credit .modal-content .part-one h1 {
    position: absolute;
    z-index: 1;
    color: #FFF;
    right: 124px;
    text-align: end;
    top: 24px;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: -102px;
}
.bonus-campaign-credit .modal-content .part-one h1 strong {
    font-size: 48px;
    color: var(--bg-primary);
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    text-align: right;
    text-transform: uppercase;

    /* Gradiente laranja */
    background: linear-gradient(271.85deg, var(--bg-primary) -1.62%, #E6AE83 9.68%, var(--bg-primary) 54.44%, #F7CAA6 97.13%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.bonus-campaign-credit .modal-content .part-one h2 {
    text-align: center;
    color: #FFF;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 42px;
    text-transform: uppercase;
    margin-right: 202px;
    font-family: 'Sora';
    margin-top: -42px;
}
.bonus-campaign-credit .modal-content .part-one h2 strong {
    font-size: 68px;
    color: var(--bg-primary);
    /* recurso */
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 76px;
    text-align: right;
    text-transform: uppercase;

    /* Gradiente laranja */
    background: linear-gradient(271.85deg, var(--bg-primary) -1.62%, #E6AE83 9.68%, var(--bg-primary) 54.44%, #F7CAA6 97.13%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.bonus-campaign-credit .modal-content img.phone {
    width: fit-content;
    margin-top: 62px;
    position: relative;
    z-index: 2;
    width: 482px;
    object-fit: cover;
    margin-left: -102px;
}

.bonus-campaign-credit .modal-content img.effect {
    position: absolute;
    left: 0px;
    top: -82px;
    left: -52px;
}
.bonus-campaign-credit .modal-content img.effect-two {
    position: absolute;
    right: -420px;
    top: -42px;
}
.bonus-campaign-credit .modal-content .part-two {
    width: 62%;
    margin-left: -9%;
    background: url('/img/effect-three.png') no-repeat;
    background-size: cover;
    position: relative;
    z-index: 11;
}
.bonus-campaign-credit .list-features {
    margin-left: 180px;
    position: relative;
    margin-top: 48px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.bonus-campaign-credit .list-features div {
    display: flex;
    align-items: center;
    gap: 24px;
}
.bonus-campaign-credit .list-features div p {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;

    color: #FFFFFF;

    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.bonus-campaign-credit .list-features div img {
    width: 62px;
}
.bonus-campaign-credit .btn-action {
    margin-left: 82px;
    position: relative;
    z-index: 4
}
.bonus-campaign-credit .logo-filter {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 520px;
}
.bonus-campaign-credit .btn-action {
    margin-top: 62px;
}
.bonus-campaign-credit .btn-action h4 {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 300;
    font-size: 42px;
    line-height: 62px;
    text-align: center;
    text-transform: uppercase;

    color: #FFFFFF;
}
.bonus-campaign-credit .btn-action h4 strong {
    font-weight: 700;
}
.bonus-campaign-credit form.btn-action {
    margin-left: 230px !important;
    margin-top: 32px !important;;
}
.bonus-campaign-credit form button {
    width: 320px;
    height: 80.95px;
    background: url('/img/btn.png') no-repeat;
    background-size: cover;
    padding-bottom: 17px;
    padding-right: 24px;

    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}
.bonus-campaign-credit .mobile {
    display: none;
}
@media(max-width: 1042px) {
    .bonus-campaign-credit {
        max-width: 414px !important;
        overflow: hidden;
    }
    .bonus-campaign-credit .desktop {
        display: none !important;
    }
    .bonus-campaign-credit .mobile {
        display: flex;
        flex-direction: column;
    }
    .bonus-campaign-credit .mobile .part-one-mobile {
        position: relative;
        background-color: #141414;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: -212px;
        padding-bottom: 220px;
    }
    .bonus-campaign-credit .mobile .part-one-mobile h1 {
        font-size: 30px;
        color: #FFF;
        font-family: 'Sora', sans-serif;
        line-height: 46px;
        margin-top: 32px;
        text-transform: uppercase;
        text-align: center;
        position: relative;
        z-index: 4
    }
    .bonus-campaign-credit .mobile .part-one-mobile h1 strong {
        font-size: 45px;
        font-weight: bold;
        background: var(--Gradiente-laranja, linear-gradient(272deg, var(--bg-primary) -1.62%, #E6AE83 9.68%, var(--bg-primary) 54.44%, #F7CAA6 97.13%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .bonus-campaign-credit .mobile .part-one-mobile .btn-action {
        margin-left: 0px !important;
    }
    .bonus-campaign-credit .modal-content img.effect {
        top: 0px !important;
        left: 0px !important;
        width: 100%;
        height: 100%;
    }
    .bonus-campaign-credit .modal-content img.phone {
        width: fit-content !important;
        margin-left: 0px !important;
        margin-bottom: 0px;
    }
    .bonus-campaign-credit .part-two-mobile {
        width: 100%;
        margin-top: -200px;
    }
    .bonus-campaign-credit .part-two-mobile {
        background: url('/img/effect-five.png') no-repeat;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 38px;
        position: relative;
        z-index: 2;
        padding-top: 54px;
    }
    .bonus-campaign-credit .modal-content {
        width: 100% !important;
    }
    .bonus-campaign-credit .part-two-mobile h2 {
        margin-top: 102px;
        font-size: 30px;
        color: #FFF;
        text-align: center;
    }
    .bonus-campaign-credit .list-features {
        margin-top: 12px;
        margin-left: 0px !important;
        width: fit-content;
        gap: 12px;
    }
    .bonus-campaign-credit .list-features div p {
        font-size: 18px !important;
    }
    .bonus-campaign-credit .list-features div img {
        width: 42px !important;
    }
    .bonus-campaign-credit .container-phone {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: -84px;
        position: relative;
        z-index: 3;
    }
    .bonus-campaign-credit .modal-content img.effect-two {
        right: -520px;
    }
}
.preview-app {
    width: 288px;
    height: 587px;
    position: relative;
    border-radius: 52px;
    top: 6px;
    right: 4px;
    background-size: cover;
}
.text-apresentation {
    position: absolute;
    bottom: 42px;
    width: 100%;
    padding: 0px 32px;
}
.text-apresentation h1, .text-apresentation p {
    color: #FFF
}
.text-apresentation button {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    border-radius: 4px;
    color: #FFF;
    background-color: #FF2F61;
    cursor: pointer;
}
.text-apresentation button:last-child {
    background-color: transparent !important;
    border: 1px solid #A3A3A3
}
.text-apresentation img#logo-preview-app {
    width: fit-content;
    min-width: 100%;
    height: 120px;
    object-fit: contain;
    position: relative !important;
    margin-bottom: 102px;
}
img.phone-mock {
    right: -4px !important;
    top: -4px !important;
}
.preview-app.ipad, .preview-app.ipad div#bg-preview-app {
    width: 459px !important;
}
div.bg-image-ipad {
    display: flex;
    align-items: center;
    border-radius: 24px 0px 0px 24px !important;
    margin-left: 4px !important;
}
div.bg-image-ipad img#logo-preview-app {
    width: fit-content;
    min-width: 100%;
    height: 120px;
    object-fit: contain;
    position: relative !important;
    margin-bottom: 0px;
}
.preview-app.ipad .text-apresentation {
    bottom: 0px !important
}
.preview-app.ipad .text-apresentation img {
    position: relative !important;
}

.preview-app.ipad .text-apresentation h2 {
    font-size: 18px;
    text-align: center;
    color: var(--gray900)
}
.preview-app.ipad .text-apresentation .input {
    zoom: 0.75;
    padding-left: 8px !important;
    padding-right: 8px !important;
}
.preview-app.ipad .text-apresentation label {
    font-size: 12px
}
.preview-app.ipad .text-apresentation button {
    width: 100px;
    zoom: 0.7;
    background-color: var(--bg-primary) !important;
    border: none !important;
    height: 32px !important;
    font-weight: 600 !important;
}

@media (min-width: 992px) {
    .aside-border {
        border-right: 1px solid #c8c8c8;
    }
}

.tag {
    font-size: 10px;
    padding: 2px 8px 2px 8px;
    border-radius: 4px;
    font-weight: 400;
    background: rgb(242, 106, 0);
    color: #FFF;
}
