@font-face {
    font-family: 'Montserrat Bold';
    src: url('../../fonts/Montserrat-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Regular';
    src: url('../../fonts/Montserrat-Regular.woff') format('woff');
    font-display: swap;
}

:root {
    --btn-color: #dbb698;
    --btn-shadow-color: #dbb698;
    --btn-no-background-color: #dbb698;
    --input-focus-color: #2e6e93;
    --color-white: #fff;

    /* Font Sizes */
    --fs-200: 0.875rem;

    /* Font Family */
    --ff-serif: 'Montserrat', serif;
}

.heading-56 {
    font-size: 56px;
    font-family: 'Montserrat Bold';
    line-height: 60px;
}

.heading-48 {
    font-size: 48px;
    font-family: 'Montserrat Bold';
    line-height: 64px;
}

.heading-40 {
    font-size: 40px;
    font-family: 'Montserrat Bold';
    line-height: 48px;
}

.heading-32 {
    font-size: 32px;
    font-family: 'Montserrat Bold';
}

.heading-30 {
    font-size: 30px;
    font-family: 'Montserrat Bold';
}

.heading-26 {
    font-size: 26px;
    font-family: 'Montserrat Regular';
}

.text-default {
    font-size: 16px;
    font-family: 'Montserrat Regular';
    line-height: 22px;
}

.text-default-2 {
    font-size: 25px;
    font-family: 'Montserrat Regular';
    line-height: 30px;
}

.fs-200 {
    font-size: var(--fs-200);
}
.ff-serif {
    font-family: var(--ff-serif);
}

.text-default.bold {
    font-family: 'Montserrat Bold';
}

.btn-default {
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    --btn-background-color: #dbb495;
    --box-shadow-color: #dbb495;

    font-family: 'Montserrat Bold';
    background-color: var(--btn-background-color);
    font-size: 16px;
    color: #fff;
    box-shadow: 0 4px var(--box-shadow-color);
    border-radius: 5px;
    padding: 15px;
    position: relative;
}

.btn-blue {
    background-color: #000e3a !important;
}

.btn-green {
    --btn-background-color: #0c9e44;
    --box-shadow-color: #0c9e44;
}

.btn-default.no-shadow {
    box-shadow: none;
}

.btn-default.no-move-hover:hover {
    top: 0px;
    box-shadow: none;
}

.btn-default:hover {
    box-shadow: 0 2px var(--box-shadow-color);
    top: 1px;
    color: white;
}

.btn-no-background {
    display: flex;
    align-items: center;

    font-family: 'Montserrat Bold';
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    padding: 15px;

    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
}

.btn-no-background:hover,
.btn-no-background:focus,
.btn-no-background:active {
    background-color: var(--btn-no-background-color);
}

.input-default {
    padding: 10px;
    border: 1px solid transparent;
    box-shadow: 0 0 10px 5px rgb(0 0 0 / 10%);

    font-family: 'Montserrat Regular';
}

.input-default:focus,
.input-default:active {
    border: 1px solid var(--input-focus-color);
}

.input-colored {
    padding: 10px;
    border: 1px solid #eee;
    border-left: 2px solid #2e6e93;
    padding: 5px 10px;

    font-family: 'Montserrat Regular';
}

.input-colored:hover,
.input-colored:focus,
.input-colored:active {
    border: 1px solid #2e6e93;
    border-left: 2px solid #2e6e93;
}

.select-painel {
    background-color: #f8f8f8;
    background-repeat: no-repeat;
    background-position-x: calc(100% + 2.5px);
    background-position-y: 50%;

    background-size: auto 100%;

    border-radius: 5px;
    border: solid 1px #2e6e93;

    padding: 10px;
    width: 40%;
    height: 40px;

    font-family: 'Montserrat Regular';
    font-size: 16px;
    color: #2e6e93;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-painel.more {
    background-image: url('../../images/more-more.png');
    cursor: pointer;
}

.select-painel.arrow {
    background-image: url('../../images/arrow-select.png');
    background-color: #fff;
}

::-webkit-scrollbar {
    background: #f1f1f1;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #2e6e93;
}

.painel-fieldset {
    border-radius: 5px;
    box-shadow: 4.6px 3.9px 20px 0 rgb(52 180 235 / 12%);
    border: solid 1px #2e6e93;
    font-size: 16px;

    width: 100%;
    padding: 15px;
}

.painel-fieldset-legend {
    margin: 0 auto;
    padding: 0 5px;
    color: #2e6e93;
}

input.input-checkbox {
    height: 13px;
    width: 13px;

    margin: 4px 4px 4px 0;
}

.underline {
    text-decoration: underline;
}
.swal2-title {
    font-family: 'Montserrat Bold';
}
/* Pagination */
.paginacao-buttons-item {
    padding: 0.5rem;
    background: #e9e9e9;
    margin-top: 20px;
    gap: 5px;
}

.paginacao-buttons-item.active {
    background: #2e6e93;
    color: #fff;
}
