:root {
    --cor-primaria: #fff;
    --cor-secundaria: #fff;
    --btn-action-width: 100%;
    --btn-action-fontsize: 18px;
    --cor-texto-primaria: black;
    --cor-texto-secundaria: black;

    --loader-background-color: #EEEEEE;
    --loader-highlight-color: #DEDEDE;
}

.btn-secondary,
.btn-danger {
    font-size: var(--btn-action-fontsize);
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    height: 100%;
}

.btn-primario {
    background-color: var(--cor-primaria) !important;
    width: var(--btn-action-width);
    margin-bottom: 10px;
    color: var(--cor-texto-primaria) !important;
    font-size: var(--btn-action-fontsize);
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    height: 100%;
}

.btn-primario-sem-largura {
    background-color: var(--cor-primaria) !important;
    color: var(--cor-texto-primaria) !important;
    font-size: var(--btn-action-fontsize);
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-secundario {
    background-color: var(--cor-secundaria) !important;
    margin-bottom: 10px;
    width: var(--btn-action-width);
    font-size: var(--btn-action-fontsize);
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    color: var(--cor-texto-secundaria) !important;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-secundario-sem-largura {
    background-color: var(--cor-secundaria) !important;
    color: var(--cor-texto-secundaria) !important;
    font-size: var(--btn-action-fontsize);
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.titulo-pagina {
    color: var(--cor-primaria);
}

.btn-danger:hover,
.btn-secondary:hover,
.btn-primario:hover,
.btn-primario-sem-largura:hover,
.btn-secundario:hover,
.btn-secundario-sem-largura:hover {
    cursor: pointer;
    transform: scale(1.015);
}

.navbar-colored {
    background-color: var(--cor-primaria);
}

.internal-padding {
    padding: 15px 70px 15px 70px;
}

@media (max-width: 500px) {
    .internal-padding {
        padding: 15px 25px 15px 25px;
    }
}

label.obrigatorio::after {
    content: " *";
    color: red;
}

.col {
    margin-bottom: 5px;
}

.skeleton-loader {
    margin-top: 25px;
    height: 38px;
    background: linear-gradient(90deg, var(--loader-background-color) 25%, var(--loader-highlight-color) 50%, var(--loader-background-color) 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite ease-in-out;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.bootstrap-select {
    width: 100% !important;
}

.bootstrap-select .btn-light {
    background-color: white !important;
    border-color: #d0d6db !important;
    min-height: 38px !important;
}

.dropdown-menu li.selected {
    background: aliceblue !important;
}

.form-check-input:hover,
.form-select,
.form-select option{
    cursor: pointer;
}

.note {
    font-size: 12px;
    color: #8d8989;
}

.col {
    margin-bottom: 10px !important;
}

@media screen and (max-width: 600px) {
    .table-card-responsive thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .table-card-responsive tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    .table-card-responsive td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: right !important;
    }

    .table-card-responsive td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .table-card-responsive td:last-child {
        border-bottom: 0;
    }
}

.form-select-dot > option::before {
    content: '- '
}

.toast-body {
    background: #ddddddad !important;
}

.select2[aria-hidden="true"] {
    display: none !important;
}

.floatingButtonWrap {
    display: block;
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 1050;
}

.floatingButtonInner {
    position: relative;
}

.floatingButton {
    display: block;
    width: 60px;
    height: 60px;
    text-align: center;
    background: #83838b;
    color: #fff;
    line-height: 50px;
    position: absolute;
    border-radius: 50% 50%;
    bottom: 0px;
    right: 0px;
    border: 5px solid #ababab;
    opacity: 1;
    transition: all 0.4s;
}

.floatingButton .bi {
    font-size: 24px !important;
}

.floatingButton.open,
.floatingButton:hover,
.floatingButton:focus,
.floatingButton:active {
    opacity: 1;
    color: #fff;
}


.floatingButton .bi {
    transform: rotate(0deg);
    transition: all 0.4s;
}

.floatingButton.open .bi {
    transform: rotate(270deg);
}

.floatingMenu {
    position: absolute;
    bottom: 60px;
    right: 0px;
    display: none;
}

.floatingMenu li {
    width: 100%;
    float: right;
    list-style: none;
    text-align: right;
    margin-bottom: 5px;
}

.floatingMenu li button {
    padding: 8px 15px;
    display: inline-block;
    background: #83838b;
    color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22);
    -webkit-box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
    box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
    border: 1px solid gray;
    font-size: 18px;
}

.floatingMenu li button:hover {
    margin-right: 10px;
    text-decoration: none;
}