:root {
    --color-master: #0162F4;
    --color-master2: #d7eaff;
    --field-heigth: 36px;
    --field-text-color: #222222;
    --field-font-size: 14px;
    --form--label-font-size: 12px;
    --form--label-help-font-size: 12px;
    --form--label-help-color: #717171;
    --button-font-size: 14px;
    --button-icon-font-size: 14px;
    --link-color: #222222;
    --color-border: #e4e3e3;
    --color-border-focus: #c5c1c1;
    --color-background-button-grid: #efefef;
    --field-border-radius: 24px;
    --color-background-disable: #efefef;
    --padding-field-left: 15px;
    --button-height: 36px;
    --color-lines: #f1f0f0;
    --datagrid-check-background: #F8F8F8;
    --text-border-radius: 20px;
    --notify--background: rgba(255, 255, 255, 0.8);
    --container-reverse-background: #e1e1e1;

    /* For template */
    --area-background: #fff;
    --menu-background: #fff;
    --submenu-background: #F8F8F8;
    --container-background: #efefef;
    --color-text-button: #222222;
    --icon-menu-background: #e3e7ec;
    --text-color: #222222;
    --menudrop-background: #fff;
    --text-label: #717171;
    --button-background:#efefef;
    --search-background:#fff;
    --background-helper: #edf5ff;
    --light-container: #dfe5f2;
    --background-menu-toggle: var(--button-background);
    --color-menu-toggle: var(--text-color);
    --self-help-background-blue: #edf5ff;
    --self-help-color-blue: var(--color-master);
    --self-help-background-orange: #ffeed4;
    --self-help-color-orange: #d58f20;
    --self-help-background-red: #ffe8e6;
    --self-help-color-red: #F44336;
    --datagrid-card-block: var(--container-background);
    --chat-bot-color: var(--text-color);
    --chat-bot-background: #e0eeff;
    --scroll-background: #e2e2e2;
}
body, html {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-color);
    height: 100%;
    font-smooth: always;
    -webkit-font-smoothing: antialiased; /* Para navegadores baseados em Webkit */
    -moz-osx-font-smoothing: grayscale; /* Para sistemas macOS */
    text-rendering: optimizeLegibility; /* Para maior legibilidade */
}
a {
    text-decoration: none;
}
b 
{
    font-weight: 600;
}
[style*="font-weight: bold"], b, strong {
    font-weight: 600 !important; /* ForÃƒÆ’Ã‚Â§a bold a ser 600 */
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    border-radius: 30px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 1px;
    background: var(--scroll-background);
}
.art-master {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    background: var(--area-background);
}
.art-main-nav {
    background: #f0f3f8;
    height: 100%;
    flex-basis: 61px;
    flex-shrink: 0;
    /* padding: 6px; */
    text-align: center;
    position: relative;
    /* padding-top: 8px; */
    display: grid;
    /* overflow-y: auto; */
}
.art-live {
    background: var(--area-background);
    width: 100%;
    overflow: auto;
    padding: 15px;
    padding-top: 0 !important;
}
.art-live-content {
    width: 100%;
    /* max-width: 1100px; */
    overflow: visible;
    margin: auto;
    height: 100%;
    position: relative;
    padding-top: 24px;
}
.art-logo img {
    width: 37px;
}
.art-logo {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 9px;
    width: 25px;
    height: 25px;
    margin: auto;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.art-user {}
.art-nav {
    text-align: center;
}
.art-main-nav a {
    display: grid;
    font-size: 9px;
    /* color: #fff; */
    margin-bottom: 3px;
    /* width: 32px; */
    /* height: 25px; */
    /* border-radius: 50px; */
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 5px;
    color: var(--text-color);
}
.art-main-nav a.checked {

    color: var(--color-master);
}
.art-main-nav a.checked:after
{
    position: absolute;
    content: ' ';
    right: -2px;
    width: 5px;
    height: 21px;
    background: var(--color-master);
    border-radius: 200px;
    margin-top: 1px;
}
.art-main-nav a:hover {
    color: var(--color-master);
}
.art-main-nav a .checked {
    background: #0365d2;
    color: #fff;
}
.art-main-nav a i {
    display: block;
    font-size: 19px;
    margin-bottom: -4px;
}
.art-nav.bottom {
    bottom: 32px;
    width: 87%;
    text-align: center;
    position: absolute;
}
.art-main-nav hr {
    border: 0;
    border-top: 1px solid #4367ca;
    margin-top: 13px;
    margin-bottom: 9px;
}
.art-main-subnav {
    /* background: #f9fafa; */
    padding: 12px;
    /* max-width: 170px; */
    width: 100%;
    display: none;
    padding-top: 10px;
}
.art-main-subnav a i {
    /* color: #4B74E6; */
    margin-right: 7px;
    font-size: 18px;
}
.art-main-subnav a {
    display: flex;
    padding: 4px;
    border-radius: 24px;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 5px;
    color: var(--text-color);
    align-items: center;
}
.art-main-subnav a:hover {
    background: var(--container-background);
    color: unset;
}
.art-main-subnav-title {
    color: var(--link-color);
    margin-bottom: 12px;
    /* padding-left: 20px; */
    /* padding-top: 10px; */
    font-size: 15px;
    /* margin-top: 14px; */
    font-weight: 600;
    /* text-transform: uppercase; */
}
.art-main-subnav-info {
    background: #EAECEF;
    border-radius: 4px;
    font-size: 13px;
    padding: 17px;
    margin-top: 20px;
    display: none;
}
.art-main-subnav .checked {
    background: var(--color-master)!important;
    color: #fff !important;
    opacity: 1 !important;
}
.art-main-subnav .checked i {
    color: #fff !important;
}
.art-main-nav-mobile {
    background: #f0f3f8;
    position: fixed;
    height: 48px;
    margin-top: 11px;
    padding-left: 17px;
    padding-right: 17px;
    padding-top: 3px;
    right: 0;
    margin-right: 14px;
    border-radius: 24px;
    /* border: 1px solid #eee; */
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 999;
}
.art-main-nav-mobile div {
    display: flex;
}
.art-toggle-menu {
    font-size: 37px;
    /* padding-top: 6px; */
    color: #fff;
    z-index: auto;
    text-align: center;
}
.art-logo-mobile img {
    width: 40px;
}
.art-logo-mobile {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    width: 30px;
    height: 30px;
    margin: auto;
    display: flex;
    margin-bottom: 10px;
    float: left;
    padding-left: 18px;
    padding-top: 14px;
}
.blur {
    filter: blur(2px);
}
.art-preloader-content {
    background: var(--background-overlay);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.art-preloader-figure {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.art-main-subnav-content {
    flex-basis: 190px;
    flex-shrink: 0;
    width: 100%;
    overflow-y: auto;
    height: 100%;
    border-right: 1px solid var(--color-lines);
    background: var(--area-background);
}
.art-main-nav-mobile a {
    color: #50585d !important;
    font-size: 28px;
    margin-right: 5px;
}
.nav-lane-top {
    display: grid;
    justify-content: center;
}
.nav-lane-center {
    align-items: center;
    justify-content: center;
    display: grid;
}
.nav-lane-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 48px; */
}
.nav-lane-bottom.art-nav:hover
{
    opacity: 0.7
}
.art-nav-show {
    display: grid !important;
}
.menu-contrast {
    background: var(--container-background);
    border-radius: 10px !important;
    padding: 11px !important;
    color: var(--link-color) !important;
}
.display-select-schedules {
    background: var(--color-background-button-grid);
    border-radius: 10px !important;
    padding: 11px;
    max-height: 140px;
    overflow-y: auto;
    margin-bottom: 10px;
}
.display-select-schedules .menu-contrast {
    padding: 8px !important;
    margin-bottom: 0;
}
.menu-contrast:hover {
    opacity: 0.7;
}
@media (max-width: 800px) {
    .art-main-nav {
        display: none;
    }
    .art-main-subnav {
        width: 100%;
        max-width: 235px;
        /* flex-basis: 66%; */
        /* flex-shrink: 0; */
        /* max-width: none; */
        padding-right: 27px;
    }
    .art-live {
        padding: 20px;
        /* margin-bottom: 22px; */
    }
    .art-main-nav-mobile {
        display: block;
    }
    .art-main-subnav-content {
        border: unset;
        /* width: 79%; */
        flex-basis: auto;
    }
    .art-main-subnav-content {
        display: none;
    }
}





.tbuttonpress.mini {
    line-height: 27px;
    font-size: 12px !important;
    padding-left: 23px;
    padding-right: 23px;
    margin-top: 2px;
    /* width: 38px; */
    height: 32px;
    text-align: center;
    justify-content: center;
    background: #ebf1ff;
}
.tbuttonpress.mini .tbuttonpress-icon {
    font-size: 18px !important;
    margin-left: 7px;
    margin-right: 1px;
}
.tbuttonpress.white {
    border: none;
}
.tbuttonpress.white i {
    color: #566877;
}
.tbuttonpress.full {
    border: none;
    cursor: pointer;
    border-radius: 50px;
    overflow: hidden;
    opacity: 1;
    background: var(--color-master) !important;
    font-weight: 400;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 7px;
}
.tbuttonpress.full:hover {
    background: #f3f7f7;
    opacity: 0.8;
    color: #fff !important;
}
.tbuttonpress.circle-bk {
    line-height: 35px;
    font-size: 12px !important;
    width: 37px;
    height: 37px;
    border-radius: 50px;
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 0;
    background: var(--container-background);
    border: none;
    /* margin-bottom: 6px; */
    margin-right: 2px;
}
.tbuttonpress.circle-bk.full 
{
    background: var(--color-master);
}
.tbuttonpress.circle-status .tbuttonpress-icon {
    display: none;
}
.tbuttonpress.circle-bk .tbuttonpress-icon {
    font-size: 16px !important;
    color: #566877;
    text-align: center;
    padding: 0;
    margin: 0;
}
.tbuttonpress.circle-bk.red * {
    color: #E74C3C !important;
}
.tbuttonpress.circle-bk.green * {
    color: #2ecc71 !important;
}
.spinner {
    /* margin: 100px auto 0; */
    width: 70px;
    text-align: center;
}
.spinner>div {
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}
@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
.blockOverlay {
    background-color: var(--color-master) !important;
    opacity: 0.6 !important;
}
.cls-content-sm {
    background: #ffffff !important;
}
.blockUI {
    z-index: 9999!important;
}
.notiny-theme-dark {
    background-color: var(--color-master);
    margin-right: -1px;
    margin-top: 20px;
    border-radius: 9px;
    opacity: 1;
}
.page-header-top {
    border-bottom: none;
    margin-bottom: 15px;
    /* border-bottom-style: dashed; */
    /* text-align: right; */
}
.page-header-top h1 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 4px;
    color: var(--color-master);
    margin-bottom: 15px;
}
.page-header-top h2 {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 2px;
    text-transform: unset;
}
.page-header-top h1 i {}
.saudacao {
    padding: 20px;
    font-size: 15px;
}
.tbuttondrop a:hover {
    text-decoration: none;
    color: var(--color-master) !important;
    outline: 0 !important;
}
.mnp-name {
    font-size: 15px !important;
}
.mnp-desc {
    font-size: 14px !important;
    font-weight: 600 !important;
}
.mnp-desc i {
    font-size: 19px;
    margin-right: 5px;
}
.tformstruct-filter-number {
    background: var(--color-master);
}
.tformstruct-separator {
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 14px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--color-lines);
    color: var(--link-color);
    font-size: 17px;
    font-weight: 600;
    /* display: flex; */
    /* gap: 5px; */
    align-items: center;
}
.tformstruct-separator i 
{
    font-size: 15px;
}
.content-turma {
    background: #eee;
    width: 100%;
    padding: 12px;
    color: #ffff;
    min-height: 190px;
    text-align: center;
}
.content-turma hr, .content-turma2 hr, .content-turma3 hr, .content-turma-pagina hr, .content-matricula hr, .content-info hr {
    border-color: #fff;
    margin-top: 7px;
    margin-bottom: 7px;
    border-style: dotted;
}
.content-turma2 {
    background: #eee;
    padding: 12px;
    color: #ffff;
    text-align: center;
    height: 100%;
}
.content-turma3 {
    background: #eee;
    width: 100%;
    padding: 12px;
    color: #ffff;
    text-align: center;
}
.content-turma-pagina {
    background: #eee;
    width: 100%;
    padding: 12px;
    color: #ffff;
    text-align: left;
}
.content-info {
    width: 100%;
}
.content-matricula {
    background: #eee;
    width: 100%;
    padding: 12px;
    color: #ffff;
    display: inline-flex;
}
#container .table th {
    color: #7a878e;
}
.content-foto {
    font-size: 40px;
    background: #fff;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 56px;
    border-radius: 300px;
    margin-right: 15px;
    display: inline-table;
    color: #7a878e;
}
.content-botoes {
    margin-top: 4px;
    padding-top: 7px;
}
.content-total {
    background: #fff;
    color: #7a878e;
    padding: 6px;
    margin-top: 5px;
    /* margin-bottom: 5px; */
    /* display: inline-flex; */
}
.notiny-container {
    margin-top: 39px;
}
.tformstruct-actions {
    margin-bottom: 0px;
    /* margin-top: 18px; */
    padding-top: 0;
    /* border-top: 1px solid #e1e9e9; */
}
.icon-page {
    background: var(--color-master);
    color: #ffffff;
    height: 40px;
    width: 40px;
    text-align: center;
    padding-top: 8px;
    font-size: 24px;
    float: left;
    margin-right: 10px;
}
.tpagenavigation {
    padding-top: 22px;
    padding-bottom: 20px;
    margin-bottom: 24px;
}
.TNotify-error {
    color: var(--color-master);
}
.TNotify-success {
    color: #65c6bb;
}
.TNotify-info {
    color: #1E90FF;
}
.TNotify-warning {
    color: #F4B350;
}
.TNotify-alert {
    color: #F4B350;
}
.TNotify-quest {
    color: #abb7b7;
}
.TNotify-error-bk {
    background: var(--color-master) !important;
}
.TNotify-success-bk {
    background: #65c6bb !important;
}
.TNotify-info-bk {
    background: var(--color-master) !important;
}
.TNotify-warning-bk {
    background: #F4B350 !important;
}
.TNotify-alert-bk {
    background: #F4B350 !important;
}
.TNotify-quest-bk {
    background: #abb7b7 !important;
}
.tdatagridresponsive-count {
    color: var(--color-master);
}
.tbuttonpress span {
    vertical-align: unset;
    line-height: unset;
}
.text-main, a.text-main:hover, a.text-main:focus {
    color: #7a878e;
}
.navbar-top-links>li>a>i {
    font-size: 34px;
    line-height: 1em;
    vertical-align: middle;
    color: #7a878e;
}
.fc-time-grid .fc-slats td {
    height: 79px;
    border-bottom: 0;
}
.fc-event {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 1.3;
    border-radius: 0px;
    border: 1px solid #3a87ad;
    font-weight: normal;
}
.fc-event .fc-bg {
    z-index: 1;
    background: transparent;
    opacity: .25;
}
.fc-ltr .fc-time-grid .fc-event-container {
    margin: 0;
}
.content-dia {
    font-size: 18px;
    margin-bottom: 8px;
}
.fc-time-grid .fc-event, .fc-time-grid .fc-bgevent {
    position: absolute;
    z-index: 1;
    cursor: pointer;
}
.fc-time-grid:hover .fc-event:hover, .fc-time-grid:hover .fc-bgevent:hover {
    opacity: 0.9
}
.bar-logan {
    text-align: center;
    /* padding-top: 39px; */
}
.bar-nav {
    background: var(--color-bkg);
    padding: 14px;
    text-align: center;
    overflow-x: auto;
    width: 100%;
}
.bar-nav2 {
    background: #fff;
    text-align: center;
    overflow-x: auto;
    width: 100%;
    display: none;
}
.content-line {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}
.tpagecontainer {
    margin: auto;
    /* margin-top: 30px; */
}
.tpagecontainer-box {
    border-radius: 9px;
    padding: 37px;
}
.page-header-tag {
    margin-bottom: 10px;
    /* border-bottom: 1px solid var(--color-lines); */
    /* padding-bottom: 5px; */
    /* margin-top: 5px; */
}
.tformtruct-tab>label:hover::after, .tformtruct-tab>input:focus+label::after, .tformtruct-tab>input:checked+label::after {
    background: var(--color-master);
}
.tformtruct-tab>input:checked+label {
    border-color: transparent;
    border-bottom: 1px solid #fff;
    color: var(--color-master);
    text-transform: none;
    font-size: 18px;
    font-weight: 600 !important;
    margin-bottom: 31px;
    padding-left: 13px;
    padding-right: 13px;
}
.tformtruct-tab>label {
    padding-bottom: 31px;
    text-transform: unset;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 18px;
    padding-top: 13px;
    padding-bottom: 7px;
    position: relative;
}
.tformtruct-tab i::not(tformtruct-panels) {
    font-size: 15px;
    float: left;
    margin-right: 5px;
    line-height: 17px;
    padding-left: 5px;
}
.tformtruct-tab-label {
    float: none;
    /* margin-left: 7px; */
    font-weight: 600;
}
.tformtruct-tab>label::after {
    background: transparent;
}
.tformtruct-tab>label::after {
    content: "";
    position: absolute;
    left: 0px;
    width: 100%;
    height: 4px;
    border-radius: 22px;
    top: 46px;
}
textarea {
    padding-top: 15px;
    padding-bottom: 15px;
}
.tformstruct input:focus, .tformstruct textarea:focus {
    /* box-shadow: none; */
    /* border: 1px solid #aeb7b7; */
    /* border-radius: 24px; */
}
.tfield_disabled {
    height: var(--field-heigth);
    color: var(--field-text-color);
    font-size: var(--field-font-size);
    /* background: #e1e9e9 !important; */
    box-shadow: none;
    border-radius: 24px;
    /* border: 1px solid #e1e9e9 !important; */
    padding-left: 21px;
    padding-right: 21px;
}
.tpagecontainer-box {
    /* background: #ffffff; */
    border-radius: 0;
    /* background: #eee; */
    border-bottom: none;
    padding: 0 !important;
    margin: 0 !important;
}
.tdatagridresponsive thead tr th {
    padding-bottom: 10px;
    font-weight: 400 !important;
    text-transform: unset;
    padding-right: 14px;
}
.tdatagridresponsive-reduced-box a {
    color: #7a878e;
    /* border: 1px solid #e1e9e9; */
    background: transparent;
    border-radius: 65px;
    height: 30px;
    padding-top: 1;
    width: 30px;
    text-align: center;
    /* display: inline-grid; */
    margin-right: 0px;
}
#mainnav-menu a {
    display: block;
    color: #7a878e;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 5px;
    font-size: 15px !important;
}
.menu-title {
    color: var(--link-color);
    font-size: 16px;
}
.menu-check {
    color: var(--color-master) !important;
}
.icon-profile {
    border: 1px solid #e1e9e9;
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 52px;
    /* padding-top: 17px; */
    text-align: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-profile i {
    font-size: 25px;
    color: #7a878e;
}
.icon-service {
    background: #e1e9e9;
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 52px;
    padding-top: 13px;
    text-align: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.icon-service i {
    font-size: 20px;
    color: #7a878e;
}
.icon-profile2 {
    width: 25px;
    height: 25px;
    /* margin: auto; */
    flex-shrink: 0;
    border-radius: 52px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    background: var(--container-background);
}
.icon-unit2 {
    background: #e1e9e9;
    width: 55px;
    height: 55px;
    border-radius: 52px;
    padding-top: 14px;
    text-align: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-bottom: 8px;
    font-size: 19px;
    color: #7a878e;
}
.icon-profile2-i {
    font-size: 22px;
    color: #7a878e;
    margin-top: -3px;
}
.icon-profile3 {
    background: #f9fafa;
    width: 47px;
    height: 47px;
    margin: auto;
    border-radius: 52px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border: 2px solid var(--color-lines);
    font-size: 17px;
    text-align: center;
    /* margin-bottom: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.icon-profile3 i {
    font-size: 18px;
    color: #7a878e;
}
.icon-profile4 {
    background: var(--background-helper);
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 52px;
    padding-top: 9px;
    text-align: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-bottom: 3px;
    font-size: 15px;
    cursor: pointer;
    position: relative;
}
.icon-profile4-i {
    font-size: 22px;
    color: #7a878e;
    margin-top: -3px;
}
.list-group {
    margin-bottom: 20px;
    padding-left: 0;
    margin-top: 11px;
}
.TNotify-modal {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    padding: 23px;
    border-radius: 0px;
    display: none;
    margin-top: -20%;
    text-align: center;
    border-radius: 24px;
}
.TNotify-title2 {
    font-size: 18px;
    /* color: #047afd !important; */
    font-weight: 300;
}
.notiny-default-vars .notiny-text {
    color: #fff;
}
.bootstrap-select>.dropdown-toggle {
    border-radius: 24px;
    padding-left: 23px;
    padding-right: 31px;
}
.bs-searchbox .form-control {
    /* border: 1px solid var(--border-color) !important; */
    font-size: 13px;
    border-radius: 24px;
    height: 34px;
    /* background: var(
    --search-background); */
}
.select2-container--focus .select2-dropdown, .select2-container--focus .select2-selection, .select2-container--open .select2-dropdown, .select2-container--open .select2-selection {
    border: 1px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
    padding: 9px;
    border-radius: 0px 0px 20px 20px !important;
}
.select2-container--default .select2-selection--single {
    border: 1px solid var(--color-border);
    border-radius: 24px !important;
    padding-left: 16px;
    padding-right: 20px;
    padding-top: 2px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    padding: 2px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    /* border: 1px solid var(--color-lines) !important; */
    height: var(
    --field-heigth);
    border-radius: 24px;
    padding-left: 21px;
    padding-right: 21px;
    background: var(--search-background);
}
.select2-container--open .select2-dropdown--below {
    border-top: none;
    margin-top: 0px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    padding-left: 0px;
    padding-top: 0px;
    line-height: 30px;
}
.ui-widget.ui-widget-content {
    border: none;
    border-radius: 0px;
    padding-top: 2px;
    padding-left: 46px;
    padding-right: 46px;
    padding-bottom: 46px;
    background: #fff;
    border-radius: 24px;
}
.media-left, .media>.pull-left {
    padding-right: 16px;
}
.profile-title {
    color: var(--link-color);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 18px;
}
.profile-title2 {
    color: var(--link-color);
    font-size: 12px;
    text-transform: uppercase;
    line-height: 15px;
}
.tdatagridresponsive-empty {
    border: none;
}
.tbuttonpress-icon {
    background: transparent;
    color: var(--color-master);
    width: 20px;
    display: grid;
    padding-left: 0px;
    height: unset;
}
.tbuttonpress-icon i {
    padding-left: 0px;
}
.small {
    font-size: 13px;
}
.contract-content {
    text-align: center;
    font-size: 13px;
}
.panel-title {
    color: var(--color-master);
}
.order-title {
    font-size: 23px;
    color: var(--link-color);
}
.page-title2 {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 23px;
}
.xdebug-error th {
    background: #fff;
}
.message-alert {
    padding: 9px;
    color: #fff;
    /* display: flex; */
    border-radius: 8px;
    /* margin-top: 10px; */
    /* margin-left: 10px; */
    margin-right: 10px;
    margin-bottom: 6px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
}

.external-area {
    max-width: 600px;
    margin: auto;
    text-align: center;
    width: 100%;
}
.external-area-logo {
    padding: 10px;
    text-align: center;
    padding-top: 44px;
    margin-bottom: 33px;
}
.external-area-logo img {
    width: 117px !important;
}
.external-area-display {
    margin-top: 40px;
    text-align: center;
    font-weight: 100;
    font-size: 30px;
    line-height: 35px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.external-area-content {
    /* margin-top: -20px; */
}
.box-tip {
    max-width: 400px;
    margin: auto;
    text-align: center;
    margin-top: 25px;
}
.box-tip-icon {
    font-size: 45px;
    line-height: 91px;
    background: var(--color-master);
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 1200px;
    margin: auto;
}
.box-tip-image {
    width: 100%;
    height: auto;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.box-tip-video {
    width: 100%;
    height: 200px;
    border: none;
}
.box-tip-title {
    font-size: 30px;
    color: var(--link-color);
    margin-top: 16px;
    line-height: 34px;
}
.box-tip-text {
    margin-top: 19px;
    margin-bottom: 15px;
}
.box-tip-text i {
    color: var(--color-master)
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-master);
    width: 14px;
    height: 14px;
}
.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
}
.box-tip-help {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
}
.box-tip-help i {
    display: block;
    font-size: 28px;
}
.pace {
    position: fixed;
    width: 100%;
    height: 3px;
    z-index: 99999 !important;
    top: 0;
    left: 0;
}
.profile-info {
    font-size: 13px;
}
.profile-info2 {
    font-size: 15px;
}
.period-icon {
    background: var(--color-master);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    text-align: center;
    padding-top: 3px;
}
.period-icon i {
    font-size: 16px;
}
.period-title {
    margin-top: -3px;
    /* font-weight: 700; */
    /* font-size: 16px; */
}
.bar-content {
    width: 56px;
    height: 100%;
    text-align: center;
    margin-right: 27px;
    /* border-right: 1px solid #ddd; */
    /* background: #eee; */
    border-radius: 10px;
}
.bar-icon {
    display: block;
    font-size: 21px;
    width: 40px;
    height: 40px;
    margin-bottom: 7px;
    text-align: center;
    border-radius: 50px;
    padding-top: 5px;
    /* color: #fff; */
    margin-left: auto;
    margin-right: auto;
    background: #e1e9e9;
}
.bar-icon:hover {
    color: var(--link-color);
    opacity: 0.6;
}
.bar-icon-check {
    background: var(--color-master) !important;
    color: #fff !important;
}
.bar-icon-check:hover {
    opacity: 0.8;
    color: inherit;
}
.bar-content hr {
    border-color: #fff;
    margin-top: 35px;
    margin-bottom: 35px;
}
.bar-status {
    display: block;
    font-size: 15px;
    width: 30px;
    height: 30px;
    margin-bottom: 11px;
    text-align: center;
    border-radius: 50px;
    padding-top: 5px;
    color: #fff !important;
    margin-left: auto;
    float: left;
    margin-right: 7px;
    margin-top: -3px;
}
.bar-status:hover {
    opacity: 0.8;
    color: #fff;
}
.status-reserved {
    background: var(--color-master);
}
.status-confirm {
    background: #1fb9d8;
}
.status-wait {
    background: #566877;
}
.status-command {
    background: #F39C12;
}
.status-pass-active {
    background: #dfae4a;
}
.status-reserved .tbuttonpress {}
.status-reserved .tbuttonpress i {
    /* color: #913D88 !important; */
}
.status-free {
    background: #2ecc71;
}
.status-free .tbuttonpress {}
.status-free .tbuttonpress i {}
.status-block {
    background: #2C3E50;
}
.status-block .tbuttonpress {
    border: 2px solid #2C3E50;
}
.status-block .TButtonPress i {
    color: #2C3E50 !important;
}
.status-deleted {
    background: #6a7a87;
}
.status-miss {
    background: #EF4648;
}
.status-miss .tbuttonpress {}
.status-miss .tbuttonpress i {}
.status-pass {
    background: #95A5A6;
}
.status-pass .tbuttonpress {
    border: 2px solid #95A5A6;
}
.status-pass .tbuttonpress i {
    color: #95A5A6 !important;
}
.status-attended {
    background: #A1BD3D;
}
.status-attended .tbuttonpress {
    border: 2px solid #4DAF7C;
}
.status-attended .tbuttonpress i {
    color: #4DAF7C !important;
}
.day-current {
    color: var(--color-master);
}
.day-next {
    color: var(--color-master);
}
.day-next .calendar-box-day-week, .day-next .calendar-box-day-title {
    color: var(--color-master) !important;
}
.day-next .calendar-box-day-toggle a {
    color: var(--color-master) !important;
    border-color: var(--color-master) !important;
}
.day-pass .calendar-box-day-week, .day-pass .calendar-box-day-title {
    color: #adb9bf !important;
}
.day-pass .calendar-box-day-toggle a {
    color: #adb9bf !important;
    border-color: #adb9bf !important;
}
.bar-time {
    margin-left: -17px;
    width: 85px;
    height: 100%;
    text-align: center;
}
.calendar-box-day {
    color: var(--color-master);
    height: 106px;
    text-align: center;
    padding-top: 16px;
    border-radius: 10px;
    width: 84px;
    margin-right: 15px;
    flex-basis: 85px;
    flex-shrink: 0;
}
.calendar-box-day-title {
    font-size: 35px;
    color: #fff;
}
.calendar-box-day-week {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}
.calendar-box-day-title {
    font-size: 35px;
    color: #fff;
    margin-top: -9px;
    font-weight: 600;
    margin-bottom: -4px;
}
.calendar-box-day-month {
    font-size: 17px;
    color: #fff;
    margin-top: -5px;
}
.calendar-box-day-year {
    font-size: 15px;
    color: #fff;
}
.calendar-box-day-toggle i {
    font-size: 23px;
}
.calendar-box-time {
    display: flex;
    margin-bottom: 4px;
    /* margin-top: 16px; */
    padding-left: 4px;
}
.calendar-box-time-value {
    color: #7a878e;
    font-size: 14px;
    text-align: right;
    /* position: relative; */
    display: flex;
    margin-right: 25px;
}
.calendar-box-time-value.pass {
    color: #d4d4d4;
}
.calendar-box-time-value-pass {
    color: #ccc;
    font-size: 16px;
    text-align: right;
    display: flex;
}
.calendar-box-offers {
    /* overflow: scroll; */
    /* padding-right: 4px; */
    min-width: 305px;
}
.calendar-box-offers-data {
    /* background: #fff; */
    height: 123px;
    border: 1px solid var(--color-lines);
    border-radius: 14px;
    padding: 15px;
    padding-right: 3px;
    margin-bottom: 4px;
}
.calendar-box-offers-data:hover {}
.calendar-box-offers-data2 {
    background: #fff;
    height: 120px;
    margin-top: 13px;
    margin-left: 8px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
}
.calendar-box-offers-data2:hover {
    border-color: #ccc;
}
.calendar-box-offers-data {
    display: flex;
    align-items: center;
    position: relative;
    overflow-y: auto;
}
.calendar-box-offers-column3 {
    width: 70%;
}
.calendar-box-offers-column2 {
    margin-right: 9px;
    border-right: 1px solid #e1e9e9;
    padding-right: 9px;
    /* width: 110px; */
}
.calendar-box-offers-column2 .profile-title {
    font-size: 14px;
    text-align: center;
}
.calendar-box-offers-action {
    width: 40px;
    height: 40px;
    border-radius: 24px;
    margin-right: 9px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    font-size: 21px;
    flex-basis: 40px;
    flex-shrink: 0;
    display: grid;
    align-items: center;
}
.calendar-box-offers-action.check {
    opacity: 0.6 !important;
}
.calendar-box-offers-action i {}
.calendar-box-offers-action:hover {
    opacity: 0.8;
}
.calendar-box-day-toggle a {
    background: #dee5f1;
    /* color: var(--color-master); */
    border-radius: 50px;
    width: 25px;
    height: 25px;
    display: block;
    display: flex;
    align-items: center;
    margin-right: 3px;
}
.calendar-box-day-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
}
.calendar-box-day-toggle a:hover {
    opacity: 0.8;
    color: var(--color-master);
}
.calendar-full {
    padding: 0;
    width: 100%;
    display: inline-block;
    margin-bottom: 19px;
    max-width: 370px;
}
.calendar-pointer-content {
    display: flex;
    justify-content: center
}
.calendar-pointer {
    width: 7px;
    height: 7px;
    /* border-radius: 100px; */
    border-radius: 100%;
}
.calendar td {
    text-align: center;
    vertical-align: middle;
    padding: 4px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: #7a878e;
}
.other-month {
    opacity: 0.5;
}
.calendar-box-month-toggle {
    border-radius: 50px;
    height: 35px;
    width: 35px;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    color: #fff !important;
    background: var(--color-master);
    font-size: 23px;
}
.calendar-box-month-toggle:hover {
    opacity: 0.8;
    color: #ddd
}
.calendar td:hover {
    background: #f0f3f8;
    border-radius: 70px;
    cursor: pointer;
    /* color: #fff !important; */
    opacity: 1;
}
.calendar-day-select {
    background: #e4e7eb;
    /* color: #fff !important; */
    border-radius: 70px;
    color: #7a878e;
    cursor: pointer;
}
.calendar-day-holiday {
    color: #D64541 !important;
    font-weight: 600;
}
.calendar-day-current {
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    color: var(--link-color) !important;
}
.calendar-day-special {
    /* font-weight: 600; */
}
#calendar-current {
    cursor: pointer;
    margin-top: -9px;
}
.calendar-day-pass {
    /* opacity: 0.2; */
    text-decoration: line-through;
}
.calendar-box-offers-action-sub {
    display: none;
    padding-left: 5px;
    border-radius: 12px;
    margin-left: -6px;
    z-index: 99;
    /* height: 100%; */
    background: unset;
}
.trace {
    background: #e1e9e9;
    width: 1px;
    height: 100%;
    margin: auto;
    /* z-index: 25; */
}
.time-ball {
    border: 2px solid #7a878e;
    /* background: #fff; */
    width: 10px;
    height: 10px;
    border-radius: 67px;
    margin-top: 6px;
    margin-right: 5px;
    margin-left: 0;
}
.time-ball.pass {
    background: #eee !important;
    border-color: #eee !important;
}
.time-ball.blue {
    background: var(--color-master);
    border-color: var(--color-master);
}
.display-offer {
    display: inline-grid;
    padding: 19px;
    padding-left: 17px;
    padding-right: 17px;
    border-radius: 6px;
    color: #fff;
    margin-bottom: 13px;
}
.active-btn {
    /* background: #fff !important; */
    color: #fff!important;
    border: 1px solid #fff;
}
.content-info {
    margin-top: 15px;
    margin-bottom: 15px;
}
.info-title {
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
    margin-bottom: 7px;
}
.info-text {
    font-size: 15px;
}
.customer-profile-small .icon-profile2 {
    padding-top: 14px !important;
    width: 40px;
    height: 40px;
}
.week-heading th {
    text-align: center;
    padding: 5px;
}
.month-heading {
    padding: 39px;
}
.month-heading th {
    text-align: center;
    padding-bottom: 13px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 21px;
}
.customer-profile {
    display: flex;
    cursor: pointer;
}
.customer-profile:hover {
    opacity: 0.8
}
.customer-profile-small {
    text-align: center;
    cursor: pointer;
    transform: translateY(-50%);
    top: 50%;
    position: relative;
}
.customer-profile-small:hover {
    opacity: 0.6;
}
.bar-photo {
    border-radius: 10px 10px 50px 50px;
    padding-top: 15px;
    margin-bottom: 17px;
}

