:root {
    --ck-z-default: 30060;
}

.campo {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    row-gap: 5px;
    margin: 5px 0;
}
.campo.suave > input[type="text"],
.campo.suave > input[type="email"],
.campo.suave > input[type="password"],
.campo.suave > select {
    border-radius: 15px;
}
.campo.icone > input[type="text"],
.campo.icone > input[type="email"],
.campo.icone > input[type="password"],
.campo.icone > select {
    flex: 1 1 calc(100% - 34px);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.campo.icone > input.input-sm[type="text"],
.campo.icone > input.input-sm[type="email"],
.campo.icone > input.input-sm[type="password"],
.campo.icone > select.input-sm {
    flex-basis: calc(100% - 30px);
}
.campo > input[type="text"]:invalid,
.campo > input[type="email"]:invalid,
.campo > input[type="password"]:invalid,
.campo > select:invalid {
    color: #ea5460;
    border-color: #ea5460;
}
.campo > .anexo,
.campo > .anexo-imagem {
    flex: 1 1 100%;
    max-width: 100%;
}
.campo.icone > .icone {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
    border-top: 1px solid #c2cad8;
    border-right: none;
    border-bottom: 1px solid #c2cad8;
    border-left: 1px solid #c2cad8;
    transition: border-color ease-in-out .15s, color ease-in-out .15s;
    padding: 0;
    background-color: #f0f0f0;
}
.campo.icone > .input-sm + .icone {
    flex-basis: 30px;
    height: 30px;
    font-size: 12px;
}
.campo.suave.icone > .icone {
    border-radius: 15px 0 0 15px;
}
.campo.icone > input[type="text"]:focus ~ .icone,
.campo.icone > input[type="email"]:focus ~ .icone,
.campo.icone > input[type="password"]:focus ~ .icone,
.campo.icone > select:focus ~ .icone {
    border-color: #93a1bb;
}
.campo.icone > input[type="text"]:invalid ~ .icone,
.campo.icone > input[type="email"]:invalid ~ .icone,
.campo.icone > input[type="password"]:invalid ~ .icone,
.campo.icone > select:invalid ~ .icone {
    border-color: #ea5460;
    color: #ea5460;
}
.campo > .anexo {
    flex: 1 1 100%;
}
.campo > span {
    color: #707070;
    flex: 1 1 auto;
    transition: color ease-in-out .15s;
}
.campo > input[type="text"]:invalid ~ span,
.campo > input[type="email"]:invalid ~ span,
.campo > input[type="password"]:invalid ~ span,
.campo > select:invalid ~ span,
.campo > .anexo.invalido ~ span,
.campo > .anexo-imagem.invalido ~ span {
    color: #ea5460;
}

.campo-marcacao {
    margin: 0;
}
.campo-marcacao > input {
    display: block;
    width: 0;
    height: 0;
    margin: 0;
    appearance: none;
}
.campo-marcacao > span {
    display: flex;
    column-gap: 10px;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}
.campo-marcacao > input:disabled ~ span {
    cursor: not-allowed;
}
.campo-marcacao > span::before {
    width: 22px;
    height: 22px;
    border: 1px solid #c2cad8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f00c";
    font-family: "FontAwesome";
    font-size: 1.25rem;
    background-color: white;
    color: white;
    transition: background-color ease-in-out .15s, border-color ease-in-out .15s, color ease-in-out .15s;
}
.campo-marcacao > input:focus ~ span::before {
    border-color: #93a1bb;
}
.campo-marcacao > input:checked:not(:disabled) ~ span::before {
    background-color: #217ebd;
    border-color: #217ebd;
}
.campo-marcacao > input:disabled ~ span::before {
    background-color: #eef1f5;
}
.campo-marcacao > input:checked:disabled ~ span::before {
    color: #c2cad8;
}
.campo-marcacao > input:not(:checked):disabled ~ span::before {
    color: #eef1f5;
}

.botoes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}
.botoes.expandir > * {
    flex-grow: 1;
}


.rolavel {
    overflow: auto;
}

.titulo-linha {
    font-weight: bold;
    font-size: 1.6rem;
    color: #217ebd;
    text-align: center;
    position: relative;
    z-index: 0;
    margin: 0;
}
.titulo-linha::before {
    position: absolute;
    top: calc(50% - .5px);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #c2cad8;
    z-index: -1;
    content: "";
}
.titulo-linha > span {
    background-color: white;
    padding: 0 10px;
}

.aviso-cookies {
    display: flex;
    align-items: center;
    column-gap: 20px;
    border-radius: 10px;
    padding: 20px;
    background-color: white;
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 5px hsla(0deg, 0%, 0%, 25%);
    width: 534px;
    max-width: calc(100% - 20px);
    color: inherit;
}
.aviso-cookies:not([style*="display: flex;"]) {
    visibility: hidden;
}
.aviso-cookies > .icone {
    width: 50px;
}
.aviso-cookies > .botao {
    flex-shrink: 0;
}

.btn.suave {
    border-radius: 15px !important;
    text-transform: none !important;
    font-size: 1.4rem !important;
}
