/* #region Body */
* {
    box-sizing: border-box;
    background-position: 0 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

*,
html {
    margin: 0;
    padding: 0;
}

html {
    font-size: 63.5%;
    height: 100%;
}

body {
    background: #fff;
    font-family: Unimed Sans, sans-serif;
    letter-spacing: .05rem;
    font-size: 1.5rem;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
    padding: 30px 0px;
    background-image: url("https://image.comunicacao.unimedserragaucha.com.br/lib/fe36117473640579741771/m/1/5a54c420-0ca9-425c-be61-7f351ceecff4.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header-img{
    width: 670px;
    max-width: 100%;
}

.uni-logo {
    width: 193px;
    max-width: 100%;
}

.ans-logo {
    width: 118px;
    max-width: 100%;
}


.container {
    max-width: 47rem;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, .16);
    background-color: #e3e3e3;
    border-left: 1px solid #fff;
    /* padding: 4rem 1rem; */
    padding: 8rem 4rem;
    border: none
}

/* #endregion*/

.common-form {
    display: flex;
    flex-direction: column;
}

.title {
    font-family: Unimed Slab, sans-serif;
    font-weight: 700;
    letter-spacing: -.01rem;
    font-size: calc(21px + .3125vw);
    line-height: calc(20.4px + .5vw);
    color: #525252;
    text-align: justify;
    margin-bottom: 5px;
}

.subtitle {
    font-family: "Unimed Sans", sans-serif;
    font-weight: 500;
    color: #686970;
    margin-bottom: 4rem;
}

.common-form .row:first-child {
    margin-top: 3rem;
}

.common-form .row {
    width: 100%;
    display: flex;
    margin-top: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    flex-wrap: wrap;
}

.common-form .field.input-radio {
    width: auto;
    margin-right: 3.5rem;
}

.common-form .field {
    width: 100%;
    position: relative;
}

.common-form .field [type=radio]:checked,
.common-form .field [type=radio]:not(:checked) {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.common-form .field input,
.common-form .field select,
.common-form .field textarea {
    width: 100%;
    height: 6rem;
    border-radius: 1.6rem 1.6rem 0 1.6rem;
    transition: border-color .3s;
    padding: 0 2rem;
    color: #686970;
    font-size: 1.6rem;
    font-weight: 400;
    background-color: #fff;
    border: 2px solid #fff;
}

.common-form .field input[type="checkbox" i] {
    width: initial;
    height: 2rem;
    margin-right: 5px;
}

div.field.input-checkbox {
    display: flex;
}


input,
textarea {
    box-shadow: none;
    resize: none;
}

button,
input,
textarea {
    background-color: transparent;
    border: 0;
    font-family: Unimed Sans, sans-serif;
}

input[type="radio" i] {
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin: 3px 3px 0px 5px;
    padding: initial;
    border: initial;
}

input {
    text-rendering: auto;
    color: fieldtext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    -webkit-rtl-ordering: logical;
    cursor: text;
    background-color: field;
    margin: 0em;
    padding: 1px 0px;
    border-width: 2px;
    border-style: inset;
    border-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
    padding-block: 1px;
    padding-inline: 2px;
}

/* #region checkbox */

.common-form .field [type=radio]:checked+label:not(.custom-radio),
.common-form .field [type=radio]:not(:checked)+label:not(.custom-radio) {
    position: relative;
    padding-left: 3.3rem;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    color: #686970;
}

.common-form .field [type=radio]:checked+label:not(.custom-radio):before,
.common-form .field [type=radio]:not(:checked)+label:not(.custom-radio):before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: border-color .3s;
    border: 3px solid #686970;
}

.common-form .field [type=radio]:checked+label:not(.custom-radio):after {
    opacity: 1;
    transform: scale(1);
}

.common-form .field [type=radio]:not(:checked)+label:not(.custom-radio):after {
    opacity: 0;
    transform: scale(0);
}

.common-form .field [type=radio]:checked+label:not(.custom-radio):after,
.common-form .field [type=radio]:not(:checked)+label:not(.custom-radio):after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: #686970;
    position: absolute;
    top: .5rem;
    left: .5rem;
    transition: all .2s ease;
}

/* #endregion checkbox */

/* #region select */
.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

select {
    font-family: Unimed Sans, sans-serif;
}

