:root {
    --dark: #1E1E2D;
    --primary: #3699FF;
    --gray: #A2A3B7;
    --secondary: #434D6B;
    --light: #EBECF5;
}

body {
    color: #464e5f;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    display: none;
}

textarea::-webkit-scrollbar {
    display: block;
}

::-moz-selection {
    color: var(--light);
    background: var(--secondary);
}

::selection {
    color: var(--light);
    background: var(--secondary);
}

button,
label,
.info-box h2 {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    font-family: Poppins, Helvetica, "sans-serif";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
}

hr {
    border: 1px dashed #e4e4e4;
}

code {
    color: black;
    font-weight: 600;
    line-height: 20px;
}

.text-dots {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#body_loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ebecf5;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#body_loading i {
    font-size: 38px;
}


/*-------------------------------------------*\
    1. General
\*-------------------------------------------*/

.responsive-container {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}

.responsive-container-xl {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.responsive-container-xxl {
    width: 95%;
    max-width: 1480px;
    margin: 0 auto;
}

.responsive-container-xl2 {
    width: 95%;
    max-width: 1370px;
    margin: 0 auto;
}

.responsive-container-sm {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
}

.rc-small {
    max-width: 460px;
}

.text-limit {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

p.alert {
    font-size: 14px;
    color: white;
    background-color: #f44336;
    padding: 4px 8px;
    border-radius: .33rem;
    line-height: 20px;
}

.default-hide {
    display: none;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
}

.right-border-md {
    border-bottom: 1px solid #ecf0f3;
    margin-bottom: 18px;
}

.text-warning {
    color: #fff4a7 !important;
}

.text-danger {
    color: #ff5151 !important;
}

.text-primary {
    color: #03a9f4 !important;
}

.text-success {
    color: #4caf50 !important;
}

.text-secondary {
    color: #607d8b !important;
}

.c-pointer {
    cursor: pointer;
}

.text-link {
    border-bottom: 2px solid var(--gray);
    display: inline-block;
    line-height: 16px;
    color: var(--primary);
    transition: all .2s ease;
}

.text-link:hover {
    border-bottom: 2px solid var(--primary);
    font-weight: 600;
    cursor: pointer;
}

.alert-info {
    background-color: var(--light);
    border-radius: .33rem;
    font-size: 13px;
    padding: 8px;
}

.am-blur {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.text-right {
    text-align: right;
}



/*-------------------------------------------*\
    2. Container
\*-------------------------------------------*/

.container {
    display: grid;
    grid-template-columns: 220px auto;
    grid-template-rows: 60px auto;
    height: 100vh;
    width: 100vw;
}

.no-layout {
    grid-template-columns: 0 auto !important;
    grid-template-rows: 0 auto !important;
}

.no-layout .desktop-menu>*,
.no-layout .side-menu>*,
.no-layout .mobile-menu,
.no-layout .mobile-submenu {
    display: none;
}


/*-------------------------------------------*\
    3. Desktop menu
\*-------------------------------------------*/

.desktop-menu {
    background-color: #12121c;
    grid-column-start: 1;
    grid-column-end: 3;
    z-index: 9999;
}

.desktop-menu button {
    border: 0;
    background-color: transparent;
    height: 100%;
    width: 60px;
    color: #7b8ab5;
    font-size: 24px;
}

.desktop-menu button:hover {
    color: var(--primary);
    background-color: #191925;
    cursor: pointer;
}

.desktop-menu button.danger:hover {
    color: #f44336;
}

.desktop-menu button.warning:hover {
    color: #ffc107;
}

.desktop-menu .user-button {
    height: 60px;
    padding: 10px 14px 10px 4px;
    line-height: 40px;
}

.desktop-menu .user-button span {
    color: #f0f0f2;
    height: 40px;
    display: inline-block;
    border-left: 1px solid #525279;
    padding-left: 14px;
}

.desktop-menu .user-button div {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    background-color: #3085d6;
    border-radius: 50%;
    font-size: 22px;
    margin-left: 6px;
    color: #fff;
}

.desktop-menu .user-button:hover {
    background-color: #191925;
    cursor: pointer;
}


/*-------------------------------------------*\
    4. Side menu
\*-------------------------------------------*/

.side-menu {
    background-color: #1E1E2D;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-menu button {
    width: 100%;
    height: 60px;
    border: 0;
    background-color: transparent;
    color: #9e9eb2;
    transition: all .2s;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    font-weight: 500;
}

.side-menu button i {
    display: block;
    font-size: 21px;
    width: 60px;
}

.side-menu button:hover,
.side-menu button.active {
    color: var(--primary);
    background-color: #2c3550;
    /* box-shadow: inset 0 0 20px rgba(30, 30, 45, 0.3); */
    cursor: pointer;
}

.side-menu span {
    font-size: 15px;
    line-height: 36px;
}

.button-submenu button {
    padding-left: 60px;
    height: 46px;
    font-size: 15px;
    background-color: #2c3550;
    color: #a7afc5;
}

.button-submenu button:hover,
.button-submenu button.active {
    background-color: #21293f;
    color: var(--primary);
    cursor: pointer;
}

.side-menu span.cooming-soon {
    display: inline-block;
    margin-left: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    background-color: #607D8B;
    line-height: 14px;
    padding: 0 4px;
    border-radius: .33rem;
}

.side-menu span.new {
    display: inline-block;
    margin-left: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    background-color: #009688;
    line-height: 14px;
    padding: 0 4px;
    border-radius: .33rem;
}

.side-menu-version span {
    display: block;
    font-size: 14px;
    text-align: center;
    background-color: #313149;
    line-height: 22px;
    color: #8c8caf;
    font-family: monospace;
    font-weight: 600;
}


/*-------------------------------------------*\
    5. Mobile nenu
\*-------------------------------------------*/

.mobile-menu {
    background-color: var(--dark);
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    text-align: center;
    display: none;
    z-index: 1;
}

.mobile-menu button {
    border: 0;
    background-color: transparent;
    height: 100%;
    width: 60px;
    color: #a2adce;
    font-size: 24px;
}

.mobile-menu button.important {
    width: 40px;
    height: 40px;
    margin: 10px;
    background-color: var(--light);
    color: var(--primary);
    border-radius: 50%;
}

.mobile-submenu {
    background-color: #151521;
    position: fixed;
    bottom: 59px;
    width: 100%;
    z-index: 10;
    display: none;
}

.mobile-submenu ul {
    padding: 10px 24px;
    list-style: none;
}

.mobile-submenu li {
    line-height: 48px;
    color: #5c6786;
}

.mobile-menu button:hover,
.mobile-submenu li:hover {
    cursor: pointer;
}

.mobile-submenu i {
    margin-right: 4px;
}

.mobile-menu button.active,
.mobile-submenu li.active {
    color: var(--primary);
}


/*-------------------------------------------*\
    6. Loader
\*-------------------------------------------*/

#loader {
    display: none;
    position: absolute;
    width: 100%;
    height: 4px;
}

#loader-bar {
    height: 100%;
    background-color: var(--primary);
    box-shadow: 5px -1px 8px 1px #3699ff;
    transition: all .3s ease-in;
}


/*-------------------------------------------*\
    7. Content
\*-------------------------------------------*/

.content {
    background-color: var(--light);
}

.content-header {
    background-color: white;
    padding-left: 20px;
    box-shadow: 0 10px 30px 0 rgba(82, 63, 105, .08);
}

.content-header span {
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
}

.content-header-btns {
    float: right;
}

.content-header button,
.content-header a {
    margin: 10px 14px 9px 0;
}

.content-body {
    padding: 24px 12px 82px;
}


/*-------------------------------------------*\
    8. Cards
\*-------------------------------------------*/

.card {
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(82, 63, 105, .05);
    border-radius: .42rem;
}

.card-header {
    min-height: 70px;
    padding: 0 20px;
    border-bottom: 1px solid #ecf0f3;
}

.card-header .avatar {
    float: left;
    width: 50px;
    height: 50px;
    background-color: #607d8b;
    border-radius: 50px;
    margin: 10px 10px 10px 0;
    color: white;
    line-height: 50px;
    text-align: center;
    font-size: 26px;
    box-shadow: inset 0 0 6px 0 rgb(0 0 0 / 28%);
    transition: all .3s ease;
}

.card-title:hover>.avatar {
    background-color: #3aa4d8 !important;
    transform: rotate(360deg);
}

.card-title {
    line-height: 70px;
    font-weight: 500;
    font-size: 1.275rem;
    color: #212121;
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 14px 20px;
    border-top: 1px solid #ecf0f3;
    overflow: hidden;
}

.card-collapsable .card-header {
    cursor: pointer;
}

.card-collapsable .card-body,
.card-collapsable .card-footer {
    display: none;
}


/*-------------------------------------------*\
    9. Buttons
\*-------------------------------------------*/

.btn {
    border: 0;
    color: white;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s;
    line-height: 25px;
}

.btn-sm {
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
}

a.btn {
    text-decoration: none;
    border: 1px solid transparent;
}

.btn i {
    margin-right: 10px;
}

.btn.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.8;
    pointer-events: none;
}

