body {
    font-family: "Mona Sans", sans-serif !important;
    transition: all ease 1s;
}

button:focus {
    box-shadow: none !important;
    outline: none !important;
}

textarea:focus,
select:focus,
input:focus {
    box-shadow: none !important;
    outline: none !important;
}

textarea.error,
select.error,
input.error {
    border: 1px solid var(--bs-form-invalid-color) !important;
}

.form-check-input:checked  {
    border: 1px solid var(--bs-primary);
}

.absolute-inline-center {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.absolute-block-center {
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.card-footer,
.card-header {
    border-radius: 20px !important;
}

.text-hero {
    font-size: 50px;
    line-height: inherit;
}
.text-hero-2 {
    font-size: 46px;
    line-height: inherit;
}
.text-hero-3 {
    font-size: 40px;
    line-height: inherit;
}
.text-banner {
    font-size: 36px;
    line-height: inherit;
}
.text-banner-2 {
    font-size: 32px;
    line-height: inherit;
}
.text-banner-3 {
    font-size: 28px;
    line-height: inherit;
}

.ellipsis-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.ellipsis-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.collapse-button.collapsed .collapse-icon {
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
}

.collapse-icon {
    transform: rotate(180deg);
    transition: all 0.2s ease-in-out;
}

label.required::after{
    content: "*";
    color: red;
    margin-left: 4px;
}

label.error {
    color: var(--bs-form-invalid-color);
    font-size: .75rem;
}

.spinner-button {
    width: 28px;
    height: 28px;
    margin: 5px;
}

.custom-toast {
    padding: 6px 16px;
    border-radius: 8px;
}

.toast-info {
    border: 1px solid var(--bs-secondary);
    background: var(--bs-secondary-3);
    color: var(--bs-secondary);
}

.toast-success {
    border: 1px solid #1EC466;
    background: #d7fce7;
    color: #1EC466;
}

.toast-danger {
    border: 1px solid #DF2800;
    background: #facabf;
    color: #DF2800;
}

.toast-primary {
    border: 1px solid #EEE8A9;
    background: #FFF8E8;
    color: #EEE8A9;
}

.select2-container .select2-selection--single {
    display: block;
    width: 100%;
    padding: .75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: .625rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    width: 28px;
    right: 12px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}

.select2-selection.is-invalid {
    border-color: var(--bs-form-invalid-color) !important;
  }

label.error ~ small.info-label {
    display: none;
}

.btn-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    padding: 7px;
    min-height: 32px !important;
    height: 26px !important;
}

.btn-modal-close svg {
    width: 16px;
    height: 16px;
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: 100px;
    --bs-pagination-hover-color: var(--bs-primary-4);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-primary-4);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--bs-primary);
    --bs-pagination-active-border-color: var(--bs-primary);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

@media only screen and (max-width: 992px) {
    .text-hero {
        font-size: 46px;
        line-height: normal;
    }
    .text-hero-2 {
        font-size: 40px;
        line-height: normal;
    }
    .text-hero-3 {
        font-size: 36px;
        line-height: normal;
    }
    .text-banner {
        font-size: 24px;
        line-height: normal;
    }
}

@media only screen and (max-width: 576px) {
    .text-hero {
        font-size: 42px;
        line-height: normal;
    }
    .text-hero-2 {
        font-size: 32px;
        line-height: normal;
    }
    .text-hero-3 {
        font-size: 30px;
        line-height: normal;
    }
    .text-banner {
        font-size: 28px;
        line-height: normal;
    }
    .text-banner-2 {
        font-size: 24px;
        line-height: normal;
    }
}
