/*------------- DOMINIO -------------*/
.dominio_section{

    display: block;
    width: 100%;
    height: auto;
    margin: 80px 0px;

}
.dominio_section__form{

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: fit-content;
    padding: 0px;
    margin: 0px;
    border: 0px;
    overflow: hidden;

}
.dominio_section__form__search{

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 52px;
    padding: 0px;
    margin: 0px;
    border: 0px;

}
.dominio_section__form__search__label{

    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 100%;
    padding: 0px 20px;
    margin: 0px;
    border: var(--border-style);
    background-color: #f7f7f7;

}
.dominio_section__form__search__label__span{

    display: block;
    width: fit-content;
    height: fit-content;
    padding: 0px;
    margin: 0px;
    border: 0px;

}
.dominio_section__form__search__field{

    display: block;
    width: auto;
    height: 100%;
    padding: 0px 20px;
    margin: 0px;
    flex-grow: 1;
    border-left: 0px;
    border-right: 0px;
    border-top: var(--border-style);
    border-bottom: var(--border-style);

}
.dominio_section__form__search__field__input{

    display: block;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    background-color: #ffffff;
    opacity: 1;
    cursor: text;

}
.dominio_section__form__search__field__input:disabled{
    
    background-color: #ffffff;
    opacity: 1;
    -webkit-text-fill-color: inherit;
    outline: none;

}
.dominio_section__form__search__select{

    display: block;
    position: relative;
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    height: 52px;
    background-color: #ffffff;
    border: var(--border-style);
    cursor: pointer;

}
.dominio_section__form__search__select__input{

    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--black-color);
    padding: 0px 20px;
    border: 0px;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    z-index: 1;
    cursor: pointer;

}
.dominio_section__form__search__select__input:disabled{
    
    background-color: transparent;
    opacity: 1;
    -webkit-text-fill-color: inherit;
    outline: none;

}
.dominio_section__form__search__select__input__option{

    display: block;
    width: 100%;
    height: auto;

}
.dominio_section__form__search__select__svg{

    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: block;
    height: auto;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
    fill: #656565;
    padding: 0px;
    margin: 0px;

}
.dominio_section__form__button{

    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 10px;
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    height: 52px;
    background-color: var(--blue-color);
    padding: 0px 20px;
    cursor: pointer;
    text-decoration: none;

}
.dominio_section__form__button:disabled{
    
    background-color: var(--blue-color);
    opacity: 1;
    -webkit-text-fill-color: inherit;
    outline: none;

}
.dominio_section__form__button__span{

    display: block;
    color: #ffffff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-decoration: none;

}
.dominio_section__form__button__svg{

    display: block;
    width: auto;
    height: 14px;
    padding: 0px;
    margin: 0px;
    fill: #ffffff;

}
.dominio_section .cards_section__nav__item{

    margin-top: 20px;

}
.cards_section__nav__item__details__text__list__element__label__span.label_span_tablet{

    display: block;

}
.cards_section__nav__item__details__text__list__element__label__span.label_span_mobile{

    display: none;

}
@media screen and (max-width: 765px){

    .dominio_section__form__search__label{

        display: none;
        
    }
    .dominio_section__form__search__field{

        border-left: var(--border-style);

    }
    .dominio_section__form__button,
    .dominio_section__form__search__select{

        width: 125px;
        min-width: 125px;
        max-width: 125px;

    }

}
@media screen and (max-width: 545px){

    .dominio_section__form{
        
        flex-direction: column;
        align-items: flex-start;

    }
    .dominio_section__form__button{

        width: 100%;
        min-width: 0px;
        max-width: 100%;

    }

}
/*------------- DOMINIO -------------*/