.btn-primary {
    background-color: #3699FF;
}

.btn-primary:focus {
    box-shadow: 0 0 0 2.5px rgba(54, 153, 255, 0.4);
}

.btn-primary:hover {
    background-color: #2e8bea;
}

.btn-info {
    background-color: #0bb7af;
}

.btn-info:focus {
    box-shadow: 0 0 0 2.5px rgba(11, 183, 175, 0.4);
}

.btn-info:hover {
    background-color: #09a59e;
}

.btn-warning {
    background-color: #ee9d01;
}

.btn-warning:focus {
    box-shadow: 0 0 0 2.5px rgba(238, 157, 1, 0.4);
}

.btn-warning:hover {
    background-color: #d48c01;
}

.btn-danger {
    background-color: #f64e60;
}

.btn-danger:focus {
    box-shadow: 0 0 0 2.5px rgba(246, 78, 96, 0.4);
}

.btn-danger:hover {
    background-color: #de3c4d;
}

.btn-secondary {
    background-color: #A2A3B7;
}

.btn-secondary:focus {
    box-shadow: 0 0 0 2.5px rgba(162, 163, 183, 0.4);
}

.btn-secondary:hover {
    background-color: #898aa2;
}

.input-span-btn {
    float: right;
    background-color: #3699ff;
    color: #fff;
    line-height: 19px;
    font-size: 13px;
    padding: 0 6px;
    border-radius: .33rem;
    cursor: pointer;
}

.title-btn {
    float: right;
    font-size: 15px;
    background-color: #3085d6;
    color: #fff;
    padding: 0 10px;
    border-radius: .33rem;
    cursor: pointer;
}

.add-table {
    width: 100%;
    height: 48px;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
    border-radius: .42rem;
    border: 0;
    font-size: 18px;
    color: var(--primary);
    transition: all .2s ease;
}

.add-table:hover {
    cursor: pointer;
    box-shadow: 0 0 30px 0 rgb(82 63 105 / 15%);
    color: var(--dark);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 188px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #36405f;
    color: #c5e2ff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 600px) {
    .btn-responsive i {
        margin-right: 0;
    }

    .btn-responsive span {
        display: none;
    }
}


/*-------------------------------------------*\
    10. Forms
\*-------------------------------------------*/

.form-input {
    margin-top: 10px;
}

input,
.input,
select,
textarea,
.selectize-input {
    width: 100%;
    border: 1px solid #c2c4d6;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    background-color: #fafbff !important;
    transition: all .2s;
}

input:disabled,
select:disabled,
textarea:disabled,
.selectize-input.disabled {
    color: black !important;
    opacity: .7 !important;
    cursor: not-allowed !important;
}

.form-input input,
.form-input select {
    height: 40px;
    padding: 0 10px;
}

