/***** INPUT *****/
.ed-input {
    color: var(--ed-main-text-color);
    border: 1px solid currentColor;
    padding: 8px 10px 6px 17px;
    font-size: 16px;
    min-width: 150px;
    width: 100%;
    border-radius: 5px;
}

input.ed-input {
    height: 40px;
}

.ed-input-group.input-group {
    max-width: 350px;
    width: 100%;
}

/***** INPUT GROUP *****/
.ed-input-group.input-group > .input-group-addon {
    color: var(--ed-main-text-color);
    text-align: center;
    padding: 10px;
    border: 1px solid currentColor;
    border-left: none;
}

.ed-input-group.input-group > .input-group-addon > .fi {
    display: flex;
}

/***** RADIO BUTTON *****/
.ed-radio-container {
    display: flex;
    column-gap: 20px;
}

.ed-radio {
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    font-weight: normal;
    min-width: 70px;
}

.ed-radio > input {
    position: absolute;
    opacity: 0;
    display: none;
    cursor: pointer;
}

.ed-radio > span {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 3px 10px;
    color: var(--ed-main-text-color);
    border: 1px solid currentColor;
    border-radius: 5px;
}

.ed-radio > input:checked ~ span {
    background-color: var(--ed-main-color);
    color: white;
    border-color: var(--ed-main-color);
}

/***** SELECT 2 OVERRIDE *****/
.ed-select2 {
    min-width: 150px;
}

.ed-select2 > .select2 {
    width: 100% !important;
}

.ed-select2 .select2 .select2-selection {
    min-height: 40px;
    padding: 6px 12px;
    border-radius: unset;
    border: 1px solid currentColor;
    border-radius: 5px;
}

.ed-select2 .select2 .select2-selection.select2-selection--multiple {
    padding-top: 0;
    padding-bottom: 0;
}

.ed-select2 .select2 .select2-selection > .select2-selection__rendered {
    line-height: unset;
    padding-left: unset;
}

.ed-select2 .select2 .select2-selection > .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
}

.ed-select2 .select2 .select2-selection__rendered {
    color: var(--ed-main-text-color) !important;
}

.ed-select2 .select2 .select2-search__field {
    width: 100% !important;
}
