html,html *{
    color:#0f8f85;
    font-family: "Montserrat";
    margin:0;   
}

body{
    margin:0;
    height:100vh;
}
header{
    box-shadow: 0 0 10px #00000030;
}
main{
    padding-top:51px;
    height:100vh;
    display: flex;
    flex-direction:column;
    box-sizing: border-box;
}

body *{
    text-align: center;
}

script{
    display:none !important;
}

h1{
    margin-top:3vh;
    margin-bottom:1vh;
    line-height:3vh;
    font-size:3vh;
}

h1+p{
    font-size:2vh;
    line-height:2vh;
    height:2vh;
}

#empty-subscription_container{
    padding:0 20px;
    position:absolute;
    top:40%;
    text-align:left;
}

.containers_container{
    display: flex;
    flex-direction: column;
    /* flex:1; */
    min-height:calc(83.5vh - 71px);
}
.containers_container > div{
    /* flex:1; */
    height:50%;
    display:flex;
    flex-direction: column;
    padding:2vh 0px 1vh 0;
    box-sizing: border-box
}
.containers_container > div .h2{
    font-size:2.5vh;
    height:3vh;
    line-height:3vh;
    font-weight: bold;
}
.totalpermonth_container{
    height:2vh;
    line-height:2vh;
    font-size: 2vh;
    font-weight: bold;
}

#productsContainer,#cartContainer{
    display:flex;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    /* padding:2vh 0 2vh 2vw; */
    padding:20px 0 0 30px;
    box-sizing: border-box
}
#cartContainer{
    /* min-height:calc(100% - 55px - 5vh); */
    min-height:calc(100% - 55px);
}
#productsContainer{
    min-height:calc(100% - 55px);
}
#productsContainer::-webkit-scrollbar,#cartContainer::-webkit-scrollbar{
    -webkit-appearance: none;
}

.arrow_container{
    display:flex;
    justify-content: flex-end;
}
.arrow_container img{
    margin:10px 10px;
    padding:7px;
    box-sizing: border-box;
    cursor: pointer;
}

.arrow_container img:hover{
    background-color: #ecfdfc;
    border-radius:50px;
    border:1px solid #0f8f85;
}

.pdt_card{
    height:calc(100% - 1.8vh);
    background-color:#fff;
    min-width:17vw;
    max-width:17vw;
    box-shadow:2px 2px 5px #3b3b3b30;
    margin-right:2vw;
    position:relative;
    border-radius:20px;
    padding-bottom:1vh;
    box-sizing: border-box;
}

.pdt_card img:not(.lookup_btn){
    height:calc(100% - 8vh - 10px);
    width:auto;
    padding:10px 0 1vh 0;
    align-self: center;
}

.pdt_card .title{
    font-weight:bold;
    font-size:2vh;
}
.pdt_card .description{
    padding:0 1vw;
    font-size:2vh;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.pdt_card .price{
    font-weight:bold;
    background-color:#FF6100;
    color:#fff;
    position: absolute;
    top:-0.5vh;
    left:-0.5vh;
    border-radius:1vh;
    padding:1vh;
    font-size:1.8vh;
}
.pdt_card .btn{
    padding:7px 20px;
    position:absolute;
    bottom:-1.8vh;
    width:100px;
    background-color:#0f8f85;
    color:#fff;
    text-align:center;
    left:calc(50% - 50px);
    border-radius:40px;
    padding:0.7vh 0;
    font-size:1.8vh;
    cursor: pointer;
}
.pdt_card .lookup_btn{
    position:absolute;
    width:3vh;
    height:3vh;
    top:-1.5vh;
    right:-1.5vh;
    background-color:#0f8f85;
    color:#fff;
    border-radius:30px;
    padding:8px;
    cursor: pointer;
}

@keyframes rotate{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg)}
}
.loading_container{
    width:100%;
    margin-top:2vh;
    height:100px;
    position:absolute;
    bottom:2vh;
    top:calc(2vh + 70px)
    
}
.loading_container > div{
    height:100%;
    margin:auto;
}
.loading_container .loading{
    transform:rotate(0deg);
    animation-name:rotate;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    width:auto;
    height:100%;
}

#productlookup_container{
    height:100vh;
    background-color:#00000090;
    position:absolute;
    top:0;
    width:100%;
    box-sizing:border-box;
    z-index:120;
}