input:read-only,
textarea:read-only {
    background-color: #e8eaf1;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #e8eaf1;
    cursor: not-allowed;
}

input:focus,
select:focus,
textarea:focus,
.selectize-input:focus {
    border-color: #64b0ff;
    background-color: #eef6ff;
}

.file-upload {
    cursor: pointer;
    display: block;
    padding: 7px 10px !important;
}

.product-image {
    height: 188px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

input[type="file"] {
    display: none;
}

textarea {
    resize: vertical;
}

label {
    line-height: 24px;
}

label .label-btn {
    float: right;
    font-size: 12px;
    background-color: var(--light);
    padding: 0 8px;
    line-height: 20px;
    border-radius: .33rem;
    cursor: pointer;
}

label .label-btn-off {
    background-color: var(--light);
}

label .label-btn-on {
    background-color: #8bc34a;
    color: white;
}

sup {
    font-size: 11px;
    color: gray;
}

.units-input {
    display: grid;
    grid-template-columns: 40px auto 40px;
}

.units-input input {
    border-radius: 0;
}

.units-input button {
    background-color: var(--light) !important;
    border: 1px solid #c2c4d6;
    font-size: 24px;
    transition: all .2s ease;
}

.units-input button:hover {
    cursor: pointer;
    background-color: #d7d8e2 !important;
}

.units-input button:active {
    transform: scale(0.95);
    font-size: 23px;
}

.add-units-btn {
    border-radius: 5px 0 0 5px;
}

.remove-units-btn {
    border-radius: 0 5px 5px 0;
}

.form-input-collapsable label:hover {
    cursor: pointer;
}

.form-input-collapsable,
.form-input-collapsable select {
    display: none;
}

.selectize-dropdown-content [data-selectable] {
    line-height: 30px;
    padding-left: 10px;
    font-size: 15px;
    font-weight: 500;
}

.selectize-input {
    padding: 0 0 0 10px !important;
    /* height: 40px; */
    line-height: 32px;
}

.selectize-input {
    transition: none !important;
}

.selectize-customer .title,
.selectize-warranty .title {
    display: block;
    line-height: 16px;
    margin-top: 5px;
}

.selectize-customer .phone,
.selectize-warranty .brand,
.selectize-warranty .barcode {
    font-size: 12px;
    margin-right: 8px;
    color: #676767;
}

.selectize-customer .nif,
.selectize-warranty .model {
    font-size: 12px;
    color: #676767;
}

#preview-logo {
    float: right;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

#preview-logo:hover {
    cursor: pointer;
    color: var(--dark);
}

.card-form {
    text-align: left;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 8px;
}

.card-form-error {
    font-size: 12px;
    text-align: left;
    background-color: #f44336;
    color: white;
    padding: 4px 4px 4px 8px;
    border-radius: .32rem;
    margin-bottom: 5px;
    display: none;
}

.card-form select,
.card-form input {
    height: 47px;
}

.card-form-name,
.card-form-number,
.card-form-exp label {
    grid-column-start: 1;
    grid-column-end: 3;
}

.card-form-exp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 8px;
}


/*-------------------------------------------*\
    11. Table
\*-------------------------------------------*/

.table {
    border-spacing: 0;
    margin-top: 20px;
}

.table th {
    border-bottom: 1px solid #ecf0f3;
    line-height: 70px;
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
}

.table td,
.table th {
    padding-left: 16px;
}

.table tr {
    height: 48px;
}

.table tbody tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.table tbody tr:hover {
    background-color: #efefef;
    color: black;
    cursor: pointer;
}

.table span,
.badge {
    padding: 3px 6px;
    border-radius: 5px;
}

.table span.danger,
.badge-danger {
    background-color: #f9d7d7;
    color: #f32626;
}

.table span.warning,
.badge-warning {
    background-color: #ffd863;
    color: #6f5918;
}

table span.primary,
.badge-primary {
    background-color: #d7e8f9;
    color: #268bf3;
}

.table span.success,
.badge-success {
    background-color: #cae4c6;
    color: #009442;
}

.table span.secondary,
.badge-secondary {
    background-color: #dadada;
    color: #525252;
}

table.device-details {
    border-collapse: collapse;
    width: 100%;
}

table.device-details th,
table.device-details td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

table.device-details tr:nth-child(even) {
    background-color: #dddddd;
}

table i.table-icon {
    background-color: #2196F3;
    color: #fff;
    border-radius: .33rem;
    line-height: 31px;
    width: 31px;
    text-align: center;
}

.td-selectize .selectize-input {
    min-width: 400px !important;
}

.td-input input {
    width: 110px;
}

