:root {
    --font-size-title: 35px;
    --font-size-title-small: 25px;
    --font-size-content: 16px;
    --font-family-title: "Inter", sans-serif;
    --font-family-content: "Poppins", sans-serif;
    --color-primary: #007B85;
    --color-secundary: #004250;
    --color-button-hover: #5DD7E1;
}

/*cambiar color de seleccion de texto*/
::selection {
    background: var(--color-primary);
    color: #fff;
}

@media screen and (max-width: 576px) {
    :root {
        --font-size-title: 30px;
    }

}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 400ms;
}
a:hover {
    opacity: 0.8;
}

header li{
    list-style: none;
}

body {
    font-family: var(--font-family-content);
    font-size: 15px;
    margin: 0;
    padding: 0;
}

html {
    font-size: 15px;
}

input {
  /*  border: 1px solid #ccc; */
    outline: none;
}

input:focus {
    border-color: none !important;
    outline: 0;
    box-shadow: none !important;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-family-title);
}

h1 {
    font-size: 2em;
    font-weight: bold;
    margin-top: 0;
}

h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 0.5em;
}

h3 {
    font-size: 1.25em;
    font-weight: bold;
    margin-top: 0.5em;
}

h4 {
    font-size: 1em;
    font-weight: bold;
    margin-top: 0.5em;
}

h5 {
    font-size: 0.875em;
    font-weight: bold;
    margin-top: 0.5em;
}

h6 {
    font-size: 0.75em;
    font-weight: bold;
    margin-top: 0.5em;
}

p {
    font-size: 1em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}



#maui-page-container {
    position: relative;
    min-height: calc(100vh - (var(--footer-height) + var(--header-height)));
    display: flex;
    flex-direction: column;
}
/*
#maui-content-wrap {
    height: 100vh;
    display: flex;
    flex: 1;
    flex-direction: column;
}
*/
#maui-content-main {
   /* flex-grow: 1;*/
    margin-bottom: 1rem;
}

#maui-footer {
    bottom: 0;
    width: 100%;
    height: 2.5rem;
    background-color: var(--color-secundary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}

#primary-menu-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #fff;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    #primary-menu-header {
        gap: 2rem;
    }
}

#primary-menu-header a {
    color: #fff;
    transition: 400ms;

}

#primary-menu-header a:hover {
    color: var(--color-button-hover);
    transition: 400ms;
}

#loginform {
    /* 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    */
    max-width: 500px;
    margin: auto;
    background-color: #ededed;
    padding: 2rem 2rem 5rem 2rem;
    border-radius: 1rem;
    border: 1px solid lightgray;
}

#loginform .login-username,
#loginform .login-password {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    flex-direction: column;
}

#loginform .login-username input,
#loginform .login-password input {
    border: none;
    border-radius: 0.25rem;
    outline: none;
    padding: 0.8rem;
}

#loginform .login-remember {
    align-self: flex-start;
    float: left;
    margin-top: 1rem;
}

#loginform .login-remember label {
    display: flex;
    gap: 0.5rem;
}

#loginform .login-submit input[type="submit"] {
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid lightgray;
    background-color: lightblue;
    width: 100px;
    float: right;
}

#loginform .login-submit input[type="submit"]:hover {
    background-color: rgb(123, 190, 212);
    color: white;
    cursor: pointer;
}

/*generales*/
body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

ul::-webkit-scrollbar,
p::-webkit-scrollbar,
div::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 10px;
}

ul::-webkit-scrollbar-thumb,

p::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb{
    background-color: #ccc;
    border-radius: 10px;
}

.header {
    position: sticky;
    top: 0;
    background: var(--color-secundary);
    z-index: 1000;
}

