@charset "utf-8";

@font-face {
    font-family: "Quicksand";
    src: url("../FONTS/quicksand/Quicksand-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Quicksand-bold";
    src: url("../FONTS/quicksand/static/Quicksand-Bold.ttf");
}


@font-face {
    font-family: "Nunito-regular";
    src: url("../FONTS/Nunito/Nunito-Regular.ttf");
}

@font-face {
    font-family: "Nunito-bold";
    src: url("../FONTS/Nunito/Nunito-Bold.ttf");
}

:root {
    --gray1: #707070;
    --blue1: #005fae;
    --blue2: #3194D2;
    --orange: #fbb040;
    /*color: var(--gray1);*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    color: var(--gray1);
}


.borderRadius {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.borderRadiusInput {
    border-radius: 21px;
    -moz-border-radius: 21px;   
    -webkit-border-radius: 21px;
}

.generalShadow {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

body{
    width: 100%;
    height: 100%;
    background-color: #F8F8F8   ;
    background-size: auto 100vh;
}


.titleSection{
    text-align: center;
    margin-top: 20px;
    font-size: 40px;
    color: var(--blue2);
    font-family: 'Nunito-bold';
}

.textInfo{
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 24px;
    font-family: "Quicksand-bold";
    color: var(--blue2);
}

.noComercializadas{
    color: #F18817;
    width: 90%;
    margin: auto;
}

#conten-products,
.content-products-no{
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    column-gap: 5%;
    row-gap: 5%;
}

.card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    max-width: 331px;
    margin-bottom: 5%;
    background-color: #FFFFFF;
    /* display: flex;
    align-items: center; */
    cursor: pointer;
    /* border radius */
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;

    /* shadow */
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.cardNo{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 5px;
    width: 30%;
    max-width: 331px;
    margin-bottom: 5%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.card-img{
    width: 100%;
    display: flex;
    justify-content: center;
}

.card-img img{
    width: 85%;
    height: auto;
}

.textCard{
    margin-bottom: 10px;
    width: 100%;
}

.card-title{
    width: 100%;
    word-wrap: break-word;
    text-align: center;
    font-size: 20px;
    color: #3194D2;
    font-weight: bold;
}

.card-name{
    color: #707070;
    font-size: 17px;  
    width: 100%;
    word-wrap: break-word;  
    text-align: center;
    font-style: italic;
}

.card-description{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.title-descrption{
    font-size: 16px;
    font-weight: bold;
    color: #3194D2;
}

.talla-description{
    color: #707070;
    font-size: 18px;
}

.containerNoComercializadas{
    border: 1px solid #F18817;
    padding-top: 20px;
    border-radius: 15px;
    width: 90%;
    margin: 20px auto 45px;
}

.contentSpecies{
    height: 85%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Clase para especies en venta*/
.DispVenta{
    width: 100%;
    border-radius: 0px 0px 15px 15px;
    background-color: #08a63f;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
}

.textSpan {
    color: #FFF;
    font-weight: bold;
    font-size: 15px;
}

/* css para modal de productos que salen cuando la especie este en venta */

#overlay {
    position: fixed;
    z-index: 100000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 200ms;
}

#popupBody {
    width: max-content;
    max-width: 1023px;
    /* min-width: 680px; */
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 5px #CCC;
    background: #FFF;
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}


.containerModal{
    max-height: 80vh;
    overflow-y: auto;
}

.titlePopUp {
    color: #3194D2;
    text-align: center;
    font-size: 30px;
    font-family: "Quicksand";
    margin-bottom: 1.5vh;
}

.popupContent{
    max-height: 60vh;
    overflow: auto;
}

#contentProductsModal{
    width: max-content;
    max-width: 100%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    column-gap: 1.5vw;
    margin: auto;
    padding:8px ;
}


.buttonInfo{
    display: flex;
    justify-content: center;
    margin-top: 1.5vh;
}

.next {
    width: auto;
    padding: 10px 10px;
    background-color: #FBB040;
    border-radius: 15px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    border: 0;
    font-family: "Quicksand-bold";
    cursor: pointer;
}


#btn-close-popup {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -20px;
    top: -20px;
    padding: 20px;
    background-color: #FBB040;
    font-weight: bold;
    color: #fff;
    border-radius: 50%;
    line-height: 10px;
    cursor: pointer;
}

@media screen and (max-width: 1023px){
    .card, .cardNo{
        width: 30%;
    }

    #popupBody{
        max-width: 800px;
    }
}


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

    #popupBody{
        max-width: 750px;
    }
}

@media screen and (max-width: 768px){
    .card, .cardNo{
        width: 45%;
    }

    .contentSpecies{
        height: 88%;
    }
    .DispVenta{
        height: 12%;
    }


    .next {
        font-size: 18px;
    }

    #popupBody{
        max-width: 90%;
        min-width: auto;
    }
    
}

@media screen and (max-width: 530px){
    #contentProductsModal{
        min-width: auto;
    }
}

@media screen and (max-width: 480px){
    .containerNoComercializadas{
        margin: 20px auto;
    }
    .textInfo{
        width: 80%;
        margin: auto;
        font-size: 20px;
    }
    .content-products-no{
        row-gap: 5px;
    }
    .card{
        width: 45%;
    }
    .cardNo{
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 10px;
    }

    .textCard{
        margin-bottom: 0;
    }
    .card-description{
        flex-direction: column;
    }

    #popupBody{
        min-width: 90%;
    }

    .titlePopUp {
        font-size: 26px;
    }
}

@media(max-width:365px){
    .titlePopUp{
        margin-bottom: 4.5vw;
        font-size: 24px;
    }
    .buttonInfo{
        margin-top: 4.5vw;
    }

    .next {
        font-size: 16px;
    }
}

@media(min-width:535px){
    .titlePopUp{
        margin-bottom: 2.5vw;
    }

    .buttonInfo{
        margin-top: 2.5vw;
    }
}

@media(min-width:560px){
    .titlePopUp{
        margin-bottom: 2.5vw;
    }

    .buttonInfo{
        margin-top: 2.5vw;
    }
}

@media(min-width:768px){
    .titlePopUp{
        margin-bottom: 2.5vw;
    }

    .buttonInfo{
        margin-top: 2.5vw;
    }
}

@media(min-width:1023px){
    .titlePopUp{
        margin-bottom: 1.5vw;
    }

    .buttonInfo{
        margin-top: 1.5vw;
    }
}

