.allInfo{
    display: flex;
    justify-content: space-between;
    width: 96vw;
    margin-left: 2vw;
    column-gap: 2vw;
    padding: 20px 0;
}


.leftInfo{
    width: 74%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.rightInfo{
    width: calc(25% - 20px);
    position: fixed;
    top: 60px;
    right: 2vw;
    height: calc(100vh - 60px);
    display: flex;
    padding: 20px 0;
    row-gap: 20px;
    flex-direction: column;
}

/* Top slider para seleccionar la region y el país */
.topInfo{
    background-color: #FFFFFF;
    width: 100%;
    padding: 2vh;
    height:  calc((100vh - 134px)* 0.27);
    max-height: 250px;
}

.filterContainer{
    display: flex;
    justify-content: space-between;
    height: calc(80% - 2vh);

    column-gap: 15px;
}

.countryCard{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;

    .buttonChange{
        background-color: #3194d2;
        color: #FFFFFF;
        border: 0;
        width: max-content;
        padding: 5px 10px;
        border-radius: 30px;
        font-family: "Quicksand-semiBold";
        cursor: pointer;
        font-size: 2vh;
    }
}

.country{
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 2.5vh;
    img{
        width: 24px;
    }
}

.filter{
    display: flex;
    justify-content: space-between;
    width: calc(100% - 130px);
    
    .iconsFilter{
        width: 24px;
        cursor: pointer;
        transition: transform .5s ease;
    }
}

.iconsFilter:hover{
    transform: scale(1.3);
}

.iconsFilter.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.line{
    width: 1px;
    color: #dedede;
    background-color: #dedede;
    
    border: 1px solid #dedede;
}

.filterContent {
  display: flex;
  width: 100%;
  align-items: stretch;
  overflow-x: hidden;
  scroll-behavior: smooth; /* transición suave */
}

.option{
    display: flex;
}

.optionsFilter {
  width: 20%;
  flex-shrink: 0;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 0.5vh;
  transition: transform 0.5s ease-in;
  font-size: 2.4vh;
  transform: scale(1);
}

.selectedCity{
    color: #3194d2;
    font-size: 2.6vh;
    font-family: "Quicksand-semiBold";
}

.bottomFilter{
    height: 20%;
    margin-top: 2vh;
    h1{
        text-align: center;
        color: #3194d2;
        font-family: "Quicksand-semiBold";
        font-size: 3vh;
    }
}


/* Tarjetas */

.containerCards{
    display: flex;
    justify-content: space-around;
    column-gap: 15px;
    row-gap: 15px;
    flex-wrap: wrap;
}

.noProducts{
    display: none;
    justify-content: center;
    p{
        
        text-align: center;
        margin-top: 30px;
        font-size: 20px;
        font-weight: bold;
    }
}


/* Buscador de trazabilidad */

.topRight{
    background-color: #FFFFFF;   
    padding: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    flex-shrink: 0;
    height: calc((100vh - 134px)* 0.27);
    max-height: 250px;
}

.titleSearch{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50%;
    img{
        height:90%;
        width: auto;
        object-fit: contain;
    }

    p{
        text-align: center;
        font-family: "Quicksand-bold";
        font-size: 1.3vw;
        color: #3194d2;
    }
}

.search{
    display: flex;
    align-items: center;
    column-gap: 5%;
    height: 50%;
    .submit{
        background-color: #3194d2;
        color: #FFFFFF;
        border-radius: 50%;
        width: 3.5vw;
        height: 3.5vw;
        border: 0;
        font-size: 1vw;
        font-family: "Quicksand-bold";
        cursor: pointer;
    }
}

.inputSearch{
    width: calc(100% - 5% - 3vw);
    height: 100%;
    border: 1px solid #70707070;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 1vw;
    background-color: #FFFFFF;
}

.bottomRight{
    flex-grow: 1;
    overflow-y: auto;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2vh;
    align-items: center;
    row-gap: 2vh;
    height: 73%;
    width: 100%;
    select{
        text-align: center;
        /* font-size: 18px; */
        font-family: "Quicksand-semiBold";
        height: 6vh;
        width: 100%;
    }
}

.checkbox{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-grow: 1;
    width: 100%;
    row-gap: 2vh;
}

.contentCheckbox {
    display: flex;
    width: 100%;
}

.checkedDiv {
    height: 3vh;
    width: 3vh;
    border: 1px solid #707070;
    margin-right: 10px;
    border-radius: 2px;
    flex-shrink: 0;
    img{
        width: calc(3vh - 2px);
        height: calc(3vh - 2px);
        object-fit: cover;
    }
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 0;
    height: 0;
    border: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.textOptions {
    color: #707070;
    font-family: "Quicksand-regular";
    font-size: 2.5vh;
    font-weight: 100;
    margin-bottom: 0;
}

label{
    cursor: pointer;
}

.contentSocial{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

#whatsapp{
    display: flex;
    justify-content: end;
    
    width: 50%;
    /* height: 40%; */

    img{
        width: 100%;
    }
}

.redAzulLogo{
    width: 16%;
}

.requirementsSpecie{
    display: none;
}

.searchMobile{
    display: none;
}

.containerModal,
.containerModalfilter{
    display: none;
}

.filterMobile{
    display: none;
}

@media (max-width: 1200px){
    .bottomRight {
        select{
            max-height: 40px;
        }
    }

    .textOptions{
        font-size: 15px;
    }
}

@media (max-width: 1000px){

    .leftInfo{
        width: 100%;
    }

    .rightInfo{
        display: none;
    }

    .requirementsSpecie{
        display: flex;
        padding: 20px;
        flex-direction: column;
        row-gap: 20px;
        background-color: #FFFFFF;
    }

    .inputSearch{
        height: 40px;
        font-size: 18px;
        text-align: center;
        width: 100%;
    }

    .checkbox{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .optionsFilter{
        width: 33%;
        flex-shrink: 0;
    }

    .contentCheckbox{
        align-items: center;   
    }

    .searchMobile{
        display: flex;
        cursor: pointer;
        img{
            position: fixed;
            z-index: 100;
            right: 4%;
            background-color: #FFFFFF;
            padding: 1%;
            border-radius: 10px;
            top: 70px;
        }
    }

    .containerModal,
    .containerModalfilter{
        width: 100vw;
        height: 100vh;
        background-color: #00000070;
        z-index: 1000001;
        position: fixed;
        top: 0;
        left: 0;
    }

    .sendFilter{
        width: max-content;
        text-align: center;
        margin: auto;
        background-color: #3194d2;
        padding: 8px 18px;
        border-radius: 10px;
        color: #FFF;
        font-size: 18px;
        font-family: "Quicksand-bold";
        cursor: pointer;
    }

    .modalSearcher,
    .modalFilter{
        position: fixed;
        top: 119px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #FFFFFF;
        width: 90%;
        max-width: 400px;
        padding: 20px;
    }

    .titleSearchMobile{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        img{
            width: 90px;
        }

        p{
            text-align: center;
            font-family: "Quicksand-bold";
            color: #3194d2;
        }
    }

    .searchContent{
        display: flex;
        column-gap: 20px;
        margin-top: 20px;
        .submit{
            background-color: #3194d2;
            color: #FFFFFF;
            border-radius: 50%;
            width: 50px;
            border: 0;
            cursor: pointer;
            /* font-size: 1vw; */
            font-family: "Quicksand-bold";
        }
    }

    .filterMobile{
        display: flex;
        justify-content: end;
        column-gap: 20px;
        padding: 10px 20px;
        background: #FFF;
        width: max-content;
        cursor: pointer;
        border-radius: 10px;
    }
}

@media (max-width: 800px){
    .country{
        p{
            display: none;
        }
    }
    .countryCard{
        .buttonChange {
            display: none;
        }
    }

    .filter{
        width: calc(100% - 70px);
    }

    .country{
        padding: 10px;
        background: #FFF;
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
        border-radius: 13px;
    }
}

@media (max-width: 700px){

    .filter{
        margin-bottom: 20px;
    }

    .optionsFilter{
        width: 100%;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .topInfo{
        height: auto;
        max-height: 100%;
    }

    .filterContainer{
        height: auto;
    }

    .bottomFilter {
        height: auto;
        h1{
            font-size: 20px;
        }
    }

}

@media (max-width: 480px){
    .checkbox{
        grid-template-columns: 1fr;
    }

}