.page-width {
    max-width: 220rem;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .page-width {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.border-bottom-15 {
    border-bottom: 15px solid var(--color-primary);
}

textarea:focus-visible {
    outline: none;
}

select {
    border: 1px solid #b6b6b6;
    border-radius: 6px;
    height: 40px;
    background: #fff;
    padding: 5px 15px;
}

select option {
    color: var(--color-secundary);
}

.select-status {
    background: #34A88426;
    border: 1px solid #34A884;
    border-radius: 50px;
    padding: 5px 15px;
    color: #34A884;
}

/*.box-dashboard table td {
	padding: 20px 15px !important;
}*/
.box-dashboard th,
.box-dashboard td {
    vertical-align: middle;
    font-weight: 400;
}

.tag {
    border-radius: 50px;
    padding: 5px 15px;
    font-size: 14px;
}

.tag-green {
    color: #34A884;
    background: #34A88426;
}

.maui-dashboard-area-span,
.item-dashboard thead th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    /* text-transform: uppercase; */
    padding: 6px 10px;
    /* font-size: 13px; */
    font-weight: 600;
    font-family: 'Poppins';
    letter-spacing: 0.5px;
    font-size: 0.85em;
}

.formidable-custom-title {
    color: var(--color-primary) !important;
    padding: 6px 10px;
    font-family: 'Poppins';
    letter-spacing: 0.5px;
    font-size: 0.85em;
    text-align: center;
    margin-bottom: 1rem;

    display: flex;
    justify-content: center; /* centra horizontalmente */
    align-items: center;     /* centra verticalmente */
}


.buttons-container {
    gap: 1rem;
}



.title-table {
    font-size: var(--font-size-title-small);
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}




#maui-page-container::before {
    background: var(--color-secundary);
    width: 100%;
    height: 400px;
    left: 0;
    top: 0;
    content: "";
    z-index: -2;
    position: absolute;
}
:root{
    --maui-content-wrap-height: 0px;
    --maui-content-wrap-animation: none;
}
.single-quarterly_review #maui-page-container::before, 
.single-big_rock #maui-page-container::before,
.single-action_plan #maui-page-container::before,
.page-template-page-client-qtl-review #maui-page-container::before,
.page-template-page-add-action-plans #maui-page-container::before {
    height: calc(var(--maui-content-wrap-height) - 200px);
    animation: var(--maui-content-wrap-animation);
}
@keyframes slideUpGreenPanel {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
.form-table {
    background: transparent;
    border: 1px solid #fff;
    padding: 6px;
    border-radius: 5px;
}

.form-table button {
    background: transparent;
    border: none;
    color: #fff;
}


.form-table input {
    width: 150px;
    background: transparent;
    border: none;
    color: #fff;
}

.select-table select {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    padding: 6px 8px;
    height: 40px;
    border-radius: 6px;
}


.table-actions {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background: #fff;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.table-actions .btn {
    background: transparent;
    border: none;
    color: var(--color-primary);
    transition: 400ms;

}

.table-actions .btn:hover {
    color: #000;
    transition: 400ms;
}

.table-actions .btn i {
    font-size: 15px;
}

.logo-dashboard {
    height: 150px;
    width: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {


    .buttons-container {
        gap: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .box-dashboard .btn {
        font-size: 14px;
    }

}

@media (max-width: 425px) {
    .buttons-container {
        justify-content: center !important;
        flex-direction: column;
    }

    .select-table select {
        width: 100%;
    }

    .form-table input {
        width: calc(100% - 35px);
    }
}

/*ajuste de botones*/
.btn {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    font-size: 0.90rem;
    padding: 0.5rem 0.75rem;
}

.btn.btn-success {
    background: var(--color-primary);
    transition: 400ms;
}

.btn-2 {
    background: #fff;
    color: #141414;
    border-color: #141414;
    font-size: 0.90rem;
    padding: 0.5rem 0.75rem;
}

.btn:hover {
    background: var(--color-button-hover) !important;
}

.btn-icon {
    background: transparent;
    border: none;
}

.btn-icon i {
    color: var(--color-primary);
}

.btn-icon:hover i {
    color: #000;
}

/*Ajuste de Header Dashboard*/
header .custom-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.header li .nav-link {
    color: #fff !important;
}
.nav {
    --bs-nav-link-color: var(--color-primary);
    
}
:root{
    --bs-primary-rgb: 0, 123, 133;
}
.header-notification {
    margin-right: 25px;
    color: #fff;
    position: relative;
}

.count-notification {
    position: absolute;
    bottom: 0;
    background: #a01111;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 10px;
    right: -10px;
}

.header-account .dropdown-toggle::after {
    color: #fff;
}


@media (max-width: 390px) {
    header .custom-logo {
        width: 155px;
    }
}

/*table -Actions plan*/

.ag-header-container {
    background: var(--color-primary) !important;
}

.ag-header-container span {
    color: #fff;
    text-transform: uppercase;
}

.ag-paging-panel {
    justify-content: center !important;
    border-top: none !important;
}

.ag-root-wrapper {
    border-radius: 0 !important;
}

.table-actions .ag-icon {
    color: var(--color-primary);
}

.ag-center-cols-viewport,
.ag-center-cols-container {
    height: 590px !important;
}

.ag-center-cols-container>div {
    position: relative;
    margin-bottom: -48px;
    height: 82px !important;
    padding-top: 24px;
}

.ag-center-cols-container {
    margin-top: 0px;
}

.ag-center-cols-container>div .ag-cell {
    margin-top: -21px;
    height: 82px;
    padding-top: 15px;
    margin-bottom: 15px !important;
}

.ag-center-cols-viewport .btn:hover {
    background: transparent !important;
}

.ag-center-cols-viewport .btn:hover i {
    color: #000;
    transition: 400ms;
}

/*BIG ROCKS*/

.bigrock-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1rem;
}

@media (max-width: 992px) {
    .bigrock-grid {
        grid-template-columns: 1fr 2fr;
    }
}

@media (max-width: 800px) {
    .bigrock-grid {
        grid-template-columns: 1fr;
    }
}



.box-dashboard {
    /*box-shadow: 0px 0px 12px 1px rgba(245, 245, 245, 1);*/
    background: #fff;
    border-radius: 10px;
    margin: 2rem 0 0 0;
    overflow: hidden;
    border: solid 1px #e4e4e4;
}

.header-box-dashboard {
    background: var(--color-primary);
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    padding: 6px 10px;
    width: 100%;
    display: flex;
}

.box-dashboard .p-datatable:not(.filter-table-phone) table:not(.p-datepicker-calendar) thead th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 400;
    padding: 6px 10px;
    font-size: 13px;
}
.team-table thead th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 400;
    padding: 6px 10px;
    font-size: 13px;
}
.maui-dashboard-bussines table thead th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 400;
    padding: 6px 10px;
    font-size: 13px;
}

