.premios-filtro{

}

.premios-filtro .form-group{
    position: relative;
    margin-bottom: 2rem;
    flex: 1 1 100%;
}
.premios-filtro .row1{
    display:flex;
    gap: 0.625rem;
}
.premios-filtro .row1 .form-group:last-child{
    flex: 0 0 4.625rem;
}

.premios-filtro .form-group label{
    position: absolute;
    top: 15px;
    left: 1.25rem;
    font-weight: 300;
    z-index: 2;
    text-transform: uppercase;
}
.premios-filtro .form-control{
    border: 0;
    border-radius: 0.625rem;
    padding: 35px 1.25rem 15px 1.25rem !important;
    font-weight: 500;
}
.premios-filtro .form-control::placeholder {
    font-weight: 500;
}

.premios-filtro button{
    width: 4.625rem;
    height: 4.625rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--conama-verde, #97BF0E);
    padding: 0;
}
.premios-filtro button svg{
    width: 1.375rem;
    fill: #fff;
    transition: all .3s;
}
.premios-filtro button:hover{
    border-radius: 0.625rem;
    background: #fff;
}
.premios-filtro button:hover svg{
    /*fill: var(--e-global-color-secondary);*/
    fill: var(--conama-verde, #97BF0E);
}

.premios-filtro .row2{
    border-radius: 0.625rem;
    background: #fff;
    padding: 1.25rem  1.25rem 1.25rem  1.25rem;
}
.premios-filtro .row2 .label{
    font-weight: 300;
    z-index: 2;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.premios-filtro .row2-inner{
    display:flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.premios-filtro > button{
    display:none;
    width: 100%;
}

.premios-filtro .select2-container--default .select2-selection--single{
    border: 0;
    border-radius: 0.625rem;
    padding: 35px 1.25rem 15px 1.25rem;
    height: auto;
}
.premios-filtro .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 1.5rem;
    color: #000;
    font-weight: 500;
    padding-left: 0;
}
.premios-filtro .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: calc(50% - 13px);
}

.select2-dropdown{
    border: 0;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.1);
}
.select2-results__option{
    color: #000;
}
.select2-container--default .select2-results__option[aria-selected=true]{
    /*background: color-mix(in srgb, var(--e-global-color-secondary) 20%, transparent);*/
    background: color-mix(in srgb, var(--conama-verde, #97BF0E) 20%, transparent);
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    /*background-color: var(--e-global-color-secondary);*/
    background-color: var(--conama-verde, #97BF0E);
    color: white;
}

.premios-filtro .custom-control {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 1.375rem;
    padding-left: 2rem;
}
.premios-filtro .custom-control-inline {
    display: inline-flex;
    margin-right: 1rem;
}
.premios-filtro .custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1.375rem;
    height: 1.375rem;
    opacity: 0;
    cursor: pointer;
}
.premios-filtro .custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    font-weight: 500;
    cursor: pointer;
}
.premios-filtro .custom-control-label::before {
    position: absolute;
    top: -3px;
    left: -2rem;
    display: block;
    width: 1.375rem;
    height: 1.375rem;
    pointer-events: none;
    content: "";
    /*background: var(--e-global-color-secondary);*/
    background: var(--conama-verde, #97BF0E);
    border-radius: 4px;
}
.premios-filtro .custom-control-label::after {
    position: absolute;
    top: -3px;
    left: -2rem;
    display: block;
    width: 1.375rem;
    height: 1.375rem;
    content: "";
    background: no-repeat 50% / 50% 50%;
}
.premios-filtro .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

/* Medium devices (vertical tablets) */
@media (max-width: 991px) {

}

/* Small devices (landscape phones)  */
@media (max-width: 767px) {

}

/* Small devices (vertical phones) */
@media (max-width: 575px) {
    .premios-filtro .row1 {
        flex-direction: column;
        gap: 0;
    }
    .premios-filtro .row1 .form-group:last-child{
        display: none;
    }
    .premios-filtro .form-group{
        margin-bottom: 0.625rem;
    }
    .premios-filtro .row2{
        margin-bottom: 0.625rem;
    }
    .premios-filtro .row2-inner{
        flex-direction: column;
    }
    .premios-filtro > button{
        display: block;
    }
}