.device-image {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 992px) {
    .no-tablet {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .no-mobile {
        display: none;
    }
}


/*-------------------------------------------*\
    12. Direct Access
\*-------------------------------------------*/

.direct-access {
    opacity: .8;
    transition: all .2 ease;
}

.direct-access:hover {
    box-shadow: 0 0 30px 0 rgb(82 63 105 / 0.1);
    opacity: 1;
    cursor: pointer;
}

.direct-access i {
    display: block;
    font-size: 60px;
    margin-bottom: 10px;
    color: var(--primary);
}

.direct-access i.fal {
    margin-bottom: 20px !important;
}

.direct-access.direct-access-danger i {
    color: #F44336 !important;
}

.direct-access.disabled {
    cursor: default !important;
}

.direct-access.disabled i {
    color: var(--secondary);
}

.direct-access span {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    color: var(--secondary);
}


/*-------------------------------------------*\
    13. Subtitle
\*-------------------------------------------*/

.subtitle h2 {
    font-size: 20px;
    font-weight: 500;
}

.subtitle hr {
    border: 1px dashed #abacb3;
    margin: 4px 0px;
}

.subtitle-h2 {
    line-height: 28px;
    font-size: 18px !important;
}


/*-------------------------------------------*\
    14. Sat Assistant
\*-------------------------------------------*/

.task .card-body {
    display: grid;
    grid-template-columns: 60px auto 60px;
    grid-template-rows: 30px 30px;
    padding: 0;
    opacity: 0.95;
    transition: all .2s ease;
}

.task .card-body:hover {
    opacity: 1;
    cursor: pointer;
    box-shadow: 0 0 30px 0 rgb(82 63 105 / 0.1);
}

.task .card-body:hover .task-action {
    color: var(--primary);
}

.task .task-icon {
    grid-row-start: 1;
    grid-row-end: 3;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-size: 20px;
    text-align: center;
    line-height: 46px;
    margin: 8px;
}

.task .task-title {
    line-height: 20px;
    font-weight: 500;
    margin-top: 10px;
}

.task .task-description {
    font-size: 13px;
    color: var(--gray);
    line-height: 20px;
}

.task .task-action {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 3;
    grid-column-end: 4;
    line-height: 60px;
    text-align: center;
    color: var(--gray);
    font-size: 18px;
}


/*-------------------------------------------*\
    15. Step by step
\*-------------------------------------------*/

.steps {
    min-height: 90px;
    padding: 30px 0 0 0;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-bottom: 16px;
}

.steps .steps-container {
    background: #ced0e0;
    height: 6px;
    width: 100%;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -ms-border-radius: 6px;
    margin: 0;
    list-style: none
}

.steps .steps-container li {
    text-align: center;
    list-style: none;
    float: left
}

.steps .steps-container li .one-step {
    padding: 0 50px
}

.steps .steps-container li .one-step .step-image {
    margin: -14px 0 0 0
}

.steps .steps-container li .one-step .step-image span {
    background-color: #ced0e0;
    display: block;
    width: 31px;
    height: 31px;
    margin: 0 auto;
    border-radius: 31px;
    -moz-border-radius: 31px;
    -webkit-border-radius: 31px;
    -ms-border-radius: 31px
}

.steps .steps-container li .one-step .step-current {
    font-size: 13px;
    color: var(--dark);
    margin: 8px 0 0 0
}

.steps .steps-container li.active .one-step .step-image span {
    background-color: #3699FF
}

.steps .steps-container li.active .one-step .step-image span:after {
    background-color: #FFF;
    display: block;
    content: '';
    position: absolute;
    z-index: 1;
    width: 21px;
    height: 21px;
    margin: 5px;
    border-radius: 21px;
    -moz-border-radius: 21px;
    -webkit-border-radius: 21px;
    -ms-border-radius: 21px;
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.15)
}

.steps .step-bar {
    background-color: #3699FF;
    height: 6px;
    position: absolute;
    top: 30px;
    border-radius: 6px 0 0 6px;
    -moz-border-radius: 6px 0 0 6px;
    -webkit-border-radius: 6px 0 0 6px;
    -ms-border-radius: 6px 0 0 6px
}

.steps .step-bar.last {
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -ms-border-radius: 6px
}

.step {
    display: none;
}

.step.active {
    display: block;
}

@media screen and (max-width: 690px) {
    .steps {
        display: none;
    }
}


/*-------------------------------------------*\
    16. Step by step
\*-------------------------------------------*/

