﻿html, body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}

    body[data-theme="dark"] {
        background-color: #0a0a0a;
    }

    body[data-theme="light"] {
        background-color: #ffffff;
    }

h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    line-height: 1.6;
}

h2 {
    line-height: 1.8 !important;
}

.not-selectable {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

h1:focus {
    outline: none;
}

h2:focus {
    outline: none;
}

.loading-progress {
    height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.loading-progress-logo-white {
    height: auto;
    width: 200px;
    display: none;
}

.loading-progress-logo-dark {
    height: auto;
    width: 200px;
    display: none;
}

[data-theme="light"] .loading-progress-logo-white {
    display: flex !important;
}

[data-theme="dark"] .loading-progress-logo-dark {
    display: flex !important;
}

.loading-progress-gif {
    height: auto;
    width: 30px;
}

.loading-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: transparent;
    z-index: 10;
}

code {
    color: #c02d76;
}


.ct-logo-info {
    height: auto;
    width: auto;
    background-color: rgba(245, 158, 11, 0.5);
    padding: 1px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding-left: 7px;
    padding-right: 7px;
    margin-top: 5px;
}

    .ct-logo-info h1 {
        font-size: 9px !important;
        color: white !important;
    }

.ct-foto {
    height: 40px;
    width: 40px;
    box-shadow: 0 1px 2px 0 rgba(51, 51, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

    .ct-foto img {
        height: 100%;
        height: 100%;
        border-radius: 50%;
    }

    .ct-foto:hover {
    }

    .ct-foto h1 {
        font-size: 13px !important;
        font-weight: bold;
        letter-spacing: 2px;
        width: 100%;
        text-align: center;
        color: black !important;
    }

    .ct-foto.upload {
        height: 100px;
        width: 100px;
    }

        .ct-foto.upload img {
            height: 100%;
            height: 100%;
            border-radius: 50%;
        }


        .ct-foto.upload h1 {
            font-size: 30px !important;
            letter-spacing: 10px;
            margin: 0;
            padding-left: 10px;
        }

[data-theme="light"] .ct-foto {
    background-color: rgba(233, 233, 233, 0.7);
    border: 1px solid rgba(51, 51, 51, 0.1);
}

[data-theme="dark"] .ct-foto {
    background-color: #acacad;
    border: 1px solid rgba(51, 51, 51, 0.1);
}

[data-theme="light"] .ct-foto:hover {
    cursor: pointer;
    box-shadow: 0 3px 8px 0 rgba(51, 51, 51, 0.2);
    border: 2px solid rgba(51, 51, 51, 0.2);
}

[data-theme="dark"] .ct-foto:hover {
    cursor: pointer;
    box-shadow: 0 3px 8px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}


.row-default {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
}

    .row-default.h-100 {
        height: 100%;
    }

    .row-default.pd-left-10 {
        padding-left: 10px;
    }

    .row-default.pd-right-10 {
        padding-right: 10px;
    }

    .row-default.left {
        justify-content: left;
    }

    .row-default.right {
        justify-content: right;
    }

    .row-default.gap-5 {
        gap: 5px;
    }

    .row-default.gap-10 {
        gap: 10px;
    }

    .row-default.gap-20 {
        gap: 20px;
    }

    .row-default.mar-b-10 {
        margin-bottom: 10px;
    }

    .row-default.mar-b-20 {
        margin-bottom: 20px;
    }

    .row-default.mar-b-40 {
        margin-bottom: 40px;
    }

    .row-default.width-auto {
        width: auto;
    }

    .row-default.max-w-200 {
        max-width: 200px;
    }

    .row-default.max-w-300 {
        max-width: 300px;
    }

    .row-default.pos-right-20 {
        position: absolute;
        right: 20px;
    }

    .row-default.max-w-1440 {
        max-width: 1440px;
        margin: 0 auto;
        width: 100%;
    }

    .row-default.column-start {
        align-items: start;
        flex-direction: column;
    }


    .row-default h1 {
        font-size: 18px;
        font-weight: bold;
        margin: 0px;
    }

    .row-default h2 {
        font-size: 14px;
        font-weight: 400;
        margin: 0px;
    }

    .row-default h3 {
        font-size: 14px;
        font-weight: 400;
        margin: 0px;
    }

    .row-default h4 {
        font-size: 12px;
        font-weight: 300;
        margin: 0px;
    }

[data-theme="light"] .row-default h1 {
    color: black;
}

[data-theme="dark"] .row-default h1 {
    color: white;
}

[data-theme="light"] .row-default h2 {
    color: rgba(51, 51, 51, 0.8);
}

[data-theme="dark"] .row-default h2 {
    color: #b6bfc9;
}

[data-theme="light"] .row-default h3 {
    color: rgba(51, 51, 51, 0.8);
}

[data-theme="dark"] .row-default h3 {
    color: #b6bfc9;
}

[data-theme="light"] .row-default h4 {
    color: rgba(51, 51, 51, 0.8);
}

[data-theme="dark"] .row-default h4 {
    color: #b6bfc9;
}

.row-default input[type=checkbox] {
    height: 13px;
    width: 13px;
}

.row-default input {
    height: 35px;
    width: 100%;
    border-radius: 7px;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.08);
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    position: relative;
}

    .row-default input:focus {
        box-shadow: none !important;
        outline: 2px solid #967ff6;
        outline-offset: 2px;
    }

    .row-default input::placeholder {
        font-size: 13px;
    }

    .row-default input.pd-left-35 {
        padding-left: 35px;
    }

[data-theme="light"] .row-default input {
    background-color: white;
    border: 1px solid #e9e9e9;
    color: rgba(51, 51, 51, 0.8);
}

[data-theme="dark"] .row-default input {
    background-color: #14181f;
    border: 1px solid #2b303b;
    color: white;
}



[data-theme="light"] .row-default input::placeholder {
    color: rgba(51, 51, 51, 0.4)
}

[data-theme="dark"] .row-default input::placeholder {
    color: #69737e;
}

.row-default select {
    width: 100%;
    height: 35px;
    border-radius: 7px;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.08);
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
}

    .row-default select:focus {
        box-shadow: none !important;
        outline: 2px solid rgba(150, 127, 246, 0.7);
        outline-offset: 2px;
    }


[data-theme="light"] .row-default select {
    background-color: white;
    border: 1px solid #e9e9e9;
    color: rgba(51, 51, 51, 0.8);
}

[data-theme="dark"] .row-default select {
    background-color: #14181f;
    border: 1px solid #2b303b;
    color: white;
}

.row-divisor {
    height: 1px;
    width: 100%;
    background-color: #e9e9e9;
}

    .row-divisor.margin-5 {
        margin-top: 5px;
        margin-bottom: 5px;
    }

.btn-icon {
    height: 30px;
    width: 30px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border-radius: 7px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


    .btn-icon.no-color {
    }

        .btn-icon.no-color:hover {
            cursor: default;
            background-color: transparent;
            box-shadow: 0 0 0 0 transparent;
        }

    .btn-icon img {
        height: 16px;
        width: 16px;
    }

    .btn-icon:hover {
        cursor: pointer;
        background-color: #0da2e7;
        box-shadow: 0 4px 8px 0 rgba(51, 51, 51, 0.15);
    }

    .btn-icon .icon-in {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .btn-icon .icon-out {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .btn-icon.off {
        background-color: transparent;
    }

        .btn-icon.off:hover {
            cursor: not-allowed;
            background-color: transparent;
        }

.icon-in {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.icon-out {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.btn-icon:hover .icon-in {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.btn-icon:hover .icon-out {
    display: none;
    opacity: 0;
    visibility: hidden;
}


.btn-icon.close {
    position: absolute !important;
    right: 20px !important;
    background-color: transparent !important;
    box-shadow: 0 0 0 0 !important;
    border: 0 !important;
}

    .btn-icon.close:hover {
        background-color: #967ff6 !important;
        box-shadow: 0 1px 2px 0 rgba(51, 51, 51, 0.15) !important;
        border: 1px solid #e9e9e9 !important;
    }

.btn-icon.clean {
    border: 0px;
    box-shadow: 0 0 0 0;
}

.btn-default {
    height: 35px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: #967ff6;
    border-radius: 5px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

    .btn-default h2 {
        font-size: 13px;
        color: white !important;
    }

    .btn-default img {
        height: 20px;
    }

    .btn-default:hover {
        cursor: pointer;
        background-color: rgba(150, 127, 246, 0.7);
    }

    .btn-default.color-2 {
        background-color: white;
        border: 1px solid #e9e9e9;
    }

        .btn-default.color-2 h2 {
            font-size: 13px;
            color: rgba(51, 51, 51, 0.8) !important;
        }

[data-theme="light"] .btn-default.color-2:hover {
    cursor: pointer;
    background-color: rgba(51, 51, 51, 0.05);
    color: white !important;
}

[data-theme="dark"] .btn-default.color-2:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.85);
    color: white !important;
}

.btn-default.color-3 h2 {
    font-size: 13px;
}

.btn-default.color-3:hover {
    cursor: pointer;
}


[data-theme="light"] .btn-default.color-3 {
    background-color: rgba(51, 51, 51, 0.2);
}

    [data-theme="light"] .btn-default.color-3 h2 {
        color: rgba(51, 51, 51, 0.8) !important;
    }

[data-theme="light"] .btn-default.color-3:hover {
    background-color: rgba(51, 51, 51, 0.8);
}

    [data-theme="light"] .btn-default.color-3:hover h2 {
        color: white !important;
    }


[data-theme="dark"] .btn-default.color-3 {
    background-color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .btn-default.color-3 h2 {
    color: rgba(51, 51, 51, 0.8) !important;
}

    [data-theme="dark"] .btn-default.color-3:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

[data-theme="dark"] .btn-default.color-3:hover h2 {
    color: white !important;
}

.btn-default.color-4 {
    background-color: #ef4444;
}


    .btn-default.color-4:hover {
        cursor: pointer;
        background-color: #dc2626;
    }


.btn-default.max-w-150 {
    max-width: 150px;
}



.btn-default.color-5 h2 {
    font-size: 13px;
}


.btn-default.color-5:hover {
    cursor: pointer;
}



[data-theme="light"] .btn-default.color-5 {
    background-color: white;
    border: 1px solid #e9e9e9;
}

[data-theme="dark"] .btn-default.color-5 {
    background-color: #1e293b;
    border: 1px solid #475569;
}

[data-theme="light"] .btn-default.color-5:hover {
    background-color: #967ff6;
    cursor: pointer;
}

[data-theme="dark"] .btn-default.color-5:hover {
    background-color: #967ff6;
    cursor: pointer;
}

[data-theme="light"] .btn-default.color-5 h2 {
    color: rgba(51, 51, 51, 0.8) !important;
}

[data-theme="dark"] .btn-default.color-5 h2 {
    color: white;
}

[data-theme="light"] .btn-default.color-5:hover h2 {
    color: white !important;
}

[data-theme="dark"] .btn-default.color-5:hover h2 {
    color: white;
}

.btn-default.left {
    justify-content: left;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-default.width-150 {
    max-width: 150px !important;
}

.btn-default.width-200 {
    max-width: 200px !important;
}

.btn-default.width-300 {
    max-width:300px !important;
}

.img-start {
    position: absolute;
    left: 0;
    height: 15px;
    width: auto;
    z-index: 2;
}

    .img-start.c-pointer {
        cursor: pointer;
    }

    .img-start.left-5 {
        left: 5px;
    }

    .img-start.left-10 {
        left: 10px;
    }

.btn-default.max-w-150 {
    max-width: 150px;
}

.btn-default.max-w-80 {
    max-width: 80px;
}

.essencial {
    color: #f26c6c;
}

.separator {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    height: 1px;
}

    .separator.mar-20 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

[data-theme="light"] .separator {
    background-color: #e9e9e9;
}

[data-theme="dark"] .separator {
    background-color: #5c5c7b;
}

.ct-form {
    border-radius: 7px;
    box-shadow: 0 1px 2px 0 rgba(51, 51, 51, 0.1);
    height: auto;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .ct-form.hv:hover {
        border: 2px solid #967ff6;
    }

    .ct-form.c-pointer:hover {
        cursor: pointer;
    }

    .ct-form.padding-10 {
        padding: 10px;
    }

    .ct-form.mar-b-20 {
        margin-bottom: 20px;
    }

    .ct-form.gap-10 {
        gap: 10px;
    }

[data-theme="light"] .ct-form {
    background-color: #fbfcfd;
    border: 2px solid #e9e9e9;
}

[data-theme="dark"] .ct-form {
    background-color: #272c35;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ct-form .row-default h1 {
    font-size: 14px;
    font-weight: 500;
}

.ct-form .row-default h2 {
    font-size: 12px;
}

.ct-form .row-default h3 {
    font-size: 13px;
    font-weight: bold;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    transition: 0.3s ease;
    border-radius: 999px;
}

    .slider::before {
        content: "";
        position: absolute;
        height: 18px;
        width: 18px;
        left: 4px;
        top: 4px;
        background-color: white;
        transition: 0.3s ease;
        border-radius: 50%;
    }

.switch input:checked + .slider {
    background-color: #967ff6;
}

    .switch input:checked + .slider::before {
        transform: translateX(22px);
    }

.toggle-container.right {
    position: absolute;
    right: 10px;
}

.ct-info {
    width: auto;
    height: 22px;
    border: 1px solid #ddd6fe;
    background-color: #ede9fe;
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: absolute;
    right: 10px;
}

    .ct-info h2 {
        font-size: 11px !important;
        color: #7128d9 !important;
        margin: 0px !important;
    }



.ct-btn-right {
    height: auto;
    min-width: 150px;
    position: fixed;
    z-index: 50;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .ct-btn-right.show {
        opacity: 1;
        pointer-events: all;
        visibility: visible;
    }

[data-theme="light"] .ct-btn-right {
    background-color: white;
    border: 1px solid #e9e9e9;
    box-shadow: 0 1px 2px 0 rgba(51, 51, 51, 0.1);
}

[data-theme="dark"] .ct-btn-right {
    background-color: #0e1115;
    border: 1px solid #191c22;
    box-shadow: 0 1px 2px 0 rgba(255, 255, 255, 0.2);
}

.ct-btn-right .row-default {
    height: 40px;
    justify-content: left;
    padding-left: 10px;
    padding-right: 10px;
    gap: 10px;
}

    .ct-btn-right .row-default:hover {
        cursor: pointer;
        background-color: #0da2e7;
    }

    .ct-btn-right .row-default h2 {
        font-size: 12px;
    }

    .ct-btn-right .row-default.delete h2 {
        font-size: 12px;
        color: red;
    }

    .ct-btn-right .row-default.delete:hover h2 {
        color: white;
    }

    .ct-btn-right .row-default:hover h2 {
        color: white;
    }


[data-theme="light"] .row-default h2 {
    color: #808080;
}

[data-theme="dark"] .row-default h2 {
    color: #b6bfc9;
}

.ct-btn-right .row-default:hover .icon-in {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.ct-btn-right .row-default:hover .icon-out {
    display: none;
    opacity: 0;
    visibility: hidden;
}

@media(max-width:820px) {

    .loading-progress-logo {
        height: auto;
        width: 150px;
    }

    .loading-progress-gif {
        height: auto;
        width: 30px;
    }

    .row-mobile {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
    }

    .cp-mobile-100-porcento {
        width: 100% !important;
        max-width: 100% !important;
    }
}
