﻿.app-input, .app-textarea {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    box-shadow: 0px 0px 3px #cdcdcd6e;
    border-radius: 4px;
    border: 1px solid #ececec;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    font-size: 0.9rem;
    display: block;
}

.app-input::placeholder, textarea::placeholder {
    font-weight: 400;
    font-size: 0.9rem;
    font-style: italic;
}

.app-input[hidden], .app-textarea[hidden] {
    display: none;
}



.app-label {
    display: block;
    color: #363636;
    font-weight: 700;
    font-size: 14px;
    padding-left: 8px;
    margin-bottom: 5px;
}


.radio-custom-list {
    display: flex;
    gap: 10px;
    flex-wrap:wrap;
}

.radio-custom {
    position: relative;
}

.radio-custom label {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-width: 1px;
    border-color: #ececec;
    border-style: solid;
    border-radius: 4px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: calc(5px + 0.75rem + 15px + 5px);
    font-weight: 500;
    line-height: 1rem;
    background-color: #ffffff;
    color: #3f3f3f;
    cursor: pointer;
    display: inline-flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3px;
    margin: 0px;
    transition: background-color 0.35s ease, border-color 0.35s ease;
    font-size: 17px;
    box-shadow: 0px 0px 3px #cdcdcd6e;
}

.radio-custom label .title {
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
}

.radio-custom label .description {
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
}

.radio-custom input:focus + label {
    outline: 2px solid transparent;
    outline-offset: 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-color: #b5b5b5;
}

.radio-custom input:checked + label {
    outline: 1px solid #7ABF4E;
    outline-offset: 0px;
    background-color: #F7F7F7;
    border-color: #7ABF4E;
}

/*.radio-custom input {
    display: block;
    position: absolute;
    padding: 0;
    margin: 0;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 0;
}
*/

.radio-custom input {
    display: block;
    position: absolute;
    padding: 0;
    margin: 0;
    /*opacity: 0;*/
    /*left: 0;*/
    right: 5px;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    bottom: 0;
    width: 15px;
    height: 15px;
    cursor: pointer;
    border-radius: 15px;
    accent-color: #7ABF4E;
}


.form-inputs-col-2 {
    display: grid;
    grid-template: minmax(0, 1fr) minmax(0, 1fr);
    row-gap: 20px;
    column-gap: 10px;
}

.input-col-2 {
    grid-column: span 2 / span 2;
}