.select-btn button {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #3699ff;
    color: #3699ff;
    line-height: 35px;
    font-size: 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.select-btn button:hover {
    background-color: #eff7ff;
    cursor: pointer;
}

.select-btn button.active,
.select-btn button.active:hover {
    background-color: #3699ff;
    border: 1px solid #3699ff;
    color: #ffffff;
    cursor: default;
}

.group {
    display: none;
}

.group.active {
    display: flex;
}

.group.a-block.active {
    display: block !important;
}

@media screen and (max-width: 390px) {
    .select-btn {
        padding-left: 5px;
        padding-right: 5px;
    }
}


/*-------------------------------------------*\
    17. Cart
\*-------------------------------------------*/

.sale-summary {
    background-color: #ced0e0;
    line-height: 37px;
    border-radius: 5px;
    padding: 0 12px;
    font-weight: 500;
    font-size: 18px;
    border: 1px solid #adb0cc;
    position: absolute;
    bottom: 0;
    width: calc(100% - 30px);
}

.sale-products .product-row {
    display: grid;
    grid-template-columns: max-content auto max-content;
    column-gap: 8px;
    background-color: #e3e3e3;
    padding: 5px 8px;
    border-left: 3px solid #8b8b8b;
    margin-bottom: 8px;
}

.product-serial {
    font-weight: 400;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

.product-row .product-remove {
    color: #cc0000;
    cursor: pointer;
}


.summary-subtotal,
.summary-tax {
    height: 30px;
}

.summary-subtotal span,
.summary-tax span {
    font-size: 16px;
    line-height: 30px;
}

.summary-total {
    border-top: 1px solid #b4b4b4;
    margin-top: 6px;
}

.summary-tax {
    display: grid;
    grid-template-columns: auto max-content;
}

.summary-tax select {
    background-color: transparent !important;
    border: 0;
    padding: 0;
    font-weight: 500;
    cursor: pointer;
}

.sale-products {
    margin-bottom: 128px;
}


/*-------------------------------------------*\
    18. Info box
\*-------------------------------------------*/

.info-box {
    border: 1px solid #c2c4d6;
    border-radius: 5px;
    padding: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.info-box h2 {
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
}

.info-box h2 i {
    color: var(--primary);
}

.info-box ul,
.info-box .info-box-container {
    margin-left: 24px;
    margin-top: 8px;
    display: none;
}

.info-box button {
    display: none;
}

.info-box.active button,
.info-box.active ul {
    display: inline-block;
}

.info-box ul li {
    line-height: 26px;
}

.info-box ul li b {
    font-weight: 500;
}

.status-history li {
    line-height: 36px !important;
}

.components-grid {
    margin-bottom: 20px;
}

.concept-row {
    display: grid;
    grid-template-columns: auto 80px 120px;
    line-height: 30px;
    border-bottom: 1px solid lightgrey;
    padding: 6px 10px 6px 0;
}


/*-------------------------------------------*\
    19. Repair header
\*-------------------------------------------*/

.repair-header {
    overflow: hidden;
}

.repair-header span {
    font-size: 20px;
    line-height: 40px;
    font-weight: 500;
}

.repair-header-os {
    overflow: hidden;
}

.repair-header-os span {
    font-size: 20px;
    line-height: 40px;
    font-weight: 500;
}


/*-------------------------------------------*\
    20. Checkbox
\*-------------------------------------------*/

.form-checkbox {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}

.form-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 4px;
    transition: all .2s ease;
}

.form-checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.form-checkbox input:checked~.checkmark {
    background-color: #3699FF;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form-checkbox input:checked~.checkmark:after {
    display: block;
}

.form-checkbox .checkmark:after {
    left: 7px;
    top: 4px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*-------------------------------------------*\
    21. Products list
\*-------------------------------------------*/

.product-item {
    margin-bottom: 6px;
    border-bottom: 1px dashed #dadbe2;
    padding-bottom: 3px;
}

.product-returned {
    text-decoration: line-through;
    color: gray;
    pointer-events: none;
}

.serial-product-serial-tag {
    background-color: #d7d7d7;
    font-size: 13px;
    font-family: monospace;
    font-weight: 600;
    padding: 0 4px;
    line-height: 18px;
    display: inline-block;
    border-radius: .33rem;
}


/*-------------------------------------------*\
    22. Charts
\*-------------------------------------------*/

.chart-area {
    position: relative;
    height: 10rem;
    width: 100%;
}

@media (min-width:768px) {
    .chart-area {
        height: 20rem
    }
}


/*-------------------------------------------*\
    23. Chart cards
\*-------------------------------------------*/

.chart-cards {
    padding-bottom: 14px;
    border-bottom: 1px solid #ecf0f3;
}

.chart-card {
    display: inline-block;
    margin-right: 3rem;
}

.card-label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}

.card-value {
    display: block;
}


/*-------------------------------------------*\
    23. Chart cards
\*-------------------------------------------*/

.pricing-table {
    text-align: center;
}

.pricing-table-header {
    background-color: var(--secondary);
    color: white;
    border-radius: .42rem .42rem 0 0;
}

.pricing-table-header,
.pricing-table-footer {
    font-size: 26px;
    font-weight: 700;
    line-height: 52px;
}

.pricing-table-body {
    padding: 16px;
}

.pricing-table-price {
    margin-bottom: 16px
}

.pricing-table-price .price-big {
    font-size: 42px;
    font-weight: 700;
    color: #5d71ad;
}

.pricing-table-price .price-small {
    font-weight: 500;
    color: #5d71ad;
}

.pricing-table-price .price-desc {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
}

.pricing-table-content span {
    display: block;
    border-top: 2px dashed #b6bdd2;
    line-height: 33px;
    color: #596382;
}

.pricing-table-footer {
    background-color: var(--secondary);
    color: #e7ecfb;
    border-radius: 0 0 .42rem .42rem;
    transition: all .2s ease;
}

.pricing-table-footer:hover {
    letter-spacing: 1px;
    color: white;
    cursor: pointer;
}

.price-danger {
    font-weight: 700;
    color: #f15d52 !important;
}


/*-------------------------------------------*\
    24. Pagination
\*-------------------------------------------*/

.pagination {
    display: inline-block;
}

.btn-pag {
    border: 0;
    line-height: 40px;
    background-color: white;
    width: 46px;
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
}

.btn-pag.pag-prev:hover,
.btn-pag.pag-next:hover {
    cursor: pointer;
    color: var(--primary);
}

.btn-pag:disabled {
    color: var(--gray);
    cursor: default;
    pointer-events: none;
}

.btn-pag.pag-prev {
    border-radius: .42rem 0 0 .42rem;
}

.btn-pag.pag-next {
    border-radius: 0 .42rem .42rem 0;
}


/*-------------------------------------------*\
    25. Not Found
\*-------------------------------------------*/

.not-found img {
    max-height: 50vh;
    max-width: 90%;
}


/*-------------------------------------------*\
    26. Image Grid
\*-------------------------------------------*/

.images-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.image-item {
    padding-top: 56.25%;
    border-radius: .33rem;
    box-shadow: 1px 1px 5px 0 rgb(0 0 0 / 30%);
    background: #b1b1b1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: zoom-in;
    transition: all .2s ease;
}

.image-add:hover {
    transform: scale(0.98);
    cursor: pointer !important;
}

.image-item:active {
    transform: scale(0.95);
}

.image-add.loading {
    animation: grayscale 1s infinite linear;
    pointer-events: none;
}

@keyframes grayscale {
    0% {
        filter: grayscale(0);
    }

    50% {
        filter: grayscale(1);
    }

    100% {
        filter: grayscale(0);
    }
}

@media screen and (max-width: 992px) {
    .images-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 850px) {
    .images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 670px) {
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*-------------------------------------------*\
    27. Tests
\*-------------------------------------------*/

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 80px;
    gap: 18px;
    margin-top: 20px;
    width: 100%;
}

.test-item {
    display: grid;
    grid-template-columns: 80px auto;
    grid-template-rows: 30px 50px;
    background-color: var(--light);
    border-radius: .33rem;
}

.test-item-img {
    grid-row-start: 1;
    grid-row-end: 3;
    margin: 10px;
}

.test-item-title p {
    margin-top: 10px;
}

.test-item-input div {
    width: 50px;
    height: 30px;
    background-color: #ffffff;
    line-height: 30px;
    margin-top: 10px;
    display: inline-block;
    margin-right: 8px;
    text-align: center;
    border-radius: .33rem;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 18%);
    transition: all .2s ease;
    cursor: pointer;
}

.test-item-input-yes {
    color: #4caf50;
}

.test-item-input-no {
    color: #f44336;
}

.test-item-input-yes:hover,
.test-item-input-yes.active {
    background-color: #4caf50;
    color: white;
}

.test-item-input-no:hover,
.test-item-input-no.active {
    background-color: #f44336;
    color: white;
}

@media screen and (max-width: 992px) {
    .test-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 720px) {
    .test-grid {
        grid-template-columns: 1fr;
    }
}


/*-------------------------------------------*\
    28. Heat Map
\*-------------------------------------------*/

.activity-table {
    display: grid;
    grid-template-columns: 80px auto;
}

.activity-table-days {
    grid-column-start: 1;
    grid-column-end: 3;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    padding-left: 80px;
    text-align: center;
    line-height: 40px;
}

.activity-table-hours span {
    display: block;
    line-height: 40px;
}

.activity-table-cells {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 38px;
    gap: 2px;
}

.activity-table-cells div {
    background-color: var(--primary);
    height: 38px;
}

.activity-table-cells div.total {
    background-color: white;
    line-height: 38px;
    text-align: center;
}


/*-------------------------------------------*\
    X. Responsive
\*-------------------------------------------*/

@media screen and (max-width: 600px) {

    .no-mobile,
    .btn-responsive span {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .content {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 3;
    }

    .content-body {
        padding: 12px 6px 82px;
    }
}

@media screen and (max-width: 1600px) {
    .container {
        grid-template-columns: 200px auto;
    }

    /* .container {
        grid-template-columns: 130px auto;
    }
    .side-menu button {
        height: 130px;
    }
    .side-menu button i {
        font-size: 42px;
    } */

    /* .side-menu span {
        line-height: 14px;
        margin-top: 10px;
        display: block;
    } */
}

@media screen and (max-width: 992px) {
    /* .container {
        grid-template-columns: 120px auto;
    }
    .side-menu button {
        height: 120px;
    }
    .side-menu button i {
        font-size: 38px;
    } */

    /* .side-menu span {
        line-height: 14px;
        margin-top: 10px;
        display: block;
    } */
}

@media screen and (min-width: 992px) {
    .right-border-md {
        border-bottom: 0;
        border-right: 1px solid #ecf0f3;
        margin-bottom: 0;
    }
}


/** Loading */



.loading-table-item {
    width: 100%;
    height: 50px;
    border-radius: .33rem;
    margin-top: 12px;
    background: linear-gradient(270deg, #cfcfcf, #efefef);
    background-size: 400% 400%;

    -webkit-animation: LoadingTable 1s ease infinite;
    -moz-animation: LoadingTable 1s ease infinite;
    animation: LoadingTable 1s ease infinite;
}

@-webkit-keyframes LoadingTable {
    0% {
        background-position: 0% 15%
    }

    50% {
        background-position: 100% 15%
    }

    100% {
        background-position: 0% 15%
    }
}

@-moz-keyframes LoadingTable {
    0% {
        background-position: 0% 15%
    }

    50% {
        background-position: 100% 15%
    }

    100% {
        background-position: 0% 15%
    }
}

@keyframes LoadingTable {
    0% {
        background-position: 0% 15%
    }

    50% {
        background-position: 100% 15%
    }

    100% {
        background-position: 0% 15%
    }
}


/** Sign badge */
.sign-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    background-color: #4caf50;
    line-height: 26px;
    padding: 0 6px;
    border-radius: .33rem;
    margin: 8px 23px 0 0;
}

.sign-badge i {
    display: inline-block;
    font-size: 16px;
    color: white;
    margin: 0;
}


/** Tabs Repairs */
.tabs-list {
    display: grid;
    grid-template-columns: repeat(6, max-content);
    width: 100%;
    overflow-x: auto;
    height: 50px;
    background-color: var(--light);
}

.tab-item {
    height: 50px;
    padding: 0 12px;
}

.tab-item.active {
    background-color: #fff;
    border: 1px solid var(--gray);
    border-bottom: 4px solid var(--primary);
}

.tab-item h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 50px;
}

/** Product Imeis */

.product-imei {
    margin-bottom: 10px;
    background-color: var(--gray);
    display: inline-block;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: .33rem;
    color: black;
}

.product-imei:hover {
    border: 2px solid var(--primary);
    background-color: #cbe5ff;
    color: #093562;
    padding: 4px 10px;
    cursor: pointer;
}

.product-imai-add {
    background-color: var(--primary);
    color: #fff;
    font-weight: 500;
}

/** Internal comments */

.internal-comments-list p {
    margin-top: 14px;
    background-color: var(--light);
    padding: 12px;
    border-radius: .33rem;
    line-height: 16px;
    font-size: 15px;
}

.internal-comments-list p span {
    font-family: monospace;
    font-weight: 600;
    margin-right: 10px;
}

/** Repair update */
.card-box-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid #c2c4d6;
    border-radius: 5px 5px 0 0;
    padding: 3px;
    font-weight: 500;
    color: #585858;
    border-bottom-color: #e9e9e9;
}