.list-box-dashboard {
    padding-left: 0;
    margin-bottom: 0;
    overflow-y: auto;
    max-height: 845px;
}

.list-box-dashboard li {
    position: relative;
    padding: 20px 15px 20px 30px;
    border-bottom: 1px solid #dedede;
}

.list-box-dashboard li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 5px;
    top: 32px;
    /* transform: translateY(-50%); */
    left: 15px;
}

.actions-table {
    max-width: 270px;
}

.ag-center-cols-viewport .btn {
    background: transparent;
    border: none;
    color: var(--color-primary);
    transition: 400ms;
}

.ag-center-cols-viewport .btn i {
    font-size: 15px;
}

@media (max-width: 600px) {
    .actions-table {
        text-align: center;
    }
}


/*Paginacion*/
.ag-paging-row-summary-panel {
    display: none;
}


.p-dropdown-items-wrapper ul {
    padding: 0 !important;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to

/* .fade-leave-active en versiones anteriores de Vue */
    {
    opacity: 0;
}

.repeater-leave-active {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transform: translateY(50%);
    opacity: 0;
}

.repeater-counter {
    background: var(--color-primary);
    border-radius: 50%;
    width: 20px;
    display: flex;
    height: 20px;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    font-size: 13px;
    right: 17px;
    
}


.icon-delete {
    color: var(--color-primary);
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 12px;
}

span.indicator-status {
    padding: 10px;
    font-size: 20px;
    color: var(--color-primary);
    position: absolute;
    right: 0;
    bottom: 0;
    align-items: center;
    gap: 3px;
}

.slideIn {
    animation: slideIn 0.3s ease-in-out;
}

.slideOut {
    animation: slideOut 0.3s ease-in-out;
}

.repeater-section {
    display: flex;
    flex-direction: column;
}

.repeater-btn {
    max-width: 230px;
}


.p-calendar {
    max-width: 185px;
}

.p-dropdown:not(.p-paginator-rpp-options) {
    min-width: 185px;
}

.paginator-table .p-dropdown {
    min-width: 70px !important;
}

.p-dropdown-label {
    text-align: left;
}

.item-area textarea::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background-color: transparent;
    margin-top: 10px;
    margin-bottom: 10px;
}