select:not(:-internal-list-box):not([multiple]) {
    text-shadow: -internal-auto-base(none, inherit);
    text-transform: -internal-auto-base(none, initial);
    text-rendering: -internal-auto-base(auto, inherit);
    letter-spacing: -internal-auto-base(normal, inherit);
    word-spacing: -internal-auto-base(normal, inherit);
    text-align: -internal-auto-base(start, initial);
    text-indent: -internal-auto-base(0px, initial);
    -webkit-rtl-ordering: -internal-auto-base(logical, inherit);
    cursor: -internal-auto-base(default, inherit);
    color: -internal-auto-base(FieldText, inherit);
    background-color: -internal-auto-base(Field, transparent);
    min-inline-size: -internal-auto-base(auto, calc-size(auto, max(size, 24px)));
    min-block-size: -internal-auto-base(auto, calc-size(auto, max(size, 24px, 1lh)));
    display: -internal-auto-base(inline-block, inline-flex);
    align-items: -internal-auto-base(center, unset);
    user-select: -internal-auto-base(auto, none);
    font: -internal-auto-base(-webkit-small-control, inherit);
    white-space: -internal-auto-base(pre, inherit);
    border: 1px solid -internal-auto-base(light-dark(#767676, #858585), currentColor);
    padding-block: -internal-auto-base(0, 0.25em);
    padding-inline: -internal-auto-base(0, 0.5em);
    gap: -internal-auto-base(initial, 0.5em);
    border-radius: -internal-auto-base(0, 0.5em);
}

select:not(:-internal-list-box) {
    overflow: visible !important;
}

.common-form .field .select2-container {
    z-index: 1;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    z-index: 10001;
    width: 100%;
}

.select2-container--default .select2-selection--single {
    border: 2px solid #fff;
    background-color: #fff;
    border-radius: 1.6rem 1.6rem 0 1.6rem;
    transition: border-color .3s;
}

.select2-container .select2-selection--single {
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 6rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 6rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 1.6rem;
    color: #686970;
    font-weight: 400;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 20px;
    padding-right: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    align-self: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: "\F078";
    font-family: Font Awesome\ 5 Free;
    font-weight: 600;
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s;
}


/* results */

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-radius: 1.6rem;
    margin-top: 4px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, .33);
    overflow: hidden;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #fff;
}

.select2-container--default .select2-results__option--selected {
    background-color: #fff;
}

.select2-results {
    display: block;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #00995d;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    font-weight: 800;
    color: #00995d;
}

.select2-container--default .select2-results__option:first-child {
    border-radius: 20px 20px 0 0;
}

.select2-container--default .select2-results__option:last-child {
    border-radius: 0 0 20px 20px;
}

.select2-container--default .select2-results__option {
    transition: background-color .3s, color .3s;
    font-size: 1.6rem;
    font-weight: 500;
    color: #939393;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-results__option {
    padding: .5rem 2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

li {
    list-style: none;
}

/* #endregion select */

/* #region input */
input:not([type="image" i], [type="range" i], [type="checkbox" i], [type="radio" i]) {
    overflow-clip-margin: 0px !important;
    overflow: clip !important;
}

input[type="text" i] {
    padding-block: 1px;
    padding-inline: 2px;
}

.common-form .field.error input,
.common-form .field.error select,
.common-form .field.error textarea,
.common-form .field.error span.select2-selection {
    border-color: #b94a48;
}

.common-form .field input:focus,
.common-form .field select:focus,
.common-form .field textarea:focus {
    outline: none;
    border: 2px solid #00995d;
}

/* #endregion input */
/* #region terms */
.common-form .terms {
    margin-top: 1rem;
    font-weight: 400;
    text-align: justify;
}

.common-text {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: 500;
    color: #525252;
}

.common-form .terms a {
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: inherit;
}

/* #endregion terms */
/* #region submit */
.common-form .submit.outline-white {
    background-color: #fff;
}

.common-form .submit {
    /* margin-top: 3rem; */
    padding: 1.6rem 3.5rem;
    position: relative;
    border-radius: 1.4rem 1.4rem 0 1.4rem;
    background-color: #00995d;
    transition: background-color .3s, opacity .3s;
}

button,
input,
textarea {
    background-color: transparent;
    border: 0;
    font-family: Unimed Sans, sans-serif;
}

button {
    cursor: pointer;
}

.common-form .submit.outline-white .default {
    color: #00995d;
}

.common-form .submit .default {
    color: #fff;
    font-size: 1.4rem;
    transition: opacity .3s;
    font-weight: 700;
    letter-spacing: -.02rem;
}

.common-form .submit:hover.outline-white {
    background-color: #fff;
    opacity: .8;
}

.common-form .row.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.error-message {
    color: #b94a48;
    font-weight: 400;
    font-size: 1.4rem;
    margin-top: .5rem;
}


/* #endregion submit */
/* #region loader */
.common-form .submit .loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .3s;
}

.common-form .submit.outline-white .loader svg {
    stroke: #00995d;
}

/* #endregion loader */

::-webkit-scrollbar {
    -webkit-appearance: none;
    background-color: #ebebeb;
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    border: 1px solid #ebebeb;
    background-color: #00995d;
}

/* CSS */
.toggle-section {
    /* max-height: 0; */
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.toggle-section.show {
    opacity: 1;
}

.toggle-section.hide {
    opacity: 1;
    display: none;
}

.common-form .submit .loader.show {
    opacity: 1;
}

.hide {
    opacity: 0;
}

.g-recaptcha {
    align-self: center;
}

.g-recaptcha iframe.error {
    border: #b94a48 2px solid;
    border-radius: 3px;
}

.display-none {
    display: none !important;
}

textarea {
    resize: vertical;
    overflow: auto;
}