.card-box-tab {
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.card-box-tab:hover {
    background-color: #efefef;
}

.card-box-tab i {
    color: var(--primary);
}

.card-box-tab.active {
    background-color: var(--primary);
    color: #fff;
    cursor: default;
}

.card-box-tab.active i {
    color: #fff;
}

.card-box-container {
    border: 1px solid #c2c4d6;
    border-radius: 0 0 5px 5px;
    padding: 10px;
    border-top: 0;
    display: none;
}

.card-box-container.active {
    display: block;
    overflow: hidden;
}

.card-box-container ul li {
    line-height: 26px
}

.card-box-container ul li b {
    font-weight: 500
}

.status-history li {
    line-height: 36px !important
}

#conceptsTable,
#saleProductsTable {
    width: calc(100% + 20px);
    margin: -10px -10px 10px -10px;
}

#saleProductsTable thead tr {
    background-color: #9bafc3 !important;
}

#conceptsTable,
#saleProductsTable thead tr th {
    color: #22384d !important;
}

.test-item-img {
    font-size: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.simple-table {
    width: 100%;
}

.simple-table table {
    width: 100%;
}

/** TPV */
.tpv {
    width: 100%;
    min-height: calc(100vh - 60px);
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.tpv-content {
    height: calc(100vh - 60px);
    overflow-x: hidden;
    overflow-y: auto;
}

.tpv-sidebar {
    background-color: #353535;
    position: relative;
}

.tpv-search-box {
    position: relative;
}

.tpv-search-box i {
    position: absolute;
    left: 20px;
    line-height: 60px;
    font-size: 24px;
}

#tpv-search {
    border: 0;
    height: 60px;
    font-size: 23px;
    box-shadow: 0 10px 30px 0 rgba(82, 63, 105, .08);
    padding-left: 58px;
}

.tpv-categories {
    display: flex;
    grid-gap: 20px;
    padding: 20px 20px 5px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.tpv-category-item {
    width: 200px;
    height: 68px;
    background-color: #fff;
    border-radius: .33rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    display: flex;
    padding: 20px;
    font-size: 19px;
    text-align: center;
    align-items: center;
    justify-content: center;
    align-content: stretch;
}

.tpv-category-item p {
    margin: 0;
    width: 200px;
}

.tpv-category-item:hover {
    cursor: pointer;
    background-color: #f5f5f5;
}

.tpv-filters {
    padding: 20px 20px 0;
    display: flex;
    grid-gap: 16px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.tpv-filter-item {
    padding: 8px 18px;
    background-color: #bfdeff;
    height: 36px;
    border-radius: 18px;
    border: 2px solid #3699ff;
    color: #3699ff;
    font-weight: 500;
}

.tpv-filter-item:hover {
    cursor: pointer;
    background-color: #eadcdc;
    color: #f27474;
    border-color: #f27474;
}

.tpv-filter-item span {
    line-height: 18px;
}

.tpv-filter-item i {
    display: inline-block;
    line-height: 18px;
    margin-left: 10px;
}

.tpv-products {
    padding: 16px;
}

.tpv-products table {
    border-collapse: collapse;
    width: 100%;
}

.tpv-products span {
    display: block;
    font-size: 13px;
    color: #909090;
    margin-top: 4px;
}

.tpv-products th,
td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tpv-products tbody tr {
    background-color: #fff;
    transition: all .1s ease-in-out;
}

.tpv-products tbody tr:hover {
    background-color: #eaeaea;
    color: #262626;
    cursor: pointer;
}

.tpv-products tbody tr:hover span {
    color: #4a4a4a;
}

.tpv-customer {
    height: 60px;
    background-color: #292929;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    grid-gap: 20px;
}

.tpv-customer:hover {
    cursor: pointer;
    background-color: #1f1f1f;
}

.tpv-customer-icon i {
    color: #fff;
    background-color: #3699FF;
    line-height: 44px;
    width: 44px;
    text-align: center;
    border-radius: 15px;
    font-size: 24px;
}

.tpv-customer-name p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #9d9d9d;
}

.tpv-cart {
    padding: 12px;
}

.tpv-cart-title p {
    font-weight: 500;
    color: #909090;
    border-bottom: 1px dashed #525252;
    margin-bottom: 10px;
    line-height: 23px;
}

.tpv-cart-items {
    height: calc(100vh - 400px);
    overflow: auto;
    padding-bottom: 20px;
}

.tpv-cart-item {
    margin-bottom: 6px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    color: #e4e4e4;
    background-color: #292929;
    padding: 6px 12px 6px 6px;
    border-radius: .33rem;
}

.tpv-cart-item:hover {
    cursor: pointer;
    background-color: #763f3f;
}

.tpv-cart-item-details p {
    font-size: 17px;
}

.tpv-cart-item-details span {
    font-size: 14px;
    display: block;
    margin-top: 3px;
    color: #b2b2b2;
}

.tpv-sidebar-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.tpv-checkout button {
    width: 100%;
    border: 0;
    height: 90px;
    background-color: #3699FF;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .2s ease-in-out;
}

.tpv-checkout button:hover {
    cursor: pointer;
    background-color: #1f7ae0;
}

.tpv-checkout button:disabled {
    background-color: #606060;
    cursor: not-allowed;
}

.tpv-subtotal {
    background-color: #292929;
    padding: 12px;
    color: #bdbdbd;
}

.tpv-subtotal div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 8px;
}

.tpv-subtotal-total {
    color: #fff;
    font-size: 22px;
    margin-top: 8px;
    border-top: dashed 2px #525252;
    padding-top: 10px;
}

.tpv-container-view {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

#tpv-view-end {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background-color: #e9e9e9;
}

#tpv-view-employee {
    width: 100vw;
    padding: 100px 0;
}