.item-area textarea::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.item-area textarea::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.item-area textarea:focus {
    outline: none;
}

.item-area {
    overflow: hidden;
}

.item-area .title-table {
    border-bottom: 5px solid var(--color-primary);
    width: 100%;
    margin: 0 !important;
    background: #fbfbfb;
}

.item-area textarea {
    width: calc(100% - 40px);
    min-height: 120px;
    resize: vertical;
    border-radius: 15px;
    border: 1px solid #f1f1f1;
    margin: 30px auto 40px auto;
    padding: 5px 15px;
    height: auto;
}

@media (max-width: 768px) {
    .item-area textarea {
        min-height: 150px;
    }
}

.in-progress .p-button.p-highlight:before {
    background-color: #ffa07a !important;
    border-color: #ffa07a !important;
}

.done .p-button.p-highlight:before {
    background-color: #1abc9c !important;
    border-color: #1abc9c !important;
}

.done .p-button.p-highlight,
.in-progress .p-button.p-highlight {
    color: white !important;
}

.item-area:not(:first-child) {
    animation: slideUp 0.3s ease-in-out;
}

.slide-up {
    animation: slideUp 0.3s ease-in-out;
}

.fade-up {
    animation: fadeUp 0.3s ease-in-out;
}


@keyframes fadeUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.status-loading #pills-tabContent,
.status-loading #pills-tab {
    display: none;
}

.status-loading .filter-option {
    display: none !important;

}

#pills-tabContent {
 
    animation: slideUp 0.3s ease;
}

#pills-tab {
    opacity: 0;
    animation: slideInLeft 0.3s ease;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

.filter-option {
    animation: fadeIn 0.2s ease;
}