/*.ui-dialog
{
width: 100% !important;
border-radius: 24px 24px 0px 0px !important;
bottom: 0px;
height: auto !important;
top: 20% !important;
}
.ui-dialog-content
{
height: 75vh !important;
}*/

.ui-button {
    border: 2px solid var(--color-master) !important;
    width: 35px !important;
    height: 35px !important;
    background: #fff !important;
}
.ui-state-active .ui-icon, .ui-button:active .ui-icon {
    background-image: url('images/ui-icons_777777_256x240.png') !important;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background-image: url('images/ui-icons_777777_256x240.png') !important;
}
.tdatagridresponsive-empty {
    text-align: center;
}
.ui-dialog .ui-dialog-titlebar-close {
    right: -22px;
}
.display-offer-data {
    color: #fff;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 8px;
    margin-bottom: 9px;
    text-align: left;
    width: 100%;
    display: table-cell;
}
.display-offer-day {
    font-weight: 600;
    font-size: 20px;
}
.display-offer-month {}
.display-offer-year {}
.display-offer-hour {
    /* margin-top: 11px; */
}
.bell-box {
    border-bottom: 1px solid #e1e9e9;
    padding-bottom: 10px;
    padding-top: 10px;
}
.bell-date {
    color: var(--color-master);
    font-size: 12px;
}
.no-hour {
    font-size: 35px;
    margin: auto;
    margin-top: 12px;
}
.offers-data-indented {
    margin-left: 45px;
}
.offers-data-indented:before {
    width: 1px;
    content: '\f061';
    margin-left: -38px;
    position: absolute;
    background: #e1e9e9;
    height: 74px;
    margin-top: -14px;
    font-family: 'FontAwesome';
    padding-top: 63px;
    color: #e1e9e9;
}
.offers-data-indented-separator {
    width: 1px;
    margin-left: -38px;
    position: absolute;
    background: #e1e9e9;
    height: 74px;
    margin-top: -14px;
    padding-top: 63px;
    color: #e1e9e9;
}
.slot-interval {
    height: 33px !important;
    margin-top: 13px;
    /* margin-left: 8px; */
    border: 1px solid var(--color-lines);
    background: var(--color-lines);
    border-radius: 14px;
    padding: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 13px;
}
.slot-interval i {
    margin-right: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    margin-top: 9px;
}
.btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    padding-left: 19px;
    padding-right: 19px;
}
.profile-name {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--link-color);
}
.enjoyer-attr {
    /* position: absolute; */
    /* margin-left: 41px; */
    margin-top: -4px;
    /* margin-bottom: 5px; */
    display: flex;
    justify-content: center;
}
.enjoyer-attr i {
    font-size: 11px;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    line-height: 14px;
    float: unset;
    margin-right: 3px;
    color: #fff;
    text-align: center;
    margin-top: 3px;
}
div.color-div .tfield {
    border-radius: 24px 0px 0px 24px;
}
div.color-div span.tcolor {
    border: 1px solid #e1e9e9 !important;
    border-radius: 1px 4px 4px 0;
    background-image: unset !important;
    padding-top: 11px;
    padding-left: 7px;
    padding-right: 7px;
}
.box-help {
    border: none;
    color: var(--self-help-color-blue);
    padding: 12px;
    border-radius: 10px;
    display: table;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 13px;
    background: var(--self-help-background-blue);
}
.box-help a 
{
    color: var(--color-master);
    text-decoration: underline;
}
.link-info-view {
    color: var(--color-master);
    font-size: 19px;
}
.info-view-title {
    font-size: 20px;
    color: var(--color-master);
    font-weight: 600;
    margin-bottom: 13px;
}
.link-alert {
    color: #fff !important;
    font-weight: 600;
    margin-left: 0;
    padding-left: 0;
    text-decoration: underline;
}
.menu-i {
    font-size: 19px;
    width: 28px;
    line-height: 25px;
    color: var(--color-master)
}
.bar-photo .icon-profile2 {
    width: 45px;
    height: 45px;
    margin-bottom: 0px;
    padding-top: 9px;
}
.offers-check {
    background: var(--datagrid-check-background);
}
.dropdown {
    position: relative;
}
.select2-selection__placeholder {
    display: contents;
}
.select2-container .select2-selection--single .select2-selection__arrow {
    margin-top: 1px;
    padding-right: 42px;
}
.page-special {
    display: flex;
}
.time-list {
    /* position: absolute; */
    /* margin-left: 7px; */
    font-size: 14px;
    font-weight: 300;
}
.calendar-content-service {
    line-height: 16px;
    font-size: 13px;
}
.info-extra {
    display: flex;
}
.reserve-info-content {
    margin-top: 5px;
}
.dbl-spinner {
    position: absolute;
    width: 40px;
    margin: auto;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid transparent;
    border-top: 4px solid #ddd;
    border-left: 4px solid #ccc;
    -webkit-animation: 2s spin linear infinite;
    animation: 2s spin linear infinite;
}
.dbl-spinner:nth-child(2) {
    border: 4px solid transparent;
    border-right: 4px solid var(--color-master);
    border-bottom: 4px solid var(--color-master);
    -webkit-animation: 1s spin linear infinite;
    animation: 1s spin linear infinite;
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.preloader {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 59px;
    margin-top: 44px;
}
#message1 {
    color: var(--color-master);
    font-weight: 600
}
#icon {
    color: var(--color-master);
    margin-top: 42px;
    font-size: 37px;
}
.tbuttonpress.clear {
    background: transparent;
    color: var(--color-button);
    border: none;
    height: 30px;
    margin-bottom: 0px;
}
.column-profile-content {
    /* transform: translateY(-50%); */
    /* top: 50%; */
    /* position: relative; */
    text-align: center;
    cursor: pointer;
}
.fb-drop .tbuttondrop-btn {
    background: #e1e9e9;
    width: 40px;
    height: 40px;
    text-align: center;
    color: var(--link-color);
    padding: 0;
    border: none;
}
.fb-drop .tbuttondrop-btn i {
    color: var(--link-color);
    padding: 0px;
    font-size: 18px;
}
.fb {
    background: #e1e9e9;
    width: 40px;
    height: 40px;
    text-align: center;
    color: var(--link-color);
    padding: 0;
    border: none;
}
.fb i {
    color: var(--link-color);
    padding: 0px;
    font-size: 18px;
}
.fb:hover, .fb:hover * {
    background-color: var(--color-master);
    color: #fff;
    opacity: 1;
}
.fb .tbuttonpress-icon {
    background: red;
    margin: auto;
    display: contents;
}
.fb-large {
    background: #e1e9e9;
    /* width: 40px; */
    height: 40px;
    text-align: center;
    color: var(--link-color);
    padding: 0;
    border: none;
    line-height: 24px !important;
}
.fb-large i {
    color: var(--link-color);
    padding: 0px;
    font-size: 18px;
}
.fb-large:hover {
    background: var(--color-master);
    color: #fff;
    opacity: 1
}
.content-filter {
    width: 100%;
    height: 113px;
    display: flex;
    margin-top: 14px;
    align-items: center;
}
.calendar {
    width: 100%;
    border-collapse: separate;
    table-layout: fixed;
    display: block;
}
.sale-data-content {
    display: flex;
    /* width: 271px; */
    margin-top: 15px;
    color: #fff;
    margin-bottom: 15px;
}
.sale-data-day {
    text-align: center;
    padding: 7px;
    background: #f0f3f8;
    border-radius: 10px;
    cursor: pointer;
    width: 150px;
    font-size: 18px;
    display: grid;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
}
.sale-data-info {
    padding: 10px;
    padding-top: 15px;
    background: #e1e9e9;
    width: 30%;
    text-align: center;
    line-height: 17px;
    border-right: 3px solid #c4d0d0;
}
.sale-data-control {
    background: gray;
}
.sale-data-day-week {
    font-size: 14px;
    /* margin-top: 2px; */
}
.sale-data-day-current {
    font-weight: 600;
    font-size: 29px;
    margin-top: -8px;
}
.sale-card-content {
    display: flex;
    max-width: 342px;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid #e1e9e9;
    margin-bottom: 11px;
}
.sale-card-content2 {
    display: flex;
    max-width: 204px;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid #e1e9e9;
    margin-bottom: 11px;
}
.sale-card-value {
    color: var(--color-master);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
    white-space: nowrap;
}
.sale-card-info {
    max-width: 146px;
    padding-left: 14px;
    padding-top: 14px;
}
.sale-card-customer {
    width: 101px;
    text-align: center;
    border-right: 1px solid #e1e9e9;
}
.sale-card-check {
    width: 17px;
    padding-left: 6px;
    padding-top: 0px;
    text-align: center;
    border-right: 1px solid #e1e9e9;
}
.sale-card-check .check-container {
    margin-top: 9px;
    margin-left: -14px;
}
.sale-card-balls {
    display: flex;
}
.ball-title {
    background: #f0f5f5;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    text-align: center;
    padding-top: 4px;
    margin-right: 3px;
    color: #7a878e;
    margin-top: 3px;
}
.ball-title .fa {
    font-size: 12px;
    padding-top: 5px;
}
.sale-card-actions {
    width: 46px;
}
.sale-data-value {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    margin-top: -5px;
}
.sale-data-total {
    width: 40%;
    /* background: #e1e9e9; */
    /* padding-top: 10px; */
    border-radius: 0px 10px 10px 0px;
    padding-left: 12px;
}
.summary-total {
    font-weight: 600;
    font-size: 17px;
    width: fit-content;
    border-radius: 10px;
    color: var(--color-master);
    /* padding: 11px; */
    font-size: 16px !important;
}
.sale-price-total {
    font-weight: 600;
    color: var(--color-master);
    font-size: 18px;
}
.sale-card-service {
    margin-right: 10px;
}
.sale-card-price {
    margin-top: -1px;
}
.sale-card-total {
    background: var(--color-master);
    width: auto;
    max-width: 140px;
    text-align: center;
    display: flex;
    font-weight: 600;
    border-radius: 29px;
    color: #fff;
    padding: 6px;
    padding-left: 17px;
    font-size: 17px;
    padding-right: 17px;
    /* padding-top: 8px; */
    margin-right: 14px;
}
.sale-card-total2 {
    background: var(--color-master);
    width: auto;
    text-align: center;
    display: table;
    font-weight: 600;
    border-radius: 29px;
    color: #fff;
    padding: 6px;
    padding-left: 17px;
    font-size: 19px;
    padding-right: 17px;
    /* padding-top: 8px; */
    margin-right: 14px;
}
.sale-card-change {
    background: #7a878e;
    width: auto;
    text-align: center;
    display: flex;
    font-weight: 600;
    border-radius: 29px;
    color: #fff;
    padding: 6px;
    padding-left: 17px;
    font-size: 17px;
    padding-right: 17px;
}
.card-select {
    /* display: flex; */
    padding: 24px;
    border-radius: 10px;
    border: 2px solid var(--color-lines);
    margin-bottom: 13px;
    cursor: pointer;
    margin-right: 16px;
    max-width: 150px;
    width: 100%;
    text-align: center;
}
.card-select:hover {
    opacity: 0.8
}
.card-select.check {
    background: var(--color-master);
    border-color: var(--color-master);
    color: #fff;
    opacity: 1
}
.card-select.check .profile-title2 {
    color: #fff;
}
.TCurtain-content .tpagecontainer {}
.TCurtain-content {
    /* margin-top: -22px; */
}
.pulse {
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 #913D88;
    animation: pulse 2s infinite;
}
.pulse:hover {
    animation: none;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #913D88;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #913D88;
        box-shadow: 0 0 0 0 #913D88;
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
.pulse-red {
    border-radius: 50% !important;
    cursor: pointer;
    box-shadow: 0 0 0 #E74C3C;
    animation: pulse-red 2s infinite !important;
}
.pulse-red :hover {
    animation: none;
}
@-webkit-keyframes pulse-red {
    0% {
        -webkit-box-shadow: 0 0 0 0 #E74C3C;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
@keyframes pulse-red {
    0% {
        -moz-box-shadow: 0 0 0 0 #E74C3C;
        box-shadow: 0 0 0 0 #E74C3C;
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 7px rgba(204, 169, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
.pulse-orange {
    border-radius: 50% !important;
    cursor: pointer;
    box-shadow: 0 0 0 #f5ab35;
    animation: pulse-orange 2s infinite !important;
}
.pulse-orange :hover {
    animation: none;
}
@-webkit-keyframes pulse-orange {
    0% {
        -webkit-box-shadow: 0 0 0 0 #f5ab35;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
@keyframes pulse-orange {
    0% {
        -moz-box-shadow: 0 0 0 0 #f5ab35;
        box-shadow: 0 0 0 0 #f5ab35;
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
.pulse-blue {
    border-radius: 50% !important;
    cursor: pointer;
    box-shadow: 0 0 0 var(--color-master);
    animation: pulse-blue 2s infinite !important;
}
.pulse-blue :hover {
    animation: none;
}
@-webkit-keyframes pulse-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--color-master);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
@keyframes pulse-blue {
    0% {
        -moz-box-shadow: 0 0 0 0 var(--color-master);
        box-shadow: 0 0 0 0 var(--color-master);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}




.pulse-blue-square {
    border-radius: 20px !important;
    cursor: pointer;
    box-shadow: 0 0 0 #4B74E6;
    animation: pulse-blue 2s infinite !important;
}
.pulse-blue-square :hover {
    animation: none;
}
@-webkit-keyframes pulse-blue-square {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--color-master);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
@keyframes pulse-blue-square {
    0% {
        -moz-box-shadow: 0 0 0 0 var(--color-master);
        box-shadow: 0 0 0 0 var(--color-master);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

.pulse-green-square {
    border-radius: 20px !important;
    cursor: pointer;
    box-shadow: 0 0 0 #4B74E6;
    animation: pulse-green-square 2s infinite !important;
}
.pulse-green-square :hover {
    animation: none;
}
@-webkit-keyframes pulse-green-square {
    0% {
        -webkit-box-shadow: 0 0 0 0 #2ecc71;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
@keyframes pulse-green-square {
    0% {
        -moz-box-shadow: 0 0 0 0 #2ecc71;
        box-shadow: 0 0 0 0 #2ecc71;
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}


.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: transparent;
    font-size: 13px;
    text-align: center;
    margin: 0 5px;
    white-space: nowrap;
}
.entry-value-total {
    color: var(--link-color);
    font-size: 18px;
    font-weight: 600;
}
.control-content {
    position: fixed;
    right: 22px;
    bottom: 23px;
    display: grid;
}
.control-content a {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    background: var(--color-master);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    padding-top: 4px;
    font-size: 23px;
}
.control-content a:hover {
    opacity: 0.8
}
.push-card {
    border: 1px solid #e1e9e9;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 13px;
    display: flex;
    opacity: 0.5;
}
.push-info {
    color: #b8cad4;
    display: flex;
    font-size: 14px;
}
.push-icon {
    background: #e1e9e9;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    padding-top: 8px;
    margin-right: 13px;
}
.push-text {
    width: 90%;
}
.not-read {
    opacity: 1;
}
.click {
    cursor: pointer;
}
.card-important {
    background: #F5AB35;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    position: absolute;
    margin-top: -41px;
    margin-left: 37px;
}
.schedule-select {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.schedule-select-title {
    font-weight: 300;
    font-size: 23px;
    color: var(--link-color);
    text-align: center;
    margin-bottom: 26px;
    margin-top: 30px;
}
.subtitle-calendar {
    display: flex;
}
.subtitle-calendar div {
    width: 10px;
    height: 10px;
    /* border-radius: 50px; */
    float: left;
    margin-top: 4px;
    margin-right: 6px;
    border-radius: 100%;
}
.editormd-html-preview {
    font-size: 15px;
}
.editormd-html-preview p {
    margin-bottom: 20px;
}
.editormd-html-preview h1 {
    color: var(--link-color);
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.editormd-html-preview blockquote {
    border-color: var(--color-master);
    font-size: 15px;
    font-style: italic;
    padding-left: 0;
}
.editormd-html-preview code {
    color: var(--color-master);
    background: #ebf1ff;
    font-size: 15px;
    padding-left: 11px;
    padding-right: 11px;
}
.page-header-tag-title {
    color: var(--link-color);
    font-size: 18px;
    /* margin-bottom: 13px; */
    font-weight: 600;
}
.page-header-tag-menu {
    color: #b8c2c7;
    font-size: 13px;
}
.icon-helper {
    color: #fff;
    font-size: 20px;
    width: 30px;
    height: 30px;
    padding-right: 5px;
    background: var(--color-master);
    border-radius: 50px;
    text-align: center;
    padding-left: 5px;
    margin-top: 7px;
}
.page-header-tag-helper-content {
    border-right: 1px solid #e1e9e9;
    padding-right: 9px;
    margin-right: 9px;
    padding-top: 3px;
}
.logo-mobile {
    width: 40px;
    overflow: hidden;
    padding-top: 10px;
    margin-left: 12px;
    display: none !important;
}
.logo-mobile img {
    width: 120px;
}
.TCurtain-header button {
    width: 40px;
    height: 40px !important;
    border-radius: 50px;
    justify-content: unset !important;
    padding-top: 5px;
    /* margin-left: auto; */
    padding-left: 4px !important;
    padding-top: 2px;
    padding-right: 0 !important;
    background: #e1e9e9;
    border: none !important;
    cursor: pointer;
    color: var(--link-color);
    position: absolute;
    right: 12px;
}
.TCurtain-header button i {
    color: var(--color-master);
}
.tcombo_disabled {
    border-radius: 24px;
    padding-left: 19px;
    padding-right: 21px;
    border: 1px solid var(--color-border);
    background: var(--color-background-disable);
    height: var(
    --field-heigth);
    color: var(
    --field-text-color);
    font-size: var(
    --field-font-size);
}
.schedule-select-unit {
    color: var(--color-master);
    text-align: center;
    font-size: 17px;
    /* font-weight: 600; */
    margin-bottom: 19px;
}
.sale-card-delete {
    background: var(--color-master);
    width: 26px;
    height: 26px;
    border-radius: 50px;
    position: absolute;
    text-align: center;
    color: #fff;
    padding-top: 3px;
    cursor: pointer;
}
.art-logo {
    text-align: center;
    display: contents;
    width: auto;
    height: auto;
    cursor: pointer;
}
.tformtruct-button {
    color: var(--link-color);
}
.tformtruct-button.check {
    /* border-radius: 4px; */
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px;
    font-size: 13px;
}
.tformtruct-button i {
    font-size: 14px;
    color: var(--link-color);
}
hr {
    margin-top: 13px;
    margin-bottom: 13px;
    border: 0;
    border-top: 1px solid var(--color-lines);
}

/* Customize the label (the container) */

.check-container {
    display: block;
    position: relative;
    margin-top: 0px;
    margin-left: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    margin-top: 3px;
    border-radius: 50px;
    background-color: var(--color-lines);
}

/* On mouse-over, add a grey background color */

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

/* When the checkbox is checked, add a blue background */

.check-container input:checked~.checkmark {
    background-color: var(--color-master);
}

/* Create the checkmark/indicator (hidden when not checked) */

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

/* Show the checkmark when checked */

.check-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.check-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.summary-total3 {
    color: var(--link-color);
    font-size: 16px;
}
.preloader4 {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0px;
    border-radius: 100%;
    border: 5px solid;
    border-top-color: var(--color-master);
    border-bottom-color: rgba(0, 0, 0, 0.15);
    border-left-color: var(--color-master);
    border-right-color: rgba(0, 0, 0, 0.15);
    -webkit-animation: preloader4 0.8s linear infinite;
    animation: preloader4 0.8s linear infinite;
}
@keyframes preloader4 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes preloader4 {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
.content-filter hr {
    margin-top: 10px;
    margin-bottom: 10px;
}
.TNotify-title {
    color: var(--color-master);
}
.tbuttonpress.classic {
    padding-top: 5px;
    border: 2px solid #e1e9e9;
    cursor: pointer;
    border-radius: 50px;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 1px;
    height: 37px;
    /* border: none; */
    overflow: hidden;
    font-size: 13px !important;
    text-transform: uppercase;
    opacity: 1;
    font-weight: 400;
    color: var(--color-master) !important;
    background: #ebf1ff !important;
    border: none;
}
.tbuttonpress.classic i {
    display: none;
}
.tbuttonpress.classic:hover {
    opacity: 0.8
}
.ball-alert {
    background: #EF4836;
    border-radius: 50px;
    color: #fff;
    /* display: table; */
    width: 10px;
    height: 10px;
    position: absolute;
    margin-top: -31px;
    margin-left: 33px;
}
.art-user {}
.art-user .icon-profile3 {
    width: 30px;
    height: 30px;
    position: absolute;
    margin-top: -39px;
    border: 3px solid #4b74e6;
    margin-left: 41px;
    font-size: 10px;
    padding-top: 5px;
}
.calendar-box-offers-data.check {
    border: 1px solid #dcedff;
    background: #f1f8ff;
}
.TCurtain-over {}
.custombox-overlay {
    background: rgba(0, 0, 0, 0.3) !important;
    opacity: 1 !important;
}
.header-calendar-content {
    display: flex;
    /* padding-top: 4px; */
    /* border-bottom: 1px solid var(--color-lines); */
    /* padding: 20px; */
    /* border-radius: 10px; */
    /* margin-bottom: 15px; */
    align-items: center;
    /* position: fixed; */
    z-index: 99;
    background: var(--area-background);
    width: 90%;
}
.header-calendar-column {
    display: flex;
    width: 100%;
    align-items: center;
}
.header-calendar-subcolumn {
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 7px;
    border-bottom: 1px solid #E1E9EA;
}
.header-calendar-actions {
    display: flex;
    margin-top: 4px;
    flex-wrap: wrap;
    gap: 4px;
}
.header-calendar-subcolumnbox1 {
    border-right: 1px solid #E1E9EA;
    padding-right: 10px;
    margin-right: 10px;
    display: none;
}
.header-calendar-subcolumnbox {
    display: flex;
    align-items: center;
}
.header-calendar-actions button {
    margin-bottom: 0px;
}
.card-box-content {
    display: flex;
    align-items: center;
    margin-bottom: 11px;
    flex-flow: wrap;
}
.card-box {
    display: flex;
    background: #f9fafa;
    border-radius: 10px;
    border: 1px solid #e1e9e9;
    padding-left: 20px;
    padding-right: 28px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    max-width: 230px;
    margin-right: 15px;
    margin-bottom: 10px;
}
.card-box-title {
    font-size: 21px;
    color: #50585d;
    font-weight: 700;
    line-height: 19px;
    padding-top: 2px;
}
.card-box-title p {
    color: #7a878e;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
}
.card-box i {
    color: var(--color-master);
    font-size: 42px;
    margin-right: 8px;
}
.period-subtitle {
    font-size: 12px;
    margin-top: -6px;
}
.display-offer-data-title {
    font-size: 14px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.tbuttonpress.expand-in {
    /* background: #f0f3f8!important; */
    /* border: none; */
}
.tbuttonpress.expand-in:hover {
    /* opacity: 0.8; */
    /* background: #ebf1ff !important; */
}
.customer-points {
    color: #f7ca18;
    border-radius: 24px;
    font-size: 12px;
    /* position: absolute; */
    width: auto;
    height: 16px;
    display: inline-block;
    padding-left: 7px;
    padding-right: 10px;
    margin-bottom: 0px;
    margin-top: -2px;
}
.tbuttonpress {
    background: var(--button-background);
    color: var(
    --color-text-button) !important;
    padding-left: 15px;
    padding-right: 15px;
}
.tbuttonpress i {
    color: var(--color-text-button) !important;
}
.tbuttonpress .tbuttonpress-name {
    /* color: #566877; */
}
.wallet-row span {
    color: #1BBC9B;
}
.wallet-content {
    background: red;
    margin-top: 3px;
    margin-bottom: -9px;
    background: #fafafa;
    border: 1px solid #eee;
    padding-left: 15px;
    padding-top: 12px;
    padding-bottom: 11px;
    padding-right: 15px;
    border-radius: 10px;
    display: none;
}
.wallet-description {
    color: red;
}
.calendar-day-content {
    display: flex;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    align-items: center;
    cursor: pointer;
    margin-top: 6px;
}
.tbuttonpress i {
    color: #566877;
}
.tbuttonpress.full i {
    color: #fff!important;
}
.logo-main {
    /* margin-bottom: 9px; */
    padding-top: 14px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-lines);
    height: 88px;
}
.logo-main img {
    width: 42px;
}
.noty_body {
    /* background: #f0f3f8; */
    border-radius: 7px;
    padding: 18px;
    /* color: unset; */
    padding-right: 47px;
}
.content-buttons a, .content-buttons button {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 8px;
}
.content-actions {
    display: flex;
    /* margin-bottom: 8px; */
    flex-wrap: wrap;
}
.content-actions a, .content-actions button {
    /* margin-right: 10px; */
    margin-bottom: 10px;
}
.compact .icon-profile4, .compact .enjoyer-attr, .compact .reserve-info-content {
    display: none;
}
.compact .calendar-box-offers-data {
    height: 80px;
}
.compact .icon-profile4, .compact .enjoyer-attr, .compact .reserve-info-content, .compact-ultra .icon-profile4, .compact-ultra .enjoyer-attr, .compact-ultra .reserve-info-content {
    display: none;
}
.compact .calendar-box-offers-data, .compact .slot-interval {
    height: 80px;
}
.compact-ultra .calendar-box-offers-data, .compact-ultra .slot-interval {
    height: 52px;
    padding: 10px;
}
.compact-ultra .calendar-box-offers-action {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    line-height: 33px;
}
.schedule-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 9px;
}
.schedule-buttons button, .schedule-buttons a {
    background: unset;
    display: flex;
    justify-content: center;
    height: auto;
    padding: 0;
    margin: 10px;
    border-radius: 0;
    flex-direction: column;
    align-items: center;
}
.schedule-buttons i {
    width: var(--button-height);
    height: var(--button-height);
    background: var(--button-background);
    border-radius: 50px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* margin: auto; */
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}
.element-time-content {
    display: flex;
    align-items: center;
}
.calendar-operation {
    font-size: 13px;
    margin-top: -5px;
    margin-right: 10px;
}
.operation-cancel {
    cursor: pointer;
    font-size: 17px;
    margin-top: -6px;
    margin-left: 7px;
}

.tbuttonpress.full:hover *, .tbuttonpress.full:hover * {
    color: #fff !important;
}
.customer-view-photo {
    width: 50px;
    height: 50px;
    border-radius: 52px;
    text-align: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    font-size: 19px;
    background: var(--container-background);
    display: grid;
    justify-content: center;
    align-items: center;
}
.customer-view-name {
    color: var(--link-color);
    font-size: 18px;
    text-transform: uppercase;
    width: fit-content;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.customer-view-contact {
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.customer-view-points {
    background: #f0f3f8;
    padding: 9px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-master);
    cursor: pointer;
    margin-right: 6px;
    padding-left: 15px;
    padding-right: 15px;
}
.customer-view-wallet {
    background: #f0f3f8;
    padding: 9px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
    margin-right: 6px;
    padding-left: 15px;
    padding-right: 15px;
}
.customer-view-actions {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 15px;
    margin-bottom: 10px;
}
.customer-view-actions button {
    margin-right: 6;
}
.date-display-name {}
.date-display-day {
    /* color: blue; */
    /* font-weight: 300; */
    font-size: 12px;
}
.date-display-content {
    padding: 14px;
    text-transform: uppercase;
    display: inline-block;
    justify-content: center;
    text-align: center;
    background: #f0f3f8;
    border-radius: 10px;
    margin-right: 15px;
}
.date-display-number {
    font-weight: 600;
    font-size: 35px;
    line-height: 28px;
}
.date-display-click {
    cursor: pointer;
}
.bill-category {
    /* padding-top: 5px; */
    /* margin-top: 5px; */
    align-items: center;
    font-weight: 100;
    display: flex;
}
.bill-date {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-title);
}
.bill-info {
    /* display: flex; */
    /* flex-wrap: wrap; */
    font-size: 12px;
    font-weight: 100;
}
.display-month {
    color: var(--color-master);
    font-weight: 600;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #f0f3f8;
    width: fit-content;
    padding: 9px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
}
.display-month i {
    margin-right: 5px;
}
.external-area {
    width: 90%;
}
.bar-photo .icon-profile2 {
    padding-top: 7px;
    width: 40px;
    height: 40px;
    margin-bottom: 0px;
    font-size: 17px;
    margin-top: -10px;
}
.bar-photo {
    height: 50px;
    width: 50px;
    margin-right: 4px;
    border-radius: 50px;
    margin-top: -8px;
}
.bar-photo i {
    display: none;
}
.TCurtain {
    width: 100%;
    padding: 20px;
    padding-bottom: 20px;
}
.card-select {
    margin-right: 0px;
}
.button-mobile {
    left: 63px !important;
    border-left: 1px solid #e1e9e9;
}
.logo-mobile {
    display: block !important;
}
.card-select {
    max-width: 80%;
}
.header-calendar-subcolumnbox1 {
    display: flex;
}
.card-box {
    width: 100%;
    max-width: unset;
    justify-content: center;
}
.photo-profile-display {
    width: 100px;
    height: 130px;
    background: #f6f7f7;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 10px;
    color: #9ca7ac;
    display: grid;
    justify-content: center;
    align-items: center;
}
.indicator-content {
    display: flex;
    align-items: center;
    height: 64px;
}
.indicator-content-icon {
    font-size: 25px;
    margin-right: 7px;
    border-radius: 50px;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 50;
    width: 50;
    flex-shrink: 0;
}
.indicator-label {
    font-weight: 300;
    line-height: 18px;
    margin-bottom: -3px;
}
.indicator-value {
    /* color: blue; */
    font-size: 22px;
    font-weight: 600;
}
.indicator-value-attr {
    color: #2ecc71;
    font-size: 15px;
}
.indicator-value-attr i {
    font-size: 23px;
    margin-right: -5px;
}
.menu-star-info
{
    position: relative;
}
.screen-new {
    background: #F9BF3B;
    color: #fff;
    font-size: 8px;
    border-radius: 22px;
    padding-left: 0px;
    padding-right: 0px;
    right: 0;
    margin-left: 3px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    line-height: 15px;
    flex-shrink: 0;
}
.schedule-menu-box {
    display: flex;
}
.calendar-content
{
    padding-top: 4px;
}
.calendars-content {
    display: flex;
    /* overflow-y: auto; */
    /* height: calc(100vh - 215px); */
}
.calendars-area {
    margin-right: 15px;
    width: 100%;
    /* padding-bottom: 10px; */
    /* margin-bottom: 10px; */
    /* border-bottom: 1px solid var(--color-lines); */
    position: relative;
    min-width: 360px;
}
.sale-data-box {
    background: #f5f7fb;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    text-align: center;
    padding: 6px;
    margin-right: 7px;
    cursor: pointer;
    max-width: 120px;
    flex-shrink: 0;
    width: 100%;
    color: #fff;
}
.sale-data-box-label {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: -4px;
}
.sale-result-box {
    border: 1px solid #eff3f8;
    border-radius: 10px;
    padding: 19px;
    margin-bottom: 16px;
}
.toption-box.checked .profile-title2 {
    color: #fff;
}
.header-calendar-ball {
    /* background: var(--color-master); */
    color: #fff;
    font-size: 21px;
    border-radius: 100px;
    /* width: 35px; */
    /* height: 35px; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin: auto;
    /* margin-top: 2px; */
    /* margin-bottom: 2px; */
    font-size: 29px;
}
.header-calendar-box-date {
    display: grid;
    justify-content: center;
    text-align: center;
    margin-right: 10px;
    padding: 9px;
    border-radius: 15px;
    cursor: pointer;
    width: 60px;
    line-height: 24px;
    background: var(--color-master);
    font-size: 13px;
    color: #fff !important;
}
.header-calendar-view-actions {
    display: flex;
    margin-bottom: 5px;
    gap: 4px;
}
.header-calendar-view-actions a {
    display: flex;
    background: var(--button-background);
    border-radius: 100%;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.header-calendar-view-actions a.checked {
    background: var(--color-master);
    color: #fff !important;
}
.calendars-weeks {
    display: flex;
    /* overflow-x: auto; */
    /* padding-top: 34px; */
}
.week-day {
    background: #c9d9dc;
    /* color: #fff; */
    font-size: 16px;
    border-radius: 100px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 6px;
}
.week-day.checked {
    background: var(--color-master);
    color: #fff;
}
.calendars-weeks .calendar-box-offers {
    margin-right: 25px;
}
.container-offer-days {
    text-align: center;
    /* background: #f5f7fb; */
    justify-content: left;
    display: flex;
    align-items: center;
    /* margin-bottom: 16px; */
    border-radius: 9px;
    margin-top: 10px;
    font-weight: 600;
    color: var(--color-text-button);
}
.calendar-ball-pass {
    background: #566877;
    color: #fff;
}
.calendar-ball-next {
    background: #0369da;
    color: #fff;
}
.img-indication
{
    text-align: center;
    margin-top: 105px;
    margin-bottom: 34px;
}
.img-indication img 
{width: 220px;margin-bottom: 18px;margin: auto;}
.pipedriveWebForms {
    margin-top: 10px;
    text-align: center;
    height: 450px !important;
}
.link {
    text-align: center;
    margin: 10px;
    /* font-weight: bold; */
}
.toption-box .icon-profile2 {
    margin: auto;
}
.schedule-display-profile .profile2 {
    margin-bottom: 10px;
}
.schedule-menu-box {
    display: flex;
}
.text-indication {
    font-size: 18px;
    text-align: center;
    margin-top: 9px;
    max-width: 400px;
    margin: auto;
    /* margin-bottom: 20px; */
}
.display-photo-v {
    display: grid;
}
.form-indication {
    width: 100%;
    border: none;
    height: 82%;
}
.help-title {
    color: var(--link-color);
    font-size: 30px;
    font-weight: 600;
}
.help-box-link {
    border: 1px solid var(--color-lines);
    padding: 10px;
    display: block;
    margin-top: 9px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--color-master1);
}
.help-box-link.checked {
    background: #eaf0f8;
}
.help-box-link:hover {
    color: var(--color-master) !important;
}
.help-subtitle {
    margin-bottom: 15px;
}
.about-version {
    padding: 10px;
    display: block;
    margin-top: 9px;
    border-radius: 6px;
    background: #eff3f8;
    width: fit-content;
    padding: 15px;
    margin-bottom: 13px;
    margin-top: 19px;
}
.location-name {
    color: #202832;
    font-size: 12px;
}
.social-items {
    display: flex;
}
.social-items a {
    background: var(--color-master);
    color: #fff;
    width: 35px;
    text-align: center;
    height: 35px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 2px;
}
.customer-new {
    color: #fff;
    font-size: 9px;
    float: right;
    background: #f9bf3b;
    text-transform: none;
    border-radius: 22px;
    padding-left: 5px;
    padding-right: 5px;
    height: 18px;
    margin-left: 4px;
    line-height: 18px;
}
.ball-newpsql {
    color: #fff;
    font-size: 9px;
    background: #f9bf3b;
    text-transform: none;
    border-radius: 22px;
    padding-left: 5px;
    padding-right: 5px;
    height: 18px;
    margin-right: 4px;
    line-height: 18px;
}
.new-content {
    display: flex;
    align-items: center;
    color: #91a1ae;
}
.content-buttons-actions a, .content-buttons-actions button {
    margin-right: 10px !important;
}
.content-buttons-actions {
    display: flex;
}
.notice-content {
    color: #fff;
    padding: 10px;
    /* text-align: center; */
    display: flex;
    /* align-items: center; */
    line-height: 19px;
    align-items: center;
    border-radius: 15px;
    /* margin-bottom: 5px; */
    /* margin-top: 5px; */
    font-size: 13px;
}
.notice-column
{/* display: flex; */align-items: center;}
.notice-icon
{/* border-right: 1px solid #fff; *//* padding-right: 10px; */margin-right: 7px;display: flex;/* align-items: center; */}
.notice-content.red {
    background: #EF4648;
}
.integration-alert
{
    background: #ffecb3;
    color: #FF9800;
    border-radius: 15px;
    max-width: 267px;
    text-align: center;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 9px;
    font-size: 13px;
    line-height: 19px;
}
.notice-content.blue {
    background: var(--color-master);
}
.notice-content.orange {
    background: #F39C12;
}
.notice-column a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}
.notice-action
{
    display: flex;
    justify-content: center;
    margin-left: auto;
}
.notice-action .tbuttonpress {
    background: #fff;
    height: 28px;
    /* width: 48px; */
    padding-left: 15px;
}
.notice-action .tbuttonpress:hover * {
    color: #566877 !important;
}
.schedule-display-profile {
    display: flex;
    text-align: left;
    align-items: center;
}
.schedule-display-profile .icon-profile2 {
    margin-right: 4px;
    cursor: pointer;
}
.display-select-label {
    color: #b8c2c7;
    font-size: 13px;
    padding: 10px;
    padding-top: 0px;
}
.bi-page-break {
    color: var(--link-color);
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
}
.menu-button-actions {
    display: flex;
    margin-top: 6px;
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 10px;
    margin-bottom: 13px;
    padding-left: 10px;
}
.menu-button-actions a {
    color: #fff !important;
    width: 37px;
    display: flex;
    justify-content: center;
    height: 37px;
    background: var(--color-master) !important;
    align-items: center;
    margin-right: 3px;
}
.menu-button-actions a i {
    margin: 0;
}
.menu-button-actions a:hover {
    opacity: 0.8
}
.login-display {
    width: 50%;
    background-size: cover !important;
    background-position: center !important;
}
.login-content {
    width: 100%;
    max-width: 600px;
    overflow-y: auto;
}
.login-content input {
    width: 100%;
}
.login-title {
    font-size: 30px;
    font-weight: 600;
    color: #202832;
    text-align: center;
    line-height: 32px;
    margin-bottom: 7px;
}
.login-subtitle {
    font-size: 15px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 15px;
}
.login-entry input {
    /* margin-bottom: 10px; */
    text-align: center;
}
.login-actions {
    margin-top: 20px;
    /* display: grid; */
    /* justify-content: center; */
}
.login-entry {
    /* max-width: 280px; */
    /* display: flex; */
    /* justify-content: center; */
    /* overflow-y: auto; */
}
.login-actions a, .login-actions button {
    margin: auto;
    margin-bottom: 5px;
}
.copy {
    font-size: 13px;
    text-align: center;
    line-height: 18px;
}
.master-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.master-content2 {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}
.login-overlay {
    background: var(--color-master);
    width: 100%;
    height: 100%;
}
.login-logo img {
    width: 170px;
}
.login-logo {
    border-bottom: 1px solid var(--containers-border-color);
    padding-bottom: 24px;
    /* margin-bottom: 30px; */
    justify-content: center;
    display: flex;
}
.extra-content {
    display: flex;
}
.extra-content a {
    background: #dfe5f0;
    width: 25px;
    height: 25px;
    display: flex;
    border-radius: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-right: 4px;
}
.app-log {
    background: #f0f3f8;
    font-size: 10px;
    text-align: left;
    padding: 10px;
    border-radius: 10px;
    height: 140px;
    overflow: auto;
    margin: 9px;
}
.display-customer-calendar {
    text-align: left;
    font-size: 12px;
    /* line-height: 14px; */
    /* margin-right: 5px; */
    /* height: 22px; */
    display: flex;
    height: fit-content;
    white-space: nowrap;
}
.display-customer-attr-content {
    display: flex;
    margin-top: 0px;
    /* align-items: center; */
    margin-left: 2px;
    /* margin-right: 5px; */
    gap: 2px;
}
.display-customer-attr-content i {
    color: red;
    font-size: 12px;
    height: 15px;
    width: 15px;
}
.display-customer-attr-content.big {
    display: flex;
    align-items: center;
}
.display-customer-attr-content.big i {
    font-size: 17px;
    margin-right: 7px;
}
.display-customer-attr-content.big div {
    display: flex;
    line-height: 20px;
    margin-bottom: 6px;
    margin-right: 6px;
}
.permission-box {
    text-align: left;
}
.permission-box-name {
    font-weight: 600;
}
.login-area {
    display: grid;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Novo sistema */

.product-box-content {
    display: grid;
    align-items: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fill, 230px);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.product-box-check {
    border-color: var(--color-master) !important;
}
.product-box {
    border: 2px solid var(--color-lines);
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    height: 100%;
    margin-bottom: 13px;
    max-width: 240px;
    width: 100%;
    position: relative;
}
.product-box hr {
    margin-top: 10px;
    margin-bottom: 10px;
}
.product-box-title {
    color: var(--color-master);
    font-size: 18px;
    font-weight: 600;
    /* margin-bottom: -6px; */
    line-height: 16px;
}
.product-box-text {
    margin-top: 10px;
    margin-bottom: 10px;
}
.product-box-count {
    font-size: 18px;
}
.product-box-price {
    font-size: 25px;
    color: var(--color-master);
    font-weight: 600;
    margin-bottom: 5px;
}
.product-box-check::before {
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    border-radius: 100%;
    color: var(--color-master);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    background: var(--area-background);
    margin: auto;
    top: -11px;
    margin-left: -29px;
}
.invoice-box {
    border-radius: 15px;
    padding: 14px;
    margin-bottom: 15px;
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 200px;
    text-align: center;
}
.invoice-box-value {
    font-weight: 600;
    font-size: 20px;
}
.invoice-box i {
    color: #fff;
    font-size: 30px;
    margin-bottom: -5px;
    display: block;
    margin-top: -7px;
}
.product-box-desc {
    margin-bottom: 7px;
}
.page-max-title {
    color: var(--link-color);
    font-weight: 600;
    margin: auto;
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 5px;
    max-width: 600px;
}
.full-big {
    background: var(--color-master);
    color: #fff !important;
    border: var(--color-master);
    height: 43px;
    font-size: 16px;
}
.notice-action .tbuttonpress {
    background: transparent;
    /* height: 18px; */
    padding-left: 9px;
    padding-right: 9px;
    color: #fff !important;
    /* text-decoration: underline; */
    /* border: 1px solid #FFF; */
    /* font-size: 13px; */
    margin-left: 7px;
    text-decoration: underline;
    font-size: 13px;
}
.notice-action .tbuttonpress:hover *
{
    color: #fff !important;
}
.notice-content i {
    font-size: 20px;
}
.box-tip {
    max-width: 500px;
    margin: auto;
    text-align: center;
}
.box-tip-icon {
    font-size: 50px;
    background: whitesmoke;
    color: var(--color-master);
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.box-tip-image {
    width: 100%;
    height: auto;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.box-tip-video {
    width: 100%;
    height: 200px;
    border: none;
}
.box-tip-title {
    font-size: 32px;
    color: var(--link-color);
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 14px;
}
.box-tip-text i {
    color: var(--color-master)
}
.box-tip-help {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
}
.box-tip-help i {
    display: block;
    font-size: 28px;
}
.box-tip-text {
    font-size: 18px;
}
.invoice-box a, .invoice-box button {
    background: #fff;
    border-color: #fff;
    color: #F5AB35 !important;
    margin: auto;
    margin-top: 10px;
}
.resource-box {
    text-align: center;
}
.resource-box-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}
.resource-box-price {
    font-weight: 600;
    margin-top: 6px;
    font-size: 13px;
}
.resource-box i {
    font-size: 27px;
    margin-bottom: 7px;
}
.page-title-sub {
    color: #a39bab;
    margin-top: -14px;
    margin-bottom: 10px;
}
.total-order {
    color: var(--color-master);
    border: 1px solid #eee;
    font-weight: 600;
    font-size: 22px;
    border-radius: 25px;
    padding: 6px;
}
.content-grid {
    background: var(--container-background);
    border-radius: 9px;
    padding: 3px;
    margin-top: 9px;
    margin-bottom: 9px;
}
.content-grid table {
    font-size: 13px;
}
.content-grid td {
    padding: 3px !important;
}
.content-grid th {
    padding: 3px !important;
    font-size: 10px;
}
.product-box.small {
    /* max-width: 200px; */
}
.product-box.small .product-box-price {
    font-size: 18px;
}
.product-box.small .product-box-title {
    font-size: 15px;
    line-height: 16px;
}
.page-title {color: var(--link-color);font-weight: 600;font-size: 18px;line-height: 30px;margin-bottom: 15px;margin-top: 10px;}
.login-content input {
    padding: 0;
}
.form-terms {
    width: 100%;
    border: none;
    height: 436px;
    margin-top: 17px;
}
.app-view_actions {
    margin-top: 10px;
}
.action-content {
    /* background: #f0f3f8; */
    display: flex;
    /* padding: 14px; */
    margin-bottom: 6px;
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid var(--color-lines);
}
.action-content button {
    margin-right: 6px;
}
.contract-header-title {
    font-weight: 600;
    color: var(--color-action);
    font-size: 18px;
}
.element-header {
    border-left: 2px solid var(--color-lines);
    padding-left: 20px;
    width: 100%;
}
.header-all {
    display: flex;
    margin-bottom: 13px;
    flex-shrink: 0;
}
.header-all-icon {
    background: var(--color-master);
    width: 60px;
    height: 60px;
    border-radius: 100px;
    margin-right: 16px;
    flex-shrink: 0;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.steps-home-box
{
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #566877 !important;
    display: flex;
    align-items: center;
}
.steps-home-box.red i
{
    color: #F39C12;
}
.steps-home-box.green i
{
    color: #2ecc71;
}
.steps-home-box i 
{
    font-size: 30px;
    margin-right: 7px;
}
.steps-home-box:hover 
{
    opacity: 0.7;
}
.nav-label
{
    margin-top: 0px;
    font-size: 9px;
}
.menu-separator
{
    color: var(--text-label);
    margin-left: 23px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 12px;
}
.time-tag
{
    background: #f0f3f8;
    float: left;
    width: 111px;
    border-radius: 10px;
    padding: 8px;
    margin-right: 7px;
    margin-bottom: 7px;
}
.crd-line-content
{
    display: flex;
    border-top: 1px solid var(--color-lines);
    /* padding-top: 2px; */
    cursor: pointer;
    /* padding-left: 12px; */
}
.crd-line-hour
{
    width: 40px;
    text-align: right;
    margin-right: 5px;
    /* padding-top: 3px; */
    /* background: #fff; */
    color: #b8c2c7;
    /* cursor: pointer; */
    font-size: 12px;
}
.crd-line-hour.master
{
    color: var(--link-color);
    font-weight: 600;
    font-size: 13px;
}
.crd-line-data
{
    display: flex;
    width: 86%;
    border-left: 1px solid var(--color-lines);
}
/* .crd-offer-action
{
    background: #f5f7fb;
    width: 15px;
    height: 91%;
    color: #202832 !important;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    margin-top: 3px;
}
.crd-offer-action:hover
{
    opacity: 0.6
} */
.crd-elastic-reserve
{
    border-radius: 5px;
    padding: 2px;
    width: 100%;
    /* display: flex; */
    font-size: 13px;
    cursor: pointer;
    /* position: absolute; */
    /* margin-top: 3px; */
    /* margin-left: 3px; */
    border: 2px solid #fff;
    z-index: 9;
    overflow-x: auto;
}
.crd-elastic-reserve.reserved
{
    background: #edf5ff;
    color: var(--color-master);
    border-left: 1px solid var(--color-master);
}

.crd-elastic-reserve.reserved a
{
    background: var(--color-master);
    color: #fff !important;
}
.crd-elastic-reserve a
{
    white-space: nowrap;
}
.crd-elastic-reserve.attended
{
    background: #f2f6e4;
    color: #A1BD3D;
    border-left: 1px solid #A1BD3D;
}
.crd-elastic-reserve.attended a
{
    background: #A1BD3D;
    color: #fff !important;
}
.crd-elastic-reserve.wait a
{
    background: #566877;
    color: #fff !important;
}
.crd-elastic-reserve.miss a
{
    background: #EF4648;
    color: #fff !important;
}
.crd-elastic-reserve.wait
{
    background: #f5f7fb;
    color: #566877;
    margin-left: 13px;
}
.crd-elastic-reserve.miss
{
    background: #fde3e4;
    color: #EF4648;
    border-left: 1px solid #EF4648;
}
.crd-elastic-reserve.command
{
    background: #fff8ed;
    color: #F39C12;
    border-left: 1px solid #F39C12;
}
.crd-elastic-reserve.command a
{
    background: #F39C12;
    color: #fff !important;
}
.crd-elastic-reserve.pass-active
{
    background: #f8eed9;
    color: #dfae4a;
    border-left: 1px solid #dfae4a;
}
.crd-elastic-reserve.pass-active a
{
    background: #dfae4a;
    color: #fff !important;
}
.crd-elastic-reserve.repeat
{
    background: #f2f2ff;
    color: #3c40c6;
    border-left: 1px solid #3c40c6;
}
.crd-elastic-reserve.repeat a
{
    background: #3c40c6;
    color: #fff !important;
}
.calendar-pointer.status-repeat
{
    background: #3c40c6;
}
.status-repeat
{
    background: #3c40c6;
}
.service-pass-active
{
    background: #f8eed9;
}
.crd-elastic-reserve.transfer
{
    background: #dbe3ff;
    color: #1F3A93;
    border-left: 1px solid #1F3A93;
}
.crd-elastic-reserve.transfer a
{
    background: #1F3A93;
    color: #fff !important;
}
.crd-elastic-reserve.block
{
    background: #e8edf4;
    color: #2C3E50;
    border-left: 1px solid #2C3E50;
}
.crd-elastic-reserve.reduce
{
    padding-top: 4px;
    font-size: 12px;
    height: 100% !important;
    border: none;
    border-radius: 0px;
}
.crd-elastic-reserve.reduce:hover
{
    opacity: 0.9
}
.crd-elastic-reserve.reduce i 
{
    margin-right: 2px;
}
.crd-line-content:hover
{
    background: var(--datagrid-check-background) !important;
}
.crd-line-content.no-link:hover
{
    background: transparent !important;
}
.crd-elastic-reserve:hover
{
    /* opacity: 0.8; */
    /* z-index: 999; */
}
.no-link 
{
    cursor: unset;
}
.crd-line-content.interval 
{background-image: linear-gradient(45deg, transparent 25%, var(--container-background) 25%, var(--container-background) 50%, transparent 50%, transparent 75%, var(--container-background) 75%, var(--container-background) 100%);background-size: 15px 15px;}
.crd-link-expanded
{
    /* margin-top: 10px; */
    /* margin-bottom: 10px; */
    text-decoration: underline !important;
    display: flex;
    height: 30px;
    align-items: center;
    font-size: 13px;
}
.crd-hour-end
{color: red;font-weight: 600;font-size: 13px;/* height: 30px; */border-top: 1px solid #eff3f8;}
.crd-elastic-reserve a
{
    cursor: pointer;
    /* height: fit-content; */
    color: #fff;
    padding: 1px;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 22px;
    margin-right: 4px;
    font-size: 12px;
    display: flex;
    gap: 4px;
    align-items: center;
}
.crd-elastic-reserve a i 
{
    font-size: 11px;
}
.crd-elastic-reserve-action
{
    /* background: red; */
    width: 100%;
    height: 80%;
    cursor: pointer;
}
.crd-elastic-reserve-display
{
    display: flex;
    align-items: center;
}
.crd-elastic-reserve.pass
{
    opacity: 0.6;
}
.crd-line-hour.pass
{
    text-decoration: line-through;
}
.current-hour
{
    border-bottom: 1px solid #EF4648;
}
.customer-historic-content 
{
    height: 300px;
    overflow-y: auto;
    padding: 12px;
    border-radius: 10px;
    margin-top: 13px;
    background: var(--container-background);
    padding-top: 4px;
    padding-bottom: 4px;
}
.customer-historic-content .tcarddatagrid-card {
    padding: 0px !important;
    margin-bottom: 3px;
    border: none;
}
.customer-historic-content .tcarddatagrid-card-area {
    padding: 0px !important;
    border: none;
}
.customer-historic-content .tcarddatagrid-card-column {
    font-size: 12px;
}
.crd-elastic-reserve a:hover
{
    opacity: 0.8
}
.crd-calendar-space
{
    border-left: 2px solid var(--color-lines);
}
.crd-calendar-space i 
{font-size: 21px;margin-left: 8px;}
.button-action {
    color: #fff !important;
    justify-content: center;
    align-items: center;
    padding-left: 30;
    padding-right: 30;
    margin-top: 45px;
    font-size: 45px;
    width: 60;
    height: 60px;
    z-index: 999;
    border-radius: 50px;
    display: inline-flex;
}
.button-action:hover {
    opacity: 0.7;
}
.button-action.big {
    height: 50px;
    font-size: 18px;
}
.link-indicacao {
    justify-content: center;
    text-align: center;
    margin: 10;
    text-decoration: underline;
}
.crd-current-hour
{
    height: 1px;
    background: red;
    width: 100%;
    z-index: 98;
    position: absolute;
    /* margin-top: 29px; */
}
.tfullwindow
{
    padding-top: 0px;
    /* margin: 10px; */
    /* height: 98%; */
    /* border-radius: 20px; */
    padding: 23px;
}
.schedule-select-box
{
    background: var(--container-reverse-background);
    border-radius: 25px;
    margin-bottom: 4px;
    width: fit-content;
}
.schedule-select-box-close
{
    width: 25px;
    height: 24px;
    border-radius: 100% !important;
    display: flex !important;
    justify-content: center;
    align-items: center !important;
    padding-top: 2px !important;
}
.display-select-schedules-separator
{
    color: var(--text-label);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.schedule-select-box a
{
    background: transparent !important;
    margin-bottom: 0;
    padding: 0;
    font-size: 13px;
    margin: 0 !important;
}
.schedule-select-box i
{
    font-size: 13px !important;
    margin: 0 !important;
}
.art-logo-attr
{
    background: var(--color-master);
    color: #fff;
    /* border-radius: 100%; */
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 33px;
    /* padding: 13px; */
    white-space: nowrap;
    border-radius: 15px;
    padding-left: 5px;
    padding-right: 5px;
}
.bi-page-break.expanded
{
    margin-top: 15px;
    margin-bottom: 15px;
}
.art-notification-area.custom .notice-content
{
    /* margin-top: 0; */
    /* margin-bottom: 12px; */
}
.notice-live
{
    display: grid;
    gap: 5px;
    margin-bottom: 10px;
    margin-top: 5px;
}
.cdr-calendar-area
{
    min-width: 350px;
    width: 100%;
    position: relative;
}
.crd-elastic-reserve-hour-display
{
    font-size: 11px;
    margin-left: 5px;
    white-space: nowrap;
}
.term-view {
    border: 1px solid var(--color-lines);
    padding: 15px;
    font-size: 13px !important;
    border-radius: 10px;
    height: 300px;
    overflow-y: auto;
    color: #a0a4a7;
}
.term-view *
{
  font-size: 14px !important;
}
.taccordion .show
{
  /* padding: 0; */
}
.term-view ol
{
  padding-left: 10px;
}
.schedule-daily-content
{
    display: flex;
    align-items: center;
    margin-top: 18px;
    position: relative;
}
.schedule-daily-photo
{
    width: 55px;
    height: 55px;
    background: var(--light-container);
    display: flex;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    margin-right: 13px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border: 3px solid var(--color-master);
}
.schedule-daily-name
{
    font-weight: 600;
    color: var(--color-title);
    font-size: 15px;
}
.schedule-daily-real
{
    display: flex;
    flex-wrap: wrap;
    margin-top: 13px;
}
.daily-label
{
    font-weight: 600;
    color: var(--color-title);
}
.schedule-daily-real-box
{
    border: 1px solid var(--color-lines);
    border-radius: 10px;
    padding: 15px;
    max-width: 190px;
    width: 100%;
    margin-right: 12px;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 19px;
    position: relative;
}
.daily-reserve-pass
{
    background: #566877;
    border-radius: 20px;
    color: #fff !important;
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    width: fit-content;
}
.daily-reserve-pass:hover 
{
    opacity: 0.7
}
.daily-reserve-now
{
    background: #2ecc71;
    border-radius: 20px;
    width: fit-content;
    color: #fff !important;
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
}
.daily-reserve-now:hover 
{
    opacity: 0.7
}
.daily-reserve-future
{
    background: #0369da;
    border-radius: 20px;
    width: fit-content;
    color: #fff !important;
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    width: fit-content;
}
.daily-reserve-future:hover 
{
    opacity: 0.7
}
.schedule-daily-real-box.check
{
    /* border: 3px solid var(--color-master); */
    background: var(--background-helper);
    /* font-size: 15px; */
}
.schedule-daily-start
{
    margin-bottom: 14px;
}
.schedule-daily-info
{
    font-size: 13px;
    line-height: 17px;
}
.schedule-daily-photo-icon
{
    width: 27px;
    height: 27px;
    border-radius: 100%;
    background: var(--color-master);
    color: #fff;
    font-size: 15px;
    text-align: center;
    position: absolute;
    display: flex;
    top: 1px;
    left: 36px;
    justify-content: center;
    align-items: center;
}
.progress-bar-success
{
    background: #2ecc71;
}

.crd-elastic-reserve-obs
{
    font-size: 12px;
}
.status-interval
{
    background-image: linear-gradient(45deg, transparent 25%, #f5f7fb 25%, #f5f7fb 50%, transparent 50%, transparent 75%, #f5f7fb 75%, #f5f7fb 100%);
    background-size: 15px 15px;
    font-size: 13px;
}
.bill-category-icon
{width: 25px;height: 25px;border-radius: 100%;color: #fff;display: flex;justify-content: center;align-items: center;margin-right: 4px;cursor: pointer;}
.bill-category-icon.reduced
{/* width: 10px; *//* height: 10px; */}
.bill-sub-info
{
    color: #94999e;
    font-size: 13px;
    line-height: 18px;
}
.bill-due
{
    white-space: nowrap;
}
.tbuttonpress.circle-bk.green
{
    background: #2ecc71;
}
.tbuttonpress.circle-bk.green i
{
    color: #fff !important;
}
.daily-attr
{
    margin-bottom: 5px;
}
.schedule-daily-start-label
{
    font-size: 13px;
}
.product-complement
{
    color: var(--color-master);
}
#sale_form .taccordionitem
{
    /* background: transparent; */
    /* padding-left: 0; */
    padding: 8px;
    border: none;
}
.header-calendar-content.flow
{
    top: 0;
}
.header-calendar-content.flow .header-calendar-view-actions a
{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-calendar-content.flow .header-calendar-box-date
{
    width: 69px;
    padding: 15px;
    padding-top: 20px;
}
.header-calendar-content.flow .header-calendar-view-actions
{
    margin-bottom: 0px;
}
.header-calendar-content.flow .header-calendar-ball
{
    font-size: 24px;
}
.flow-content
{
    /* padding-top: 100px; */
}
.cdr-calendar-flex
{
    display: flex;
}
.cdr-calendar-checkboxes
{
    margin-top: 32px;
    position: absolute;
}
.crd-line-check
{
    padding-top: 0px;
    margin: 0;
}
.tcarddatagrid-check-container.crd-line-check
{
    display: block;
}

.crd-line-check .checkmark
{
    left: 23px;
    top: 14px;
}
.crd-elastic-reserve.confirm
{
    background: #e6fbff;
    color: #1fb9d8;
    border-left: 1px solid #1fb9d8;
}
.crd-elastic-reserve.confirm a {
    background: #1fb9d8;
    color: #fff !important;
}
.toption-box 
{
    line-height: 16px;
    border-radius: 15px;
}
.box-notice-pass
{
    display: flex;
    /* align-items: baseline; */
    /* border: 2px solid #e3ebeb; */
    border-radius: 10px;
    padding: 7px;
    text-align: left;
    font-size: 13px;
    background: #f8eed9;
    align-items: center;
}
.box-notice-pass i 
{
    font-size: 17px;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    background: #dfae4a;
    flex-shrink: 0;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.box-notice-pass.red  i
{
    background: #EF4648;
}
.box-notice-pass.red 
{
    background: #ffe0e1;
    color: #EF4648;
}
.package-box-month
{
    margin-bottom: 5px;
}
.circle-bk.full.green
{
    background:#2ecc71 !important;
}
.circle-bk.full.orange
{
    background:#F39C12 !important;
}
.commission-obs
{
    color: #94999e;
    font-size: 13px;
}

.master-menu {
    max-width: 280px;
    width: 100%;
    flex-shrink: 0;
}
.master-area {
    width: 100%;
    /* padding: 30px; */
    padding-top: 0px;
    padding-right: 0px;
}
.master-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}
.atendimento-historico-content .tcarddatagrid-card-column {
    font-size: 13px;
}
.master-menu {
    display: flex;
    position: relative;
}
.menu-content {
    background: var(--menu-background);
    width: 60px;
    flex-shrink: 0;
    display: grid;
    align-content: space-between;
    padding-top: 10px;
    /* justify-content: center; */
    text-align: center;
    padding-bottom: 10px;
    overflow: auto;
    /* padding-left: 7px; */
    justify-content: center;
}
.submenu-content {
    background: var(--submenu-background);
    width: 100%;
    overflow-y: auto;
    padding: 16px;
    /* border-left: 1px solid var(--submenu-border-color); */
    /* border-right: 1px solid var(--color-lines); */
    padding-top: 19px;
    border-radius: 20px;
    border: 9px solid var(--area-background);
    border-left: 1px solid var(--area-background);
}
.logo-area {
    justify-content: center;
    /* margin-bottom: 24px; */
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #fff;
    border-bottom: 1px solid var(--color-lines);
    margin-bottom: 6px;
    padding-bottom: 10px;
}
.logo-area img {
    width: 44px;
    /* padding-top: 19px; */
}
.menu-icon {
    color: var(--menu-text-color);
    margin: auto;
    /* width: 35px; */
    /* height: 35px; */
    font-size: 20px;
    border-radius: 50px;
    /* padding-left: 4px; */
    /* margin-bottom: 9px; */
    /* border-right: 3px solid transparent; */
    position: relative;
    display: block;
    margin-bottom: 2px;
}
.menu-icon.checked
{
    color: var(--color-master);
    position: relative;
}
.menu-icon.checked:after 
{
    content: '';
    position: absolute;
    top: 13px;
    right: 0px;
    width: 8px;
    height: 8px;
    background: var(--color-master);
    border-radius: 100%;
}
.menu-icon i
{
    /* background: var(--submenu-background); */
    width: 30px;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 0px;
    font-size: 17px;
}
.menu-icon.checked i {
    /* background: var(--menu-color-checked); */
    color: var(--menu-color-checked);
}
.version {
    font-size: 13px;
    /* margin-bottom: 10px; */
}
.submenu-title {
    font-size: 15px;
    color: var(--link-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* gap: 5px; */
    padding-left: 13px;
}
.menu-link
{
    padding-left: 4px !important;
    margin-bottom: 6px;
    /* text-decoration: underline; */
}
.submenu-box ul li a {
    display: flex;
    color: var(--submenu-text-color);
    padding: 5px;
    border-radius: 22px;
    /* padding-left: 2px; */
    padding-right: 12px;
    padding-left: 16px;
    align-items: center;
    line-height: 20px;
    /* width: fit-content; */
    /* height: 30px; */
}
.submenu-box ul li a i {
    width: 20px;
    /* color: var(--submenu-text-color); */
    font-size: 15px;
    /* background: red; */
    flex-shrink: 0;
}
.submenu-separator {
    color: var(--color-fit);
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: 10px;
    padding-left: 17px;
    text-transform: uppercase;
}
.submenu-box ul li a.checked {
    /* background: var(--color-master); */
    color: var(--color-master);
    position: relative;
    /* border-left: 2px solid var(--color-master); */
    /* padding-left: 16px; */
}
.submenu-box ul li a.checked:after {
    content: '';
    position: absolute;
    top: 11px;
    right: -8px;
    left: 0px;
    width: 8px;
    height: 8px;
    background: var(--color-master);
    border-radius: 100%;
}

.submenu-box ul li a.checked:hover {
    color: var(--color-master);
}
.master-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    /* padding-right: 10px; */
    border-bottom: 1px solid var(--containers-border-color);
}
.master-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-lines);
    height: var(--header-height);
    padding-left: 20px;
    margin-bottom: 10px;
}
.breadcrumbs-content {
    display: flex;
    align-items: center;
}
.breadcrumbs-item:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f138";
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
}
.breadcrumbs-item {
    /* margin-right: 10px; */
    color: var(--text-color-light);
}
.breadcrumbs-item:last-child {
    color: var(--submenu-color-title);
    /* font-size: 18px; */
    font-weight: 600;
}
.breadcrumbs-item:last-child:after {
    content: "";
}
.breadcrumbs-item i {
    color: #ffcd09;
    margin-right: 4px;
    border-left: 1px solid var(--containers-border-color);
    margin-left: 5px;
    padding-left: 5px;
}
.user-actions {
    display: flex;
    align-items: center;
}
.user-photo {
    width: 45px;
    height: 45px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 80px;
    border: 2px solid var(--color-master);
}
.user-display {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--containers-border-color);
    padding-left: 17px;
}
.user-content {
    display: flex;
    align-items: center;
}
.user-name {
    margin-left: 10px;
    color: var(--color-action);
    font-size: var(--font-size);
}
.master-live {
    height: 100%;
    overflow-y: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 60px;
    margin-top: -9px;
    padding-top: 10px;
}
.submenu-box {
    display: none;
}
.submenu-box ul {
    list-style: none;
    padding-left: 0px;
    padding-top: 0;
    padding-bottom: 0;
    /* max-height: 180px; */
}
.submenu-box ul li a.dropdown:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
    display: inline-block;
    margin-left: auto;
}
.submenu-box ul li a.dropdown {
    padding-right: 0px;
    height: 40px;
    padding: 3px;
}
.submenu-box ul li a:hover {opacity: 0.7;}
.submenu-dropdown {
    /* border-left: 1px solid #d1d8e1; */
    padding: 6px;
    padding-left: 0px !important;
    border-radius: 0;
    /* overflow-y: auto; */
    height: auto;
    /* max-height: 250px; */
    display: none;
    margin-top: 5px;
    margin-bottom: 17px;
    margin-left: 15px;
}
.submenu-dropdown li a {
    padding-left: 13px;
    border-left: 3px solid transparent;
    border-radius: 0 !important;
}
.submenu-box ul li a.dropdown.open:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f106";
    display: inline-block;
    margin-left: auto;
}
.submenu-box ul li a.dropdown.open {
    color: var(--submenu-color-hover) !important;
    opacity: 1 !important;
}
.menu-name
{
    font-size: 9px;
    margin-top: -2px;
}
.submenu-dropdown.open {
    display: block;
    background: var(--menudrop-background);
    border-radius: 20px;
    padding: 10px;
    margin: 0;
}
.menu-star-content {
    display: flex;
    padding: 13px !important;
    /* border: 1px solid #eff3f8; */
    border-radius: 15px !important;
    margin-bottom: 8px;
    /* border: 1px solid var(--color-lines); */
    /* height: 45px !important; */
    background: var(--container-background);
}
.menu-star-icon i {
    /* color: var(--color-master); */
    font-size: 18px !important;
    margin-right: 7px;
}
.menu-star-info a {
    color: var(--color-title);
    font-weight: 600;
    height: auto;
    padding: 0px;
    margin: 0px;
    margin-bottom: 1px;
}
.menu-star-subtext {
    color: var(--text-color-light);
    font-size: 11px;
    line-height: 14px;
}
.menu-star-title {
    font-weight: 400;
    /* color: var(--submenu-color-title); */
}
.menu-star-content.checked {
    color: #fff !important;
    border-color: var(--color-master) !important;
    background: var(--color-master) !important;
}
.menu-star-content.checked {
    color: #fff !important;
    font-weight: 400;
    background: var(--color-master) !important;
}
.master-menu.show {
    display: flex;
    backdrop-filter: blur(5px);
    background: var(--notify--background);
}
.toggle-mobile {
    display: none;
}
.toggle-mobile a {
    font-size: 20px;
    display: block;
    width: 30px;
    text-align: center;
    color: var(--color-menu-toggle);
}
.menu-box3
{
    padding-top: 8px;
    display: flex;
    flex-direction: column;
}
.card-message-empty-text
{
    color: var(--text-label);
}
.card-message-icon i
{
    color: var(--text-label);
    font-size: 45px;
    line-height: 75px;
}
.tcarddatagrid-info, .tcarddatagrid-info i
{
    color: var(--text-label);
}
.tcarddatagrid-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    margin-top: 1px;
    border-radius: 50px;
    background-color: #eee;
}
.tcarddatagrid-checkmark {
    background: var(--color-background-button-grid);
}
.tcarddatagrid-card-label 
{
    color: var(--text-label);
}
.select2-container--default .select2-selection--single 
{
    background-color: var(--field-background);
}
.select2-dropdown {
    background-color: var(--field-background);
}
.screen-mode
{
    width: 30px;
    font-size: 20px;
    background: #e7e7e7;
    display: flex;
    margin: auto;
    /* margin-top: 10px; */
    /* height: 30px; */
    border-radius: 100%;
    color: #07111b !important;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}
.screen-mode.night
{
    background: #07111b;
    color: #fff !important;
}
.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: var(--color-background-button-grid);
    border-radius: 0.25rem;
}
.card-message-empty
{
    padding: 20px;
}
.nf-content
{
    font-size: 13px;
    padding: 6px;
    background: papayawhip;
    border-radius: 10px;
    margin-bottom: 5px;
}
.error-content
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.error-display
{
    max-width: 400px;
    text-align: center;
}
.error-display img
{
    width: 120px;
    display: block;
    text-align: center;
    margin: auto;
    margin-bottom: 13px;
}
.error-content .tbuttonpress
{
    margin-top: 13px;
    margin-left: auto;
    margin-right: auto;
}
.store-box-product-content
{
    gap: 20px;
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(auto-fill, 230px);
    margin-bottom: 25px;
}
.store-box-product-name
{
    font-weight: 600;
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 7px;
}
.store-box-product-description
{
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 6px;
}
.store-box-product-price
{
    font-weight: 600;
    font-size: 19px;
    display: flex;
    align-items: center;
    /* color: var(--color-master); */
    margin-bottom: 3px;
}
.store-box-product
{
    border: 1px solid var(--color-lines);
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}
.store-box-product-icon
{
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
    border-radius: 12px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store-separator
{
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 20px;
    /* margin-top: 20px; */
}
.store-separator-title
{
    color: var(--link-color);
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.store-box-product-complement
{
    font-size: 12px;
    color: var(--text-label);
    margin-bottom: 3px;
}
.store-box-product:hover 
{
    background: var(--datagrid-check-background);
}
.store-box-product-labels
{
    display: flex;
    gap: 3px;
    border-top: 1px solid var(--background-helper);
    padding-bottom: 10px;
    position: relative;
    padding-top: 9px;
}
.store-box-product-labels div
{
    background: #e5f1ff;
    font-size: 11px;
    color: var(--color-master);
    font-weight: 400;
    border-radius: 25px;
    padding: 2px;
    padding-left: 8px;
    padding-right: 8px;
}
.store-box-product-labels i 
{
    color: var(--color-master);
    position: absolute;
    left: -3px;
    top: -18px;
    font-size: 25px;
}
.store-content
{
    padding-bottom: 20px;
    padding-top: 15px;
    position: relative;
}
.store-content.view .store-box-product-name
{
    font-size: 25px;
    margin-bottom: 9px;
    color: var(--link-color);
}
.store-content.view .store-box-product-description
{
    font-size: 15px;
    color: var(--text-label);
    line-height: 19px;
}
.editormd-html-preview h1
{
    font-weight: 600;
}
.store-content.view
{
    padding-top: 20px;
}
.store-content.view .store-box-product-price
{
    font-size: 23px;
    margin-bottom: 5px;
}
.store-content.view .store-box-product-labels div 
{
    font-size: 13px;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store-content.view .store-box-product-labels
{
    padding-top: 0;
    border: none;
    margin-left: 11px;
}
.store-product-top
{
    display: flex;
    max-width: 600px;
    border-bottom: 1px solid var(--color-lines);
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.store-product-top .store-box-product-icon
{
    width: 50px;
    height: 50px;
    margin-right: 13px;
    flex-shrink: 0;
}
.store-dependencies-content
{

}
.store-dependencies-content
{border-bottom: 1px solid var(--color-lines);margin-bottom: 15px;padding-bottom: 15px;}
.store-dependencies-result
{
    border-radius: 8px;
    padding-left: 10px;
    padding-top: 2px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    width: fit-content;
    margin-bottom: 10px;
}
.store-dependencies-result.red
{
    background: #ffd1d1;
    color: #ff4d4d;
}
.store-dependencies-result.green
{
    background: #e3f9ec;
    color: #2ecc71;
}
.store-dependencies-result i 
{
    font-size: 21px;
    margin-right: 5px;
}
.store-display-checkup
{
    font-size: 13px;
}
.store-box-price
{
    display: flex;
    border-bottom: 1px solid var(--background-helper);
    padding-bottom: 7px;
    margin-bottom: 15px;
    border-top: 1px solid var(--background-helper);
    padding-top: 15px;
    margin-top: 15px;
    position: relative;
}
.store-box-actions
{
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 5px;
}
.store-box-actions a
{
    display: flex;
}
.store-box-product-full-description .editormd-html-preview, .editormd-html-preview h1
{
    font-size: 14px;
}
.store-box-price i
{
    color: var(--color-master);
    position: absolute;
    left: -9px;
    top: -21px;
    font-size: 30px;
}
.store-box-product.checked
{
    border-color: var(--color-master) !important;
} 
/* .tbuttonpress.link:hover 
{
    color: var(--color-master) !important;
    opacity: 1;
} */
.tbuttonpress.full.green
{
    background: #2ecc71 !important;
}
.store-item
{

}
.store-item .store-box-product-icon
{
    width: 35px;
    height: 35px;
    font-size: 20px;
    margin-right: 8px;
    margin-bottom: 0;
    flex-shrink: 0;
}
.store-item-product
{
    display: flex;
    align-items: center;
}
.store-content.cart .store-box-product-labels
{
    border: none;
}
.store-cart-total-value
{
    background: var(--background-helper);
    font-size: 11px;
    color: var(--color-master);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    width: fit-content;
    padding: 3px;
    padding-left: 13px;
    padding-right: 13px;
    margin-left: auto;
    margin-bottom: 8px;
}
.store-cart-total-simple
{
    background: #efefef;
    font-size: 11px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    width: fit-content;
    padding: 3px;
    padding-left: 13px;
    padding-right: 13px;
    margin-left: auto;
}
.store-cart-total-label
{
    text-align: right;
    margin-bottom: 5px;
    /* max-width: 50%; */
    margin-left: auto;
}
.store-cart-total
{
    border-top: 2px solid var(--color-lines);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tbuttonpress.link.blue, .tbuttonpress.link.blue i
{
    color: var(--text-color);
}
.tbuttonpress.link.red, .tbuttonpress.link.red i
{
    color: #ff3838 !important;
}
.tbuttonpress.link.orange, .tbuttonpress.link.orange i
{
    color: #ff9f1a !important;
}

.store-cart-widget
{
    background: var(--color-master);
    width: 70px;
    height: 70px;
    border-radius: 100%;
    color: #fff !important;
    font-size: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
}
.store-cart-widget:hover 
{
    opacity: 0.6
}
.store-cart-widget-count
{
    background: red;
    font-size: 15px;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    position: absolute;
    top: -5px;
    right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store-status-content
{
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 15px;
}
.store-plan-display-date
{
    /* color: red; */
}
.store-plan-display
{
}
.store-status-content .store-box-product-icon
{
    margin: 0
}
.store-plan-resume-content
{
    display: flex;
    font-size: 15px;
    margin-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 11px;
}
.store-plan-resume-content div:last-child
{
    border-right: none;
}
.store-plan-resume-content div
{
    border-right: 1px solid var(--color-lines);
    padding-right: 15px;
    /* margin-right: 15px; */
}
.store-plan-resume-content span 
{
    display: block;
    font-size: 12px;
    color: var(--text-label);
    font-weight: 400;
}
.store-plan-resources-content {
    gap: 20px;
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(auto-fill, 200px);
    margin-bottom: 25px;
    margin-top: 25px;
}
.store-plan-display-actions
{
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.store-content.my .store-box-product-name, .store-content.my .store-box-product-price
{
    font-size: 14px;
    line-height: 17px;
}
.store-content.my .store-plan-display .store-box-product-name
{
    font-size: 20px !important;
    color: var(--link-color);
    margin-top: 5px;
}
.store-box-product-sub
{
    margin-bottom: 6px;
}
.store-orders-box
{
    display: grid;
    border: 1px solid var(--color-lines);
    width: 100%;
    border-radius: 10px;
    padding: 17px;
    /* gap: 10px; */
    align-items: center;
}
.store-orders-content
{
    gap: 20px;
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(auto-fill, 190px);
    margin-bottom: 25px;
    margin-top: 25px;
}
.store-orders-box-icon
{
    font-size: 44px;
    margin-top: -10px;
    margin-bottom: -10px;
    /* margin-left: -5px; */
}
.store-orders-box-value
{
    font-size: 19px;
    font-weight: 700;
    margin-bottom: -1px;
}
.store-orders-box-date
{
    font-size: 13px;
    margin-bottom: 1px;
}
.store-orders-box.st-green
{
    border: 1px solid var(--color-lines);
}
.store-orders-box.st-green i
{
    color: #2ecc71;
}
.store-orders-box.st-orange
{
    /* background: #fff2df; */
}
.store-orders-box.st-orange i
{
    color: #ff9f1a;
}
.store-orders-box.st-red
{
    /* background: #fdeaea; */
}
.store-orders-box.st-red i
{
    color: #ff3838;
}
.store-orders-box-error
{
    color: #ff3838;
    font-size: 13px;
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.store-order-title
{
    font-size: 20px !important;
    color: var(--link-color);
    font-weight: 700;
}
.store-order-info
{
    margin-bottom: 3px;
    font-size: 16px;
}
.store-order-paid
{
    display: flex;
    align-items: center;
    gap: 7px;
    color: #97aab9;
}
.store-order-paid .tbox-status
{
    margin: 0px;
}
.store-plan-card
{
    border-radius: 10px;
    width: fit-content;
    padding: 8px;
    border: 1px solid var(--color-lines);
    margin-top: 7px;
    color: var(--color-master);
    display: flex;
    align-items: center;
    gap: 7px;
    padding-left: 15px;
    padding-right: 15px;
}
.store-plan-card i 
{
    font-size: 23px;
}
.user-display-photo
{
    width: 35px;
    height: 35px;
    background: #f0f3f8;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 12px;
    background-position: center !important;
    background-size: cover !important;
}
.historic-ticket-form
{
    border: 1px solid #e1e9e9;
    padding: 12px;
    border-radius: 10px;
}
.actions-content
{
    /* background: #f0f3f8; */
    display: flex;
    /* padding: 14px; */
    margin-bottom: 6px;
    margin-top: 15px;
    gap: 2px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--color-lines);
}
.actions-content button
{
    margin-right: 6px;
}
.header-all
{
    display: flex;
    margin-bottom: 13px;
    flex-shrink: 0;
}
.ticket-history-content .tcarddatagrid-card-column
{
    font-size: 13px;
}
.ticket-situation {
    margin-top: 10px;
    display: flex;
}
.ticket-situation-label
{
    color: #a0aeb7;
    margin-bottom: 5px;
    font-size: 13px;
}
.ticket-situation-column
{
    border-right: 1px solid var(--color-lines);
    padding-right: 10px;
    margin-right: 10px;
}
.ticket-history-content
{
    border: 1px solid #f0f3f8;
    height: 300px;
    overflow-y: auto;
    padding: 16px;
    border-radius: 10px;
    margin-top: 13px;
}
.ticket-history-content .tcarddatagrid-card
{
    padding: 0px !important;
    margin-bottom: 10px;
    border: none;
}
.ticket-history-content .tcarddatagrid-card-area
{
    padding: 0px !important;
    border: none;
}
.contract-history-content
{
    background: #f0f3f8;
    height: 300px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 10px;
    margin-top: 13px;
}
.contract-history-content .tcarddatagrid-card
{
    padding: 0px !important;
    margin-bottom: 10px;
}
.contract-history-content .tcarddatagrid-card-area
{
    padding: 0px !important;
}
.history-ticket-form
{
    border: 1px solid #e1e9e9;
    padding: 12px;
    border-radius: 10px;
}
.ticket-history-scroll
{
    background: #f7f7f7;
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    max-height: 150px;
    height: 100%;
    overflow: auto;
}
.fonte-history
{
    font-size: 13px; 
    margin-bottom: -3px; 
    color: #a0aeb7;
}
.ball-red
{
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #e69316;
    float: right;
}
.ticket-header-title
{
    font-weight: 600;
    color: var(--color-action);
    font-size: 18px;
}
.store-box-product-indicator
{
    background: #047afd;
    position: absolute;
    color: #fff;
    font-size: 13px;
    /* transform: translate(-50%, -50%); */
    border-radius: 15px;
    padding: 2px;
    padding-left: 9px;
    padding-right: 9px;
    top: -13px;
    left: 19px;
    display: none;
}
.store-box-product-indicator.black
{
    background: #07111b;
}
.store-separator-title span
{
    background: #e5f1ff;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    color: #047afd;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.store-box-product.force
{
    border: 3px solid var(--color-lines);
}
.store-title
{
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--link-color);
    font-weight: 700;
    font-size: 23px;
    line-height: 25px;
    margin-bottom: 28px;
}
.store-title i 
{
    color: var(--color-master);
    font-size: 56px;
}

.pulse-cart {cursor: pointer;box-shadow: 0 0 0 var(--color-master);animation: pulse-cart 2s infinite !important;}
.pulse-cart:hover {
    animation: none;
}
@-webkit-keyframes pulse-cart {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--color-master);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
@keyframes pulse-cart {
    0% {
        -moz-box-shadow: 0 0 0 0 var(--);
        box-shadow: 0 0 0 0 var(--color-master);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}
.store-item-calc
{
    color: #97aab9;
    font-size: 13px;
}
.store-item-calc-discount
{
    color: #2ecc71;
    font-size: 13px;
}
.store-item-calc-price
{
    font-weight: 600;
    font-size: 16px;
}
.store-cart-final
{
    max-width: 50%;
    width: 100%;
}
.store-orders-box-label
{
    color: #b5c0cb;
    margin-bottom: -3px;
    font-size: 13px;
}
.store-cart-grid
{
    padding: 13px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid var(--color-lines);
}
.store-item-id
{
    background: var(--color-master);
    color: #fff;
    font-size: 11px;
    width: fit-content;
    padding: 2px;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 5px;
    border-radius: 10px 10px 10px 0px;
}
.store-item-id.green 
{
    background: #2ecc71;
    color: #fff;
}
.store-cart-amount i
{
    font-size: 20px;
    display: inline-block;
    position: absolute;
    top: 9px;
}
.store-cart-amount
{
    position: relative;
}
.menu-star-info .screen-new
{
    position: absolute;
    top: -17px;
    left: -34px;
}
.ticket-history-label
{
    font-size: 13px;
    color: #97aab9;
    max-width: 400px;
    padding-top: 2px;
}
.store-box-product-sub .amount 
{
    background: #2ecc71;
    width: 27px;
    height: 27px;
    display: inline-flex;
    border-radius: 100%;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}
.ticket-files
{
    display: flex;
    gap: 8px;
    margin-top: 2px;
    flex-wrap: wrap;
}
.ticket-files a 
{
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.content-configurator
{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 25px;
}
.configurator-context
{
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 400px;
    text-align: left;
    /* font-size: 16px; */
    color: var(--self-help-color-blue);
    position: relative;
    background: var(--self-help-background-blue);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: initial;
    gap: 10px;
    line-height: 18px;
}
.configurator-apresentation
{
    color: var(--link-color);
    font-weight: 600;
    margin: auto;
    font-size: 26px;
    /* max-width: 600px; */
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.configurator-apresentation-sub 
{
    font-size: 17px;
    margin-top: -1px;
    margin-bottom: -8px;
    text-transform: uppercase;}
.configurator-apresentation-label
{
    color: #97aab9;
    font-size: 15px;
    font-weight: 400;
    /* margin-bottom: -6px; */
}
.configurator-context i 
{
    color: var(--self-help-color-blue);
    font-size: 20px;
    display: flex;
    margin: auto;
    flex-shrink: 0;
    /* top: -20px; */
    right: 0;
    background: var(--curtain-background);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.content-buttons
{
    /* padding-bottom: 30px; */
}
.configurator-apresentation .statusbar-value
{
    margin: auto;
    width: fit-content;
    margin-top: 5px;
    margin-bottom: 10px;
}
.menu-divider
{
    margin: auto;
    margin-top: 12px;
    margin-bottom: 9px;
    border-radius: 20px;
    color: #7e7e7e;
}
.first-steps
{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 25px;
}
.first-step-box
{
    border: 1px solid var(--color-lines);
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}
.first-step-box-data
{
    line-height: 17px;
}
.first-step-box-icon
{
    color: #fff;
    width: 40px;
    height: 40px;
    background: #F9BF3B;
    font-size: 19px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.first-step-box-name
{
    font-size: 18px;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 3px;
}
.first-step-box-info 
{
    font-size: 13px;
}
.first-step-box-label
{
    color: #F9BF3B;
    font-size: 13px;
}
.first-step-box.checked .first-step-box-icon
{
    background: #2ecc71;
}
.first-step-box.checked .first-step-box-label
{
    color: #2ecc71;
}
.contract-ticket-history
{
    max-width: 300px;font-size: 13px;
}
.system-name
{
    color: #fff;
    text-transform: lowercase;
    background: #202832;
    margin: auto;
    margin-bottom: 7px;
    width: 33px;
    height: 33px;
    border-radius: 100%;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-hide-icon
{
    position: absolute;
    right: 2px;
    background: var(--container-background);
    width: 20px;
    height: 20px;
    border-radius: 20px;
    top: 28px;
    content: '\f053';
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.master-menu.compress
{
    background: var(--menu-background);
    max-width: 10px;
}
.master-menu.compress .menu-content, .master-menu.compress .submenu-content
{
    display: none;
}
.master-menu.compress:hover
{
    max-width: 280px;
    display: flex;
}
.master-menu.compress:hover .menu-content
{
    display: grid;
}
.master-menu.compress:hover .submenu-content
{
    display: block;
}
.sale-pass-name
{
    color: #202832;
    font-size: 13px;
    margin-bottom: 4px;
}
.sale-pass-price
{
    font-size: 16px;
    font-weight: 700;
    color: #202832;
    margin-bottom: 4px;
}
.sale-pass-description
{
    font-size: 11px;
}
.sale-pass-price span
{
    font-size: 11px;
}
.toption-box.checked .sale-pass-price
{
    color: #fff;
}
.toption-box.checked .sale-pass-name
{
    color: #fff;
}
.contract-select-fav
{
    margin-top: 2px;
}
.contract-select-fav button 
{
    font-size: 13px;
    height: 22px !important;
}
.unique-select
{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;

}
.unique-select.no-flex
{
    justify-content: center;
    text-align: left;
}
.unique-select.no-flex .unique-select-name
{
    line-height: 15px;
}
.unique-select-photo
{
    width: 25px;
    height: 25px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 100%;
    flex-shrink: 0;
    font-size: 13px;
    color: #9ea4ad;
    display: flex;
    align-items: center;
    justify-content: center;
}
.unique-select-name
{
    line-height: 21px;
}
.unique-select.no-flex .unique-select-photo
{
    margin: auto;
}
.unique-select-photo.x2
{
    width: 30px;
    height: 30px;
}
.unique-select-photo.x3
{
    width: 35px;
    height: 35px;
}
.unique-select-photo.red
{
    border: 2px solid #EF4648;
}
.unique-select-photo.green
{
    border: 2px solid #2ecc71;
}
[data-id="items"] .select2-container .select2-selection--single .select2-selection__rendered
{
    white-space: pre-wrap;

}
[data-id="items"] .select2-container .select2-selection--single 
{
    min-height: var(--field-heigth);
    height: auto;
    padding-bottom: 0;
    border-radius: 30px !important;
    padding: 6px !important;
}
[data-id="items"] .select2-container--default .select2-selection--single .select2-selection__clear {
    margin-left: 5px;
    display: none;
}
[data-id="items"] .tmultivalues
{
    padding: 0 !important;
    margin-left: -7px;
    border: none;
    overflow: unset;
}
[data-id="items"] tbody tr:first-child
{
    padding: 0px;
}
[data-id="items"] .select2-selection__arrow
{
    margin-top: 11px !important;
}
[data-id="items"] .select2-selection__clear
{
    margin-top: 4px !important;
}
[data-id="items"] .select2-container .select2-selection--single .select2-selection__arrow 
{
    margin-top: 5px;
    padding-right: 20px;
    margin: 0;
    padding: 0;
    top: 30%;
    transform: translateY(-50%);
    right: 9px;
}
[data-id="items"] .select2-selection__placeholder
{
    display: flex;
}
.crd-elastic-alert
{
    font-size: 11px;
    color: #ff9f1a;
    padding-left: 7px;
}
.grid-price-row
{
    display: flex;
    gap: 10px;
}
.grid-price-column
{
    border: 1px solid var(--color-lines);
    padding: 8px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--submenu-background);
    /* transition: background-color 0.5s ease, transform 0.5s ease; */
}
.grid-price-content
{
    gap: 10px;
    display: grid;
    position: relative;
    padding-bottom: 30px;
}
.grid-price-fields-label
{
    display: grid;
    position: relative;
    text-align: left;
}
.grid-price-fields-label label 
{
    font-size: 13px;
    margin-bottom: 3px;
    margin-top: 3px;
    flex-shrink: 0;
}
.grid-price-fields
{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
}
.grid-price-column.w1
{
    width: 100px;
    background: var(--container-background);
    word-wrap: break-word; /* Permite a quebra de palavras longas */
}
.grid-price-column.w3
{
    width: 200px;
}
.grid-price-column.w2
{
    width: 215px;
    min-height: 111px;
}
.grid-price-column.head
{
    border: 1px solid transparent;
    background: transparent;
    min-height: unset;
}
.grid-price-column.bold 
{
    font-weight: 600;
    background: var(--container-background);
}
.grid-price-column.head span
{
    display: block;
    font-size: 20px;
}
.grid-price-copy
{
    position: absolute;
    right: 2px;
    top: 4px;
    width: 25px;
    height: 25px;
    display: grid;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.grid-price-copy a
{
    background: var(--button-background);
    border-radius: 100%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 5px;
}
.grid-price-copy a:hover 
{
    background: var(--color-master);
    color: #fff;
}
.grid-price-row:hover > .grid-price-column
{
    /* background: #f0f3f8;
    border: 1px solid #f0f3f8; */
}
.grid-price-row.head
{min-height: unset;}
.grid-price-body
{
    gap: 10px;
    display: grid;
    padding-bottom: 47px;
}
.grid-price-content.fixed .grid-price-row.head
{
    position: sticky;
    top: 0;
    z-index: 99;
}
.grid-price-content.fixed .head
{
    border-radius: 0px 0px 10px 10px;
}
.grid-price-column:hover
{
    background: var(--self-help-background-blue);
    opacity: 1 !important;
}
.grid-price-column.highlight
{
    /* background: #ffffff; */

    /* transition: background-color 0.5s ease, transform 0.5s ease; */
}
.grid-price-column.head.highlight, .grid-price-column.head.highlight .profile-title2
{
    background: var(--color-master) !important;
    color: #fff !important;
    /* transition: background-color 0.5s ease, transform 0.5s ease; */
}
.grid-price-column.w1.highlight
{
    background: var(--color-master) !important;
    color: #fff !important;
    /* transition: background-color 0.5s ease, transform 0.5s ease; */
}
.grid-price-column.w1.fixed
{
    position: absolute;
    /* height: 212px; */
    z-index: 95;
}
.grid-price-column.w1.head.fixed
{
    background: transparent;
}
.grid-price-column.copy-left
{
    background-color: #d5e7ff;
    animation: flash 1s infinite;
    border: 1px solid #d5e7ff;
}
@keyframes copy-left {
    0%, 100% {
        background-color: #d5e7ff;
    }
    50% {
        background-color: #d5e7ff;
    }
}
.grid-price-column.clean-self
{
    opacity: 0.5 !important;
}
.grid-price-column.empty
{
    opacity: 0.2;
    background: transparent;
}
.grid-price-footer
{
    border-top: 1px solid var(--color-lines);
    padding-top: 10px;
    padding-bottom: 10px;
    background: var(--area-background);
    position: fixed;
    bottom: 8px;
    width: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -9px;
    padding-left: 9px;
}
.grid-price-helper
{
    /* color: red; */
}
.grid-price-column.w1 .icon-profile2
{
    margin-bottom: 5px;
    width: 40px !important;
    height: 40px !important;
    background: #fff;
    color: initial;
}
.period-boxer .schedule-menu-box
{
    /* background: #f0f3f8; */
    /* border-radius: 10px; */
    padding-top: 10px;
    padding-bottom: 10px;
}
.boxer-period
{
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.boxer-period-box
{
    border: 1px solid var(--color-lines);
    padding: 10px;
    border-radius: 15px;
    flex-shrink: 0;
    width: 54px;
    /* display: flex; */
    align-items: center;
    gap: 6px;
}
.boxer-period-box-icon
{
}
.boxer-period-box-text
{
}
.boxer-period-box-icon i 
{
    font-size: 19px;
    margin-bottom: -4px;
    display: flex;
}
.boxer-period-box.pass
{
    background: #f0f3f8;
    color: #c3cfe3;
}
.boxer-period-box.publish
{
    background: #2ecc71;
    color: #fff;
    border-color: #2ecc71;
}
.boxer-period-box.disable
{
    background: #ff9f1a;
    color: #fff;
    border-color: #ff9f1a;
}
.boxer-period-box-month
{margin-bottom: -4px;font-weight: 800;font-size: 19px;}
.boxer-period-box:hover 
{
    opacity: 0.7
}
.boxer-period-box.only
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.self-help-content
{
    /* margin: auto; */
    /* margin-top: 20px; */
    text-align: left;
    color: var(--self-help-color-blue);
    position: relative;
    background: var(--self-help-background-blue);
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: initial;
    gap: 10px;
    line-height: 18px;
    font-size: 13px;
    line-height: 17px;
    align-items: center;
    width: fit-content;
}
.self-help-content.w30
{
    max-width: 400px;
}
.self-help-content.w50
{
    max-width: 50%;
}
.self-help-content.w100
{
    max-width: unset;
    width: 100%;
}
.self-help-icon i 
{
    color: var(--self-help-color-blue);
    font-size: 17px;
    display: flex;
    margin: auto;
    flex-shrink: 0;
    /* top: -20px; */
    right: 0;
    background: var(--area-background);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.self-help-text .tbuttonpress
{
    background: transparent;
    padding: 0;
    height: auto;
    gap: 2px;
    /* margin-top: 5px; */
    text-decoration: underline;
    text-decoration-color: var(--color-master);
}
.self-help-text .tbuttonpress *
{
    color: var(--color-master) !important;
}
.self-help-title
{
    color: var(--link-color);
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
    margin-top: 28px;
}  
.post-title
{
    color: var(--link-color);
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 5px;
    /* margin-top: 28px; */
}
.self-help-resume
{
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.self-help-text hr
{
    border-color: #d6eaff;
    margin-bottom: 4px;
    margin-top: 4px;
}
.self-help-text
{
    padding-right: 10px;
}
.self-help-text ol li 
{
    margin-bottom: 10px;
}
.period-boxer
{
    margin-bottom: 10px;
}
.reference-flex-display
{
    display: flex;
    gap: 8px;
    align-items: center;
}
.reference-flex-display-photo
{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: var(--container-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--link-color);
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    flex-shrink: 0;
}
.reference-flex-display-text
{
    color: var(--link-color);
    line-height: 16px;
    font-size: 13px;
}
.reference-flex-display-attr
{
    color: var(--text-label);
    font-size: 12px;
    margin-top: 2px;
}
.reference-flex-display-text.bold 
{
    font-weight: 700;
}
.toption-box.checked .reference-flex-display-text
{
    color: #fff;
}
.daily-go
{
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 17px;
}
.sale-daily-display
{
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 10px;
}
.sale-daily-display-nav
{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--container-background);
    border-radius: 15px;
    padding: 5px;
    font-size: 13px;
    flex-shrink: 0;
}
.sale-daily-display-date
{
    color: var(--color-master);
    font-size: 20px;
    font-weight: 700;
    padding-left: 4px;
}
.sale-daily-display-date:hover
{
    opacity: 0.7
}
.sale-daily-display-date.pass 
{
    color: #566877;
}
.sale-daily-display-date.next 
{
    color: #0369da;
}
.reference-flex-display.size2 .reference-flex-display-photo
{
    width: 35px;
    height: 35px;
}
.reference-flex-display.size3 .reference-flex-display-photo
{
    width: 30px;
    height: 30px;
}
.reference-flex-display.size3 
{
    font-size: 13px;
}
.self-help-content.orange
{
    color: var(--self-help-color-orange);
    background: var(--self-help-background-orange);
}
.self-help-content.orange i 
{
    color: var(--self-help-color-orange);
}
.self-help-content.orange .self-help-text .tbuttonpress *
{
    color: var(--self-help-color-orange) !important;
}
.self-help-content.orange .self-help-text .tbuttonpress
{
    text-decoration-color: var(--self-help-color-orange);
}
.self-help-content.red
{
    color: var(--self-help-color-red);
    background: var(--self-help-background-red);
}
.self-help-content.red i 
{
    color: var(--self-help-color-red);
}
.self-help-content.red .self-help-text .tbuttonpress *
{
    color: var(--self-help-color-red) !important;
}
.self-help-content.red .self-help-text .tbuttonpress
{
    text-decoration-color: var(--self-help-color-red);
}
.crd-elastic-reserve-label
{
    background: #797a7d;
    color: #fff;
    padding: 1px;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 22px;
    margin-right: 4px;
    font-size: 12px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-left: 3px;
    margin-top: 3px;
}
.tinterface-helpe-content
{
    border: none;
}
.post-display
{
  background: var(--color-background-button-grid);
  height: 100px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 9px;
  display: flex;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
}
.post-display i 
{
  font-size: 40px;
  color: #999ba7;
}
.post-image
{
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center !important;
    width: 100%;
    height: 113px;
    border-radius: 10px;
    margin-bottom: 13px;
    position: relative;
}
.post-title-reference h1 
{
    color: var(--color-title);
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 0;
}
.content-actions
{
    display: flex;
    gap: 4px;
    /* margin-top: 5px; */
}
.post-subtitle
{
    color: #94999d;
    margin-bottom: 5px;
    font-size: 17px;
}
.post-view iframe
{
    width: 100%;
    max-width: 600px;
    height: 336px;
    border: none;
    display: block;
    margin-bottom: 21px;
    border-radius: 10px;
}
.post-nag
{
    display: flex;
    gap: 5px;
    justify-content: space-between;
    margin-top: 10px;
}
.post-list-subtitle
{
    font-size: 13px;
}
.post-page-break {
    color: var(--color-title);
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    margin-top: 24px;
}
.post-list-subtitle .tbuttonpress.link.wrap {
    white-space: break-spaces;
    color: #202832;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 7px;
    margin-top: 5px;
    text-align: left;
}
.repeat-title 
{
    font-size: 18px;
    /* margin-bottom: 13px; */
    font-weight: 700;
    padding-top: 15px;
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: var(--link-color);
}
.repeat-fields
{
    display: flex;
}
.repeat-input
{
    color: red;
}
.repeat-box.provided
{
    background: #000000;
}
.repeat-box.reserved
{
    background: #3c40c6;
}
.repeat-box.canceled
{
    background: #acacac;
    text-decoration: line-through !important;
}
.repeat-box.error
{
    background: #EF4648;
}
.repeat-box
{
    margin-top: 6px;
    min-height: 40px;
    width: 100%;
    display: grid;
    align-items: center;
    color: #fff !important;
    font-size: 10px;
    border-radius: 10px;
    padding: 7px;
    line-height: 12px;
    cursor: pointer;
}
.repeat-box:hover 
{
    opacity: 0.8 !important;
}
.repeat-ball
{
    color:#fff;
}
.post-time
{
    background: var(--color-master);
    position: absolute;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    padding: 1px;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 9;
}
.post-time2
{
    background: var(--color-master);
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    padding: 1px;
    padding-left: 10px;
    padding-right: 10px;
    height: 20px;
}
.signature-update-box
{
    /* border: 1px solid var(--color-lines); */
    padding: 15px;
    border-radius: 10px;
    flex-shrink: 0;
    border: 1px solid var(--color-lines);
    background: #fafbfb;
}
.signature-update-label
{
    font-size: 13px;
    color: #97aab9;
}
.signature-update-last
{
    font-size: 13px;
}
.signature-update
{
    /* background: #f0f3f8; */
    margin-top: 4px;
    /* padding: 10px; */
    /* border-radius: 20px; */
    display: grid;
    gap: 10px;
}
.signature-update-customer
{
    font-weight: 700;
}
.signature-update-input
{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
}
.signature-update-input i 
{
    font-size: 20px;
    color: var(--color-master);
}
.signature-update-box.copy-left
{
    background-color: #d5e7ff;
    animation: flash 1s infinite;
    border: 1px solid #d5e7ff;
}
@keyframes copy-left {
    0%, 100% {
        background-color: #d5e7ff;
    }
    50% {
        background-color: #d5e7ff;
    }
}
.full-calendar-row-day.holiday
{
    color: red;
}
.tcalendarflex-display-day .circle-bk
{
    width: 25px;
    height: 25px;
    margin-top: -2px;
}
.pass-balances
{
    border: 1px solid var(--color-lines);
    padding: 15px;
    border-radius: 10px;
    margin-top: 7px;
}
.wallet-totals-content
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}
.wallet-totals
{
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: 10px;
}
.wallet-totals .tbox-status 
{
    margin-left: auto;
    margin-right: 0px;
    margin-bottom:0;
}
.calendar-states
{
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}
.tcalendarflex-box.pass.action 
{
    cursor: pointer;
}
.tcalendarflex-month-control-arrow 
{
    background: var(--container-background);
}
.integration-box
{display: flex;gap: 6px;align-items: center;font-weight: 700;font-size: 14px;margin-bottom: 4px;flex-shrink: 0;}

.integration-box i
{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.integration-title
{
    font-size: 25px;
    font-weight: 700;
    color: #202838;
    text-align: center;
    line-height: 29px;
    margin-bottom: 11px;
}
.integration-subtitle
{margin-bottom: 10px;}
.integration-qrcode
{
    border-radius: 15px;
    border: 2px solid var(--color-border);
    margin: auto;
    margin-bottom: 15px;
    width: fit-content;
    padding: 7px;
}
.integration-qrcode.expire
{
    filter: blur(5px)
}
.integration-content-whatsapp
{
    max-width: 400px;
    margin: auto;
    text-align: center;
    margin-top: 50px;
}
.integration-qrcode img 
{
    width: 215px;
}
#integration-time-counter
{
    font-weight: 700;
    color: #202838;
}
.integration-icon
{
    color: #2ecc71;
    font-size: 80px;
    /* margin-bottom: -13px; */
}
.customer-line-notice
{
    display: grid;
    gap: 5px;
    margin-bottom: 10px;
}
.qrcode-generator-result
{
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 10px;
    width: fit-content;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
.qrcode-generator-result.limit 
{
    max-width: 230px;
    height: fit-content;
}
.qrcode-generator-result.limit img 
{
    width:100%;
    height: 100%;
}
.tcalendarflex-box.selected
{
    background: #edf5ff !important;
}
.tcalendarflex-box.selected .tcalendarflex-day
{
    color: initial !important;
}
abbr
{
    color: var(--color-master);
}
.tcarddatagrid-card
{
    border-radius: 20px;
}
.tnotify-container {
    backdrop-filter: blur(10px);
}
.tbuttonpress i {
    font-size: 14px;
}
.tcarddatagrid-card-button i {
    display: block;
    font-size: 18px;
    line-height: unset;
    /* margin-bottom: 3px; */
}
.tformstruct-actions .tbuttonpress.link
{
    padding-left: 6px;
    padding-right: 6px;
}
.tresult-box i
{
    font-size: 27px;
}
.tbuttonpress.circle.small 
{
    width: 25px;
    height: 25px;
}
.tbuttonpress.circle.small i
{
    font-size: 12px;
}
.tresult-result {
    margin-bottom: -5px;
}
.tcarddatagrid-card-reduced-icon
{
    font-size: 13px;
}
.tcarddatagrid-card-buttons 
{
    border-radius: 20px;
}
.toption-box i {
    font-size: 16px;
    margin-bottom: 3px;
    display: block;
    line-height: 24px;
}
  .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
  }
  .loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid var(--color-master);
    animation: prixClipFix 2s linear infinite ;
  }

  @keyframes rotate {
    100%   {transform: rotate(360deg)}
  }

  @keyframes prixClipFix {
      0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
      25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
      50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
      75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
      100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
  }

i[class^="fi-rr-"]:before, i[class*=" fi-rr-"]:before, span[class^="fi-rr-"]:before, span[class*="fi-rr-"]:before {
    line-height: unset !important;
}
.tnotify-icon {
    color: var(--color-master);
    font-size: 37px;
    margin-bottom: 0px;
}

.chat-content
{
    display: flex;
    width: 100%;
    gap: 10px;
    height: 95%;
    position: relative;
}
.chat-talk
{
    border-radius: 15px;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--color-lines);
    cursor: pointer;
    color: var(--text-color) !important;
}
.chat-talk-name
{
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}
.chat-talk.block 
{
    opacity: 0.5
}
.chat-talk.checked 
{
    background: var(--chat-bot-background) !important;
    border: 1px solid var(--submenu-background);
}
.chat-talk:hover
{
    background: var(--submenu-background);
}
.chat-talk-content
{
    max-width: 290px;
    min-width: 290px;
    width: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    overflow: auto;
    height: 90%;
    padding-right: 10px;
}
.chat-message-content
{
    border: 1px solid var(--color-lines);
    border-radius: 15px;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
}
.chat-talk-photo
{
    display: flex;
    background: var(--container-background);
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 100%;
    position: relative;
    background-size: cover !important;
    border: 1px solid var(--color-lines);
}
.chat-message-photo
{
    display: flex;
    background: var(--container-background);
    width: 25px;
    height: 25px;
    border-radius: 100%;
    flex-shrink: 0;
    background-size: cover !important;
}
.chat-message-text
{
    font-size: 13px;
    background: var(--container-background);
    padding: 13px;
    border-radius: 0px 20px 20px 20px;
    width: fit-content;
    font-size: 13px;
    line-height: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.chat-talk-preview
{
    color: var(--text-label);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    margin-top: -2px;
}
.chat-message
{
    display: flex;
    gap: 5px;
    max-width: 50%;
    margin-bottom: 10px;
    position: relative;
}
.chat-message.bot
{
    flex-direction: row-reverse;
    margin-left: auto;
}
.chat-message.bot .chat-message-photo
{
    background: transparent;
}
.chat-message-display
{
    margin-bottom: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.chat-message.bot .chat-message-text
{
    background: var(--chat-bot-background);
    color: var(--chat-bot-color);
    border-radius: 20px 0px 20px 20px;
}
.chat-message-attrs
{
    display: flex;
    gap: 5px;
    font-size: 10px;
    margin-top: 5px;
    justify-content: end;
    padding-right: 6px;
}
.chat-message.bot.only-run .chat-message-text
{
    background: transparent;
    border: 1px solid var(--color-lines);
}
.chat-message-run
{ 
    background: #fff;
    color: var(--color-master);
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 25px;
    width: fit-content;
    padding: 2px;
    padding-left: 9px;
    padding-right: 7px;
    font-size: 11px;
    margin-top: 8px;
}
.chat-message-hour
{
    display: flex;
    gap: 3px;
}
.chat-message-data
{
    height: auto;
    overflow: auto;
    padding-right: 10px;
}
.chat-display-left
{
    display: flex;
    gap: 8px;
    align-items: center;
}
.chat-display-right
{
    display: flex;
    gap: 5px;
    align-items: center;
}
.chat-total-messages
{
    font-size: 13px;
    border-right: 1px solid var(--color-lines);
    padding-right: 10px;
    text-align: right;
}
.chat-display-photo
{
    background: var(--container-background);
    width: 45px;
    height: 45px;
    border-radius: 100%;
}
.chat-display-name
{
    font-weight: 600;
}
.chat-display-number
{
    color: var(--text-label);
    margin-top: -3px;
}
.chat-talk-ball
{
    background: red;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    position: absolute;
    right: 4px;
    top: 0px;
}
.chat-message.bot .chat-message-text:hover 
{
    opacity: 0.8
}
.chat-view-message
{
    line-height: 24px;
    font-size: 17px;
    margin-bottom: 15px;
    border: 1px solid var(--color-lines);
    border-radius: 20px;
    padding: 20px;
}
.chat-message.bot.error .chat-message-text
{
    color: #EF4649;
    background: #fff3f3;
}
.chat-message.bot.error .chat-message-text:before
{
    content: "\e61e";
    position: absolute;
    font-family: uicons-regular-rounded !important;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    /* left: 30px; */
    top: 13px;
    margin-left: -44px;
    color: #EF4649;
    background: #fff3f3;
}
.chat-tokens
{
    display: flex;
    gap: 2px;
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.chat-tokens div
{
    background: var(--container-background);
    border-radius: 24px;
    padding-left: 8px;
    padding-right: 8px;
}
.chat-date
{width: 100%;border-bottom: 1px solid var(--color-lines);padding-bottom: 7px;margin-bottom: 30px;margin-top: 30px;text-align: center;}
.chat-empty
{
    display: grid;
    justify-content: center;
    text-align: center;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.chat-empty i 
{
    color: var(--text-label);
    font-size: 67px;
    margin-bottom: -5px;
}
.chat-talk-add
{
    display: flex;
    font-size: 13px;
    gap: 8px;
}
.chat-talk-add div 
{
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
}
.chat-talk-add div i 
{
    font-size: 12px;
}
.chat-talk-title
{
    font-weight: 600;
}
.customer-view-content
{
    display: flex;
    margin-bottom: 6px;
    gap: 7px;
    align-items: center;
}
.customer-view-content a:hover
{
    opacity: 0.7
}
.customer-view-master 
{
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.customer-view-photo
{
}
.customer-view-info
{
    line-height: 23px;
}
.customer-view-phone
{font-size: 14px;color: var(--text-label);display: flex;align-items: center;gap: 4px;}
.customer-view-attr
{
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.customer-view-phone div
{
    display: flex;
    gap: 3px;
    align-items: center;
}
.customer-view-attr div i
{
    font-size: 13px;
    color: var(--color-master);
}
.customer-view-attr div 
{
    display: flex;
    gap: 5px;
    font-size: 13px;
}
.menu-box3 dotlottie-player
{
    margin: auto;
    width: 47px;
    height: 47px;
    border: 2px solid var(--color-lines);
    border-radius: 100%;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    background: var(--submenu-background);
}
.menu-box3 dotlottie-player:hover 
{
    opacity: 0.7
}
.menu-box3 dotlottie-player::after
{
    content: 'bot';
    background: var(--color-master);
    color: #fff;
    /* border-radius: 100%; */
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 33px;
    /* padding: 13px; */
    white-space: nowrap;
    border-radius: 15px;
    padding-left: 5px;
    padding-right: 5px;
    left: 9px;
}
.bot-wellcome
{color: var(--link-color);font-size: 20px;/* margin-bottom: 13px; */font-weight: 600;line-height: 25px;margin-bottom: 10px;}
.bot-text
{
    color: var(--chat-bot-color);
    font-size: 13px;
    margin-bottom: 10px;
    background: var(--chat-bot-background);
    border-radius: 0px 20px 20px 20px;
    padding: 12px;
}
.bot-info
{display: flex;flex-wrap: wrap;gap: 5px;flex-direction: column;margin-bottom: 15px;}
.bot-info div
{font-size: 11px;background: var(--chat-bot-background);padding: 4px;border-radius: 0px 24px 24px 24px;padding-left: 8px;padding-right: 8px;color: var(--chat-bot-color);width: fit-content;}
.bot-text-separator
{
    color: var(--text-label);
    font-size: 12px;
    margin-bottom: 10px;
}
.bot-animation dotlottie-player
{
    width: 100px;
    height: 100px;
    margin-left: -10px;
    margin-bottom: -6px;
}
.tformtruct-button:after {
    background: linear-gradient(90deg, transparent 10%, var(--area-background) 100%);
}
.tdatagridcard-block
{
    background: var(--datagrid-card-block);
}
.self-help-text h2
{
    color: var(--color-title);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}
.self-help-text h3
{
    color: var(--color-title);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}
.bill-sub-info-round
{border-radius: 24px;padding-left: 6px;padding-right: 6px;font-size: 12px;width: fit-content;margin-top: 1px;white-space: nowrap;background: #f0f3f8;}

.bill-sub-info-round {}
.notice-column p 
{
    margin: 0;
}
.reserve-field-title
{
    font-weight: 600;
}
.reserve-field-result
{
    color: var(--text-label);
}
.chat-indicators
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
    gap: 5px;
}
.chat-indicators .indicators-div 
{
    background: var(--button-background);
    font-size: 12px;
    border-radius: 24px;
    padding: 4px;
    padding-left: 11px;
    padding-right: 11px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.chat-indicators .green
{
    background: #2ecc71;
    color: #fff;
}
.chat-indicators .red
{
    background: #ff3838;
    color: #fff;
}
.chat-indicators .orange
{
    background: #ff9f1a;
    color: #fff;
}
.chat-integration
{
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}
.chat-integration-button
{
    padding: 14px;
    text-align: left;
    border-radius: 15px;
    font-size: 13px;
    line-height: 18px;
    border: 1px solid var(--color-lines);
    cursor: pointer
}
.chat-integration-button.checked 
{
    background: var(--color-master) !important;
    border: 1px solid var(--submenu-background);
    color: #fff !important;
}
.chat-integration-button:hover
{
    background: var(--submenu-background);
}
.chat-integration-title
{
    font-weight: 600
}
.chat-integration-units
{
    /* color: var(--text-label); */
}
.chat-icons-run
{
    display: flex;
    gap: 5px;
}
.chat-icons-run i
{
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-talk-menu
{
    display: none;
}
.chat-display-name button 
{
    background: unset;
    padding: 0;
    height: auto;
    font-weight: 600;
}
.chat-display-name button span
{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}
.target-content
{
    /* display: flex; */
    width: fit-content;
    margin-left: auto;
    align-items: center;
    gap: 7px;
    margin-right: 15px;
    margin-bottom: 4px;
    text-align: right;
}
.target-result
{
    background: #2ecc71;
    border-radius: 24px;
    padding: 5px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
    color: #fff;
}
.loader-talk 
{
    width: 100%;
    height: 4.8px;
    display: none;
    position: relative;
    background: rgba(1, 98, 244, 0.15);
    overflow: hidden;
    border-radius: 24px;
}
.loader-talk::after 
{
    content: '';
    width: 50px;
    height: 4.8px;
    background: var(--color-master);
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    border-radius: 24px;
    animation: animloader 1s linear infinite;
}
@keyframes animloader 
{
    0% {
        left: 0;
        transform: translateX(-100%);
    }
    100% {
        left: 100%;
        transform: translateX(0%);
    }
}
.loader-talk-area
{
    height: 5px;
    margin-bottom: -7px;
}    
.chat-talk-search form
{
    display: flex;
    gap: 5px;
    margin-bottom: 3px;
    margin-top: 4px;
}
.chat-talk-search form input 
{
    width: 100%;
}
.option-resource-name
{
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}  
.option-resource-description ul 
{
    padding-left: 17px;
    padding-bottom: 0;
    margin-bottom: 0;
}
.option-resource-content
{
    padding: 10px;
}
.integration-number
{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 15px;
    letter-spacing: 8px;
}
#container-connection-success
{
    display: none;
}


.know-text .tbuttonpress
{
    background: transparent;
    padding: 0;
    height: auto;
    gap: 2px;
    /* margin-top: 5px; */
    text-decoration: underline;
    text-decoration-color: var(--color-master);
}
.know-title
{
    color: var(--link-color);
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
    /* margin-top: 28px; */
}  
.know-date
{
    margin-bottom: 10px;
}
.know-subtitle
{
    color: var(--text-label);
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 23px;
}
.know-text hr
{
    border-color: #d6eaff;
    margin-bottom: 4px;
    margin-top: 4px;
}
.know-text
{
    padding-right: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
    line-height: 26px;
}
.know ol li 
{
    margin-bottom: 10px;
}
.know-text h2
{
    color: var(--color-title);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
}
.know-text li 
{
    margin-bottom: 5px;
}
.know-text h3
{
    color: var(--color-title);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
}
.know-image-display
{
    height: 350px;
    border-radius: 15px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-bottom: 15px;
}
.know-category
{
    border-radius: 25px;
    height: 29px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    background: var(--container-background);
}
.know-like
{
    display: flex;
    align-items: center;
    background: var(--submenu-background);
    width: fit-content;
    border-radius: 15px;
    gap: 4px;
    padding: 14px;
    padding-bottom: 7px;
    padding-top: 7px;
    margin-bottom: 10px;
}
.know-action
{
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 4px;
    margin-top: 5px;
}
.tbuttonpress.circle.red
{
    background: #F44336;
    cursor: unset;
}
.tbuttonpress.circle.green
{
    background: #2ecc71;
    cursor: unset;
}
.tbuttonpress.circle.green i, .tbuttonpress.circle.red i  
{
    color: #fff !important;
}
.know-title-link
{
    font-size: 13px;
    line-height: 19px;
}
.know-title-link:hover
{
    text-decoration: underline;
}
.know-tags
{
    display: flex;
    gap: 3px;
    margin-bottom: 5px;
}
.know-tags i
{
    background: var(--container-background);
    width: 25px;
    height: 25px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.know-page-break
{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}
.know-labels
{
    display: flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 10px;
}
.know-labels div 
{
    margin: 0
}
.know-completed
{
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    border-radius: 15px;
}
.know-image
{
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center !important;
    width: 100%;
    height: 113px;
    border-radius: 10px;
    margin-bottom: 0;
    position: relative;
    border-radius: 15px;
}
.image-block
{
    border:  1px solid var(--color-lines);
    padding: 13px;
    border-radius: 23px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: fit-content;
}
.image-block img 
{
    width: 100%;
    border-radius: 10px;
}

@media screen and (max-width: 800px) {

    .notice-signatures
    {
        display: grid;
        gap: 10px;
    }
    .page-header-tag {
        display: flex;
    }
    .tpagecontainer-box {
        margin-left: 20px;
        margin-right: 20px;
    }
    .bar-content {
        /* width: 47px; */
        margin-right: 13px;
        margin-top: -20px;
        /* position: fixed; */
        left: 0;
        display: flex;
        position: fixed;
        top: 80px;
        width: 100%;
        background: #f9fafa;
        height: 66px;
        border-radius: 0;
        z-index: 995;
        padding: 12px;
        padding-top: 15px;
        border-bottom: 1px solid #e1e9e9;
    }
    .bar-icon {
        width: 33px;
        height: 33px;
        font-size: 20px;
        padding-top: 2px;
    }
    .page-header-top {
        margin-bottom: 12px;
    }
    .user-box {
        margin-top: 78px;
    }
    .page-special {
        /* margin-left: 41px; */
        margin-top: 80px;
    }
    .external-area {
        width: 90%;
    }
    .bar-photo .icon-profile2 {
        padding-top: 7px;
        width: 40px;
        height: 40px;
        margin-bottom: 0px;
        font-size: 17px;
        margin-top: -10px;
    }
    .bar-photo {
        height: 50px;
        width: 50px;
        margin-right: 4px;
        border-radius: 50px;
        margin-top: -8px;
    }
    .bar-photo i {
        display: none;
    }
    .tfullwindow {
        width: 100%;
    }
    .card-select {
        margin-right: 0px;
    }
    .button-mobile {
        left: 63px !important;
        border-left: 1px solid #e1e9e9;
    }
    .logo-mobile {
        display: block !important;
    }
    .card-select {
        max-width: 80%;
    }
    .header-calendar-subcolumnbox1 {
        display: flex;
    }
    .card-box {
        width: 100%;
        max-width: unset;
        justify-content: center;
    }
    .art-notification-area .notice-content
    {
        /* margin-top: 50px; */
        /* margin-top: 26px; */
        /* margin-bottom: 5px; */
    }
    .notice-content
    {
        align-items: flex-start;
    }
    .notice-content i 
    {
        margin-top: 5px;
    }
    .schedule-daily-real-box
    {
        width: 100%;
        max-width: unset;
    }
    .sumenu-move {
        display: none;
    }
    .sumenu-mobile-close {
        display: none;
    }
    .toggle-mobile-admin {
        display: block;
        margin-right: 0;
    }
    .master-menu {
        display: none;
        background: var(--color-overlay);
        width: 100%;
        position: fixed;
        max-width: unset;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 998;
    }
    .toggle-mobile {
        display: flex;
        justify-content: center;
        margin-left: auto;
        background: var(--background-menu-toggle);
        width: 91px;
        height: 45px;
        position: absolute;
        right: 23px;
        top: 13px;
        align-items: center;
        font-size: 18px;
        border-radius: 100px;
        z-index: 999;
    }
    .submenu-content
    {
        /* padding-top: 25px; */
    }
    .submenu-title
    {
        margin-bottom:20px;
    }
    .page-header-tag-title
    {
        /* padding-top: 25px; */
        margin-bottom: 9px;
    }
    .store-box-product-content, .store-plan-resources-content
    {
        grid-template-columns: unset;
    }
    .store-orders-content
    {
        grid-template-columns: unset;
        grid-auto-rows: unset;
    }
    .menu-hide-icon
    {
        display: none;
    }
    .menu-reduced
    {
        display:none;
    }
    .self-help-content
    {
        width: 100% !important;
        max-width: unset !important;
    }
    .calendar-full
    {
        max-width: 100%;
    }
    .submenu-content
    {
        width: 100%;
        max-width: 230px;
    }
    .chat-talk-left
    {
        display: none;
    }
    .chat-message-display 
    {
        justify-content: right;
        gap: 8px;
    }
    .chat-message
    {
        max-width: 90%;
    }
    .chat-talk-menu
    {
        display: flex;
        width: var(--button-height);
        height: var(--button-height);
        border-radius: 100%;
        background: var(--color-master);
        flex-shrink: 0;
        color: #fff;
        font-size: 18px;
        align-items: center;
        justify-content: center;
        position: absolute;
        cursor: pointer;
        left: -16px;
    }
}