.tpv-subtotal #select_serie {
    background-color: transparent !important;
    color: #3699ff;
    border: 0;
    padding: 0;
    width: 199px;
    cursor: pointer;
}

#tpv-result-products b {
    line-height: 30px;
    color: #3699ff;
}

.tpv-subtotal-discount p {
    cursor: pointer;
    color: #3699ff;
    margin-left: 3px;
}

.tpv-container #product_name i {
    margin-left: 10px;
    color: gray;
    transition: all .2s ease-in-out;
}

.tpv-container #product_name i:hover {
    cursor: pointer;
    color: #2196f3;
}

.download-file {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 260px;
    height: 50px;
    background-color: #e5b369;
    z-index: 9999;
    border-radius: .33rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-left: 12px;
    color: #553a13;
    box-shadow: rgb(67 64 60 / 30%) 0px 1px 2px 0px, rgb(67 63 60 / 15%) 0px 1px 3px 1px;
}

.download-file i {
    font-size: 22px;
}

.support-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #3F51B5;
    line-height: 48px;
    width: 48px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    color: #dee3ff;
}

.support-btn:hover {
    cursor: pointer;
    opacity: 1 !important;
}

@media screen and(max-width: 800px) {
    .support-btn {
        display: none;
    }
}

.table-plus {
    float: right;
    margin-right: 20px;
    display: block;
    background-color: #2196F3;
    line-height: 36px;
    width: 36px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
}

.table-plus:hover {
    cursor: pointer;
    background-color: #1e88e5;
}

.table-plus-disabled {
    background-color: #bfbfbf !important;
    cursor: not-allowed !important;
}