span.p-tabview-title {
    color: var(--color-primary)
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    99% {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    99% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    99% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    99% {
        opacity: 0;
    }
}

.status-completed .status {
    background: #689e88;
    padding: 2px 10px;
    border: 1px solid #035c38;
    border-radius: 10px;
}

.button-table {
    border: none;
    background: transparent;

}

.table-action {
    color: var(--color-primary);
    padding: 0;
}

textarea[disabled],
input[disabled],
.readonly {
    border: none;
    background: #f9f9f9;
}

.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.indicator-status>span {
    margin-top: 5px;
}

svg.p-icon.p-sortable-column-icon {
    opacity: 0.5;
    transform: scale(0.8);
}

.p-sortable-column:hover svg.p-icon.p-sortable-column-icon {
    opacity: 0.7;
}

span.p-column-title {
    font-weight: 600;
    font-family: 'Poppins';
    letter-spacing: 0.5px;
    font-size: 0.9em;
}

.count-pending {
    background: #9b1111;
    padding: 2px 10px;
    border: 1px solid #e4e4e4;
    color: #fff;
    min-width: 17px;
    display: block;
    text-align: center;
    height: 17px;
    padding: 0px;
    padding-top: 0px;
    font-size: 11px;
    font-family: consolas;
    border-radius: 50%
}

.p-datatable-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: #f9f9f9;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.p-datatable-wrapper::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.p-datatable-wrapper::-webkit-scrollbar-track {
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.p-datatable-wrapper::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

.button-options .btn {
    font-size: 1rem !important;
}



.button-options .btn {
    height: 45px;
}

span.p-column-title {
    text-wrap: nowrap;
}

.datatable-repeater.text-nowrap-th span.p-column-title {
    text-wrap: wrap !important;
}

th.no-th-visivle {
    display: none;
}

.chart-container {
    height: 150px;
}

.box-graphic {
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 20px;*/
    border-radius: 12px;
    max-width: 800px;
    margin: auto;
}

@media (max-width: 992px) {
    .box-graphic {
        text-align: center;
    }

    .box-graphic p {
        margin-bottom: 10px;
    }
}

.content-graphic {
    padding: 20px;
}


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

/* widgets coach recommendation and coach recommendation view */

.maui-coach-recommendation-widget{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.maui-coach-recommendation-widget li {
    font-weight: 300;
    padding-left: 9px !important;
    font-size: 13.5px;
    /* padding-right: 33px !important; */
}

.maui-coach-recommendation-widget ul {
    padding: 0;
    margin-bottom: 0;
    margin-top: 0;
}

.maui-coach-recommendation-widget ul li {
    position: relative;
    padding: 8px;
    align-items: center;
    animation: slideUp 0.5s;
    font-weight: 400;
    color: gray;
}

.maui-coach-recommendation-widget ul li:nth-child(even) {
    background: #f7f7f7;
}


.maui-coach-recommendation-widget textarea{
    width: 100%;
    height: 100px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 5px !important;
}

.maui-coach-recommendation-widget button{
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.fa-minus {
    cursor: pointer;
    color: white;
    font-size: 9px;
    background: red;
    min-height: 12px;
    min-width: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 7px; */
    transform: scale(0.8);
    /* margin-top: 5px; */
}

/* Fin widgets coach recommendation and coach recommendation view */

.login-as-user-inner, .login-as-user-content{
    border: none!important;
}
.login-as-user,.login-as-user-inner {
    background: transparent !important;
}
a.button.w357-login-as-user-btn.w357-login-as-user-frontend-btn{
    background: var(--color-primary) !important;
    box-shadow: 0 0 20px 0px #9d9c9c !important;
    transition: 400ms;
}

a.button.w357-login-as-user-btn.w357-login-as-user-frontend-btn:hover{
    background: var(--color-button-hover) !important;
}
.login-as-user-msg{
    display: none!important;
}
a.loginas svg {

    width: 0.97em;
    height: 0.97em;
}

.menu-button {
    position: relative;
}
.menu-button .submenu {
    display: none;
}
.menu-button:hover .submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 100;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-width: 220px;
    text-align: left;
    border-radius: 10px;
}
@media (max-width: 575px) {
    span.submenu {
      position: fixed !important;
      width: 95vw !important;
      margin: 0 auto;
      right: 0;
      left: 0;
      /* height: 400px; */
      top: var(--button-submenu-position-top) !important;
      border-radius: 0 !important;
    }
  }
.menu-button .submenu .submenu-item {
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.2s;
    padding: 10px;
    border-radius: 10px;
    display: block;
}
.submenu-item i{
    color: #a59e9e;
}
.menu-button .submenu .submenu-item:hover {
    background: #f5f5f5;
}

.submenu-inside {
    display: none;
    animation: slideDown 0.2s ease;
}
.submenu-inside.show {
    display: flex;
    flex-direction: column;
    text-align: left;
    text-indent: 10px;
}
.submenu-inside > .submenu-item:hover {
    background: #ffffff;
}
@keyframes slideDown {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

:root{
    --v-theme-primary: var(--color-primary);
}
button.repeater-btn.visibility-btn {
    background: transparent;
    color: var(--color-primary);
}
button.repeater-btn.visibility-btn:hover {
    background: var(--color-primary) !important;
    color:  #fff;
}

.my-bigrocks-list span{
    padding-left: 10px;
}

.my-bigrocks-list .bigrock-item {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.my-bigrocks-list .bigrock-item:nth-child(even){
    background-color: #f7f7f7;
}


.my-bigrocks-list-title span{
    margin-right: 10px;
    font-weight: 600;
}

.header-bussiness{
    display: flex;
    justify-content: space-between;

}
@media (max-width: 575px) {
    .header-account .dropdown-menu {
        right: 0;
        width: 100vw;
        position: fixed;
        left: 0;
    }
}
@media (max-width: 991px) {
    .my-command-center table:not(.p-datepicker-calendar) tr,
    .my-coaching-clients table:not(.p-datepicker-calendar) tr {
        display: flex;
        flex-direction: column;
        border: solid 1px #dfdfdf;
        margin: 8px;
        border-radius: 7px;
    }
    .my-command-center table:not(.p-datepicker-calendar) tbody tr,
    .my-coaching-clients table:not(.p-datepicker-calendar) tbody tr {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .my-command-center table:not(.p-datepicker-calendar) td,
    .my-coaching-clients table:not(.p-datepicker-calendar) td {
        padding: 4px 14px;
    }
    .p-paginator-current {   
        display: none;
    }
    .my-command-center table:not(.p-datepicker-calendar) thead th:last-child,
    .my-coaching-clients table:not(.p-datepicker-calendar) thead th:last-child {
        border-radius: 0 0 7px 7px;
    }
    .my-command-center table:not(.p-datepicker-calendar) thead th:first-child,
    .my-coaching-clients table:not(.p-datepicker-calendar) thead th:first-child {
        border-radius: 7px 7px 0 0;
    }
    .my-command-center table:not(.p-datepicker-calendar) .p-datatable-thead,
    .my-coaching-clients table:not(.p-datepicker-calendar) .p-datatable-thead {
        display: none;
    }
    .my-command-center table:not(.p-datepicker-calendar) tbody tr,
    .my-coaching-clients table:not(.p-datepicker-calendar) tbody tr {
        position: relative;
    }
}

@media (min-width: 768px) {
    .widget.upcoming-events {
        min-width: 240px !important;
    }
}
@keyframes slideUp {
    0% {
 
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
        
    }
}
@keyframes slideLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
.slideRight {
    animation: slideRight 0.5s;
}
.slideLeft {
    animation: slideLeft 0.5s;
}
.slideUp {
    animation: slideUp 0.5s;
}
.p-tabview-nav-link {
    background: none;
}
.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.8;
   /* background: var(--color-primary); */
}
li.month {
    padding: 0 !important;
}
.maui-item-event {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
@media (max-width: 768px) {
    .maui-item-event {
        flex-direction: column;
        gap: 5px;
    }
}
.maui-dashboard-area-content{
    overflow: auto;
    max-height: var(--heightFirstThreeEvents);
}
.icon-submenu{
    display: flex;
    align-items: center;
}
.slot-joined{
   position: relative;
   display: flex;
   align-items: center;
}
.slot-joined textarea{

    margin-bottom: 10px;
    margin-top: 10px;
}
.slot-joined:first-child textarea{
    margin-top: 20px !important;
}
.slot-joined:last-child textarea{
    margin-bottom: 20px !important;
}
.slot-joined .repeater-counter{
    left: 21px;
    top: auto;

}
.datatable-repeater tr td {
    border: 1px solid #cccccc;
}
@media (max-width: 768px) {
    .responsive-datatable tr{ 
        display: flex;
        flex-direction: column;
        border: 1px solid #cccccc;
        margin: 15px;
        border-radius: 15px;
    }

    .responsive-datatable.compress tr td{
        padding: 1px 20px;
    }
    .responsive-datatable:not(.compress) tr td{
        padding: 4px 20px;
    }
    .responsive-datatable:not(.compress) tr td:first-child{
        padding-top: 20px;
    }
    .responsive-datatable:not(.compress) tr td:last-child{
        padding-bottom: 20px;
    }
    .responsive-datatable.compress tr td:first-child{
        padding-top: 4px;
    }
    .responsive-datatable.compress tr td:last-child{
        padding-bottom: 4px;
    }
    .responsive-datatable  table:not(.p-datepicker-calendar) thead th:first-child
   {
        border-radius: 7px 7px 0 0px;
    }
    .responsive-datatable  .box-dashboard table:not(.p-datepicker-calendar) thead th:last-child
    {
        border-radius: 0 0 7px 7px;
    }
}
@media (min-width: 768px) {
    div#company_start_date_panel {
        max-width: 317px !important;
        min-width: 317px !important;
    }
}
@media (max-width:991px) {
    body{
        font-size: 13.5px !important;
    }
    .d-flex.actions-btns {
        font-size: 20px;
        width: 100%;
        justify-content: space-around;
        opacity: 0.7;
       
        border-radius: 7px;
        padding: 5px;
    }
    .player .vp-video-wrapper object, .player .vp-video-wrapper video{
        object-fit: cover;
    }
}

.d-flex.actions-btns {
    gap: 20px;
}
.showInPhoneMode {
    display: none;
}
.hideInPhoneMode {
    display: block;
}

@media (max-aspect-ratio: 1/1.5) {
 
    .d-flex.actions-btns {
        font-size: 20px;
        width: 100%;
        justify-content: space-around;
        opacity: 0.7;
       
        border-radius: 7px;
        padding: 5px;
    }
    .player .vp-video-wrapper object, .player .vp-video-wrapper video{
        object-fit: cover;
    }
    .showInPhoneMode {
        display: block;
    }
    .hideInPhoneMode {
        display: none;
    }
    .theadHideInPhoneMode .p-datatable-thead {
        display: none;
    }
    .justifyCenterPhone {
        justify-content: center;
    }
    .tbodyHideInPhoneMode .p-datatable-tbody {
        display: none;
    }
    .filter-table-phone thead th {
        display: flex;
        flex-direction: column;
    }
    .filter-table-phone svg {
        opacity: 1;
        color: var(--color-primary);
    }
    
    .filter-table-phone .p-column-filter {
        width: auto!important;
    }
    .filter-table-phone thead th {
        display: flex;
        flex-direction: column;
        padding: 5px 0;
    }
    .showInPhoneMode .custom-icon svg{
        width: 1.4em;
    }
    .filter-table-phone svg.p-icon {
        width: auto;
        height: 20px;
    }
    .filter-table-phone tr{
        border:none!important;
    }
    .showInPhoneMode svg{
        color: var(--color-primary);
    }
    
}

@media (max-width: 991px) {
    .showInPhoneMode {
        display: block;
    }
    .hideInPhoneMode {
        display: none;
    }
    .theadHideInPhoneMode .p-datatable-thead {
        display: none;
    }
    .justifyCenterPhone {
        justify-content: center;
    }
    .tbodyHideInPhoneMode .p-datatable-tbody {
        display: none;
    }
    .filter-table-phone thead th {
        display: flex;
        flex-direction: column;
    }
    .filter-table-phone svg {
        opacity: 1;
        color: var(--color-primary);
    }
    .filter-table-phone th:hover *{
        color: #000 !important;
    }
    .filter-table-phone .p-column-filter {
        width: auto!important;
    }
    .filter-table-phone thead th {
        display: flex;
        flex-direction: column;
        padding: 5px 0;
    }
    .showInPhoneMode .custom-icon svg{
        width: 1.4em;
    }
    .filter-table-phone svg.p-icon {
        width: auto;
        height: 20px;
    }
    .filter-table-phone tr{
        border:none!important;
    }
    .showInPhoneMode svg{
        color: var(--color-primary);
    }
}