#productlookup_container[data-display="false"]{
    display:none;
}

#content_container{
    height:100%;
    width:50%;
    background-color:#fff;
    left:50%;
    top:0;
    position:relative;
    padding:10px;
    box-sizing:border-box;
}

#productlookup_container .close{
    font-size:6vh;
    text-align:right;
    line-height:29px;
}

#productlookup_container .close > span{
    cursor:pointer;
}

#productlookup_container .title{
    font-size:3vh;
    font-weight:bold;
    margin-bottom:1vh;
}
#productlookup_container .price{
    text-align:center;
    padding:10px 20px;
    border-radius:10px;
    background-color:#fff0e6;
    color:#FF6100;
    font-weight:bold;
    font-size:2.5vh;
    margin-bottom:1.5vh;
}
#productlookup_container .description{
    margin-bottom:1.5vh;
    line-height:20px;
    height:30vh;
    overflow-y:scroll;
    overflow-x:hidden;
    padding:0 0.5vw;
    text-align: left;
}
#productlookup_container .description div{
    text-align: left;
}
#productlookup_container .title3{
    font-weight:bold;
    text-align: left;
    margin:20px 0 7px 0;
}
#productlookup_container .description .desc_list-e{
    display: flex;
    text-align:left;
    margin-bottom:5px;
}
#productlookup_container .description .desc_list-e div{
    text-align:left;
}
#productlookup_container .description .desc_list-e img{
    height:20px;
    width:20px;
    margin:0;
    padding-right:10px;
}
#productlookup_container .description::-webkit-scrollbar{
    appearance: none;
    -webkit-appearance: none;
    width:8PX;
}
#productlookup_container .description::-webkit-scrollbar-thumb{
    background-color:#0f8f8580;
    border-radius:20px;
}
#productlookup_container img{
    width:30vh;
    height:30vh;
    margin:3vh 0;
}

#productlookup_container .add_btn-container div{
    background-color:#FF6100;
    color:#fff;
    margin:auto;
    padding:10px 20px;
    border-radius:10px;
    width:60%;
    cursor:pointer;
}
.sub_header{
    padding-left:20px;
    display:flex;
    justify-content:space-between;
    align-items:center
}
.sub_header .txt{
    display:flex;
    align-items: baseline;
}
.sub_header .totalpermonth_container{
    padding-left:10px;
    color:#FF6100;
    font-weight: bold;
    text-align: left;
}
#products_catalog{
    padding-left:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

#empty-subscription_container{
    text-align:center;
    display:none
}

main > div:nth-child(1){
    padding:2vh 0;
}


/* Lookup description*/


@media screen and (min-width:760px){
    .mobile{
        display:none;
    }
}
@media screen and (max-width:760px){
    .desktop{
        display:none;
    }
    main{
        padding-top:45px;
    }
    main > div:nth-child(1){
        padding-bottom:0;
    }
    h1{
        margin-top:0;
    }
    h1+p{
        height:4.8vh;
        line-height: 2.4vh;
        padding:0 10px;
    }
    .pdt_card{
        min-width:65%;
        max-width:65%;
        margin-right:7vw;
        padding:0 1vh 1vh;
    }
    .containers_container > div .h2{
        font-size:2vh;
        height:unset;
        text-align:center;
        font-weight:500;
    }
    #products_catalog{
        padding:0;

    }
    .containers_container > div:nth-child(1) .sub_header{
        justify-content: center;
    }
    #empty-subscription_container{
        font-size:2vh;
    }
    #content_container{
        width:100%;
        left:0;
        top:100%;
        height:90%;
        border-radius:20px 20px 0 0;
        transition:top 1s;
        box-sizing: border-box;
    }
    #productlookup_container .title{
        font-size:2.6vh;
    }
    #productlookup_container .description{
        height:30%;
        font-size:2vh;
        line-height:2.2vh;
    }
    #productlookup_container .description::-webkit-scrollbar-thumb{
        width:5vw;
    }
    #productlookup_container .description .desc_list-e img{
        height:3vh;
        width:3vh;
    }
    .add_btn-container .btn{
        font-size:2vh;
    }
    #productlookup_container img{
        width:25vh;
        height:25vh;
    }
    /* .sub_header .txt{
        flex-direction:column;
    } */
    /* .sub_header .totalpermonth_container{
        padding-left:0px;
    } */
}