.td-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    height: 48px;
}

.td-text {
    line-height: 32px;
    margin-left: 44px;
}

.td-image {
    height: 32px;
    float: left;
}

.td-image i {
    font-size: 32px;
    color: rgb(0 0 0 / 40%);
    transition: all .2s ease-in-out;
}

.td-image img {
    max-height: 32px;
    transition: all .2s ease-in-out;
    max-width: 32px;
}

.td-image img:hover,
.td-image i:hover {
    cursor: pointer;
    transform: scale(1.1);
    color: rgb(0 0 0 / 60%);
}

.td-selected {
    background-color: #009688 !important;
    color: #000;
}

.td-selected-warning {
    background-color: #ffc100 !important;
    color: #000;

}

.td-actions {
    text-align: right;
}

.td-actions i {
    background-color: rgb(0 0 0 / 20%);
    color: #fff;
    line-height: 31px;
    width: 32px;
    text-align: center;
    border-radius: 50%;
}

.td-actions i:hover {
    cursor: pointer;
    background-color: rgb(0 0 0 / 40%);
}

.alert {
    padding: 4px 12px;
    font-size: 14px;
    line-height: 20px;
    border-radius: .33rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: rgb(0 0 0 / 65%);
}

.alert i {
    font-size: 20px;
}

.alert-warning {
    background-color: #FF9800;
}

.counter {
    transition: all .2s ease-in-out;
}

.counter:hover {
    cursor: pointer;
    box-shadow: 0 0 30px 0 rgba(82, 63, 105, .1);
}

.counter .card-body {
    text-align: center;
}

.counter-number {
    display: block;
    font-weight: 600;
    font-size: 38px;
    margin-bottom: 14px;
}

.counter-text {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.repair-card-customer {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.repair-card-customer span {
    color: #797d8a;
}

.card-body-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.card-body-icons button {
    background-color: #ececec;
    border: 0;
    font-size: 22px;
    color: #7c7c7c;
    height: 38px;
    width: 38px;
    border-radius: .33rem;
}

.card-body-icons button:hover {
    background-color: #dcdcdc;
    cursor: pointer;
}

.doc-link-btn {
    text-decoration: none;
    color: #fff;
    background-color: #607D8B;
    display: inline-block;
    line-height: 33px;
    padding: 0 10px;
    border-radius: .33rem;
    margin-bottom: 10px;
    border-bottom: 4px solid #4e6d7c;
}

.extract-editable {
    color: var(--primary) !important;
    text-decoration: underline;
    cursor: pointer;
}

.extract-list {
    margin-top: 20px;
}

.extract-item {
    display: grid;
    grid-template-columns: max-content auto;
    margin-bottom: 10px;
    gap: 10px;
}

.extract-item span {
    font-size: 15px;
}

.extract-item .extraxt-item-title {
    color: #797d8a;
    font-weight: 500;
}

.extract-item .extract-item-value {
    color: #2d3954;
    text-align: right;
}

.card-body-header h2 {
    font-size: 16px;
    font-weight: 500;
    color: #2d3954;
}

.card-body-header i {
    color: #797d8a;
    margin-right: 8px;
}

#comment_shortcuts {
    display: block;
    margin-top: 5px;
}

#comment_shortcuts span {
    cursor: pointer;
    margin-right: 10px;
    background-color: #e1e1e1;
    color: #828282;
    border-radius: .33rem;
    padding: 0 4px;
}

#comment_shortcuts span:hover {
    background-color: #c2c2c2;
}

.concepts-legend {
    margin-top: 16px;
    display: flex;
    gap: 18px;
}

.concepts-legend-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    color: #909090;
    font-size: 14px;
}

.concept-optional-badge {
    margin-right: 8px;
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: .33rem;
}

.concept-inc-0 {
    background-color: #a4a4a4;
}

.concept-inc-1 {
    background-color: #4caf50;
}

.concept-inc-2 {
    background-color: #f44336;
}

.table-td-desc {
    display: block;
    color: #828282;
    font-size: 13px;
    margin-top: 8px;
}

.large-btns button {
    display: block;
    height: 60px;
    border: 0;
    border-radius: .33rem;
    width: 100%;
    margin-top: 16px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all .1s ease-in-out;
}

.large-btns button:hover {
    transform: scale(1.01);
}

.large-btns button:active {
    transform: scale(0.99);
}

.large-btns button.primary {
    background-color: #3F51B5;
}

.large-btns button.info {
    background-color: #009688;
}

.pattern-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.pattern-modal-content {
    background: #fff;
    padding: 20px;
    margin: 140px auto;
    width: 340px;
    position: relative;
    border-radius: 8px;
    text-align: center;
}

/* Contenedor del patrón */
#patternContainer {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    touch-action: none;
    /* Evita el scroll en dispositivos táctiles */
}

/* Canvas para dibujar las líneas */
#patternCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 1;
    pointer-events: none;
    /* Así los eventos pasan a la capa inferior */
}

/* Grid de 9 puntos */
.pattern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 300px;
    height: 300px;
    z-index: 2;
    position: relative;
}

.pattern-point {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: auto;
    border: 2px solid #aaa;
    border-radius: 50%;
    background: #fff;
    user-select: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}

/* Cuando el punto forma parte del patrón */
.pattern-point.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.support-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #36405f;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
@media (max-width: 600px) {
    .support-button {
        display: none;
    }
}

#repair_time_counter {
    color:#797d8a;
}

.repair-time-btns {
    color:#797d8a;
    float: right;
    font-size: 14px;
}

.repair-time-btns i:hover {
    cursor: pointer;
    color: #3699FF;
}

.invoice-type-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #dadada;
}

.invoice-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.invoice-type-card.active {
    border-color: #0275d8;
    background-color: #f0f7ff;
}

.invoice-type-card i {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
    color: #555;
}

.invoice-type-card.active i {
    color: #0275d8;
}

.invoice-type-card span {
    font-size: 16px;
    font-weight: 500;
}