@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: #ffcf40;
    --btn-shadow-color: #f2bf24;
    --btn-no-background-color: #ffcf40;
    --input-focus-color: #38bc7d;

    /* Font Sizes */
    --fs-200: .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;
}

.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;

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

.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(--btn-shadow-color);
    top: 1px;
}

.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 #42b3e4;
    padding: 5px 10px;

    font-family: "Montserrat Regular";
}

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

.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 #34b4eb;

    padding: 10px;
    width: 184px;
    height: 41px;

    font-family: "Montserrat Regular";
    font-size: 16px;
    color: #34b4eb;

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

.select-painel.more {
    background-image: url('../../images/more-bg-blue.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: #1aa3df;
}

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

    width: 100%;
    padding: 15px;
}

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

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

    margin: 4px 4px 4px 0;
}

.underline {
    text-decoration: underline;
}

/* Pagination */
.paginacao-buttons-item {
    padding: .5rem;
    background: #E9E9E9;
}

.paginacao-buttons-item.active {
    background: #34B4EB;
    color: #fff;
}

.swal2-container * {
    font-family: "Montserrat Regular";
}