
body{
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;

    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    
}
/* -------------------------------------------------------   */
body::-webkit-scrollbar{
    width: 7px;
    height: 7px;
    background-color: transparent;
}
body::-webkit-scrollbar-thumb{
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background-color: rgb(182, 197, 212);
}  
#slider{
    width:100%;
    height:25vw;
    position:relative;
    overflow:hidden;
}
.slides{
    width:400%;
    height:100%;
    position:relative;
    animation:slide 20s infinite;
}
.slider{
    width:25%;
    height:100%;
    float:left;
    position:relative;
    z-index:1;
    overflow:hidden;
}
.image{
    width:100%;
    height:100%;
}
.image img{
    width:100%;
    height:auto;
}

@keyframes slide{
    0%,100%{  margin-left:0%; }
    21%{ margin-left:0%; }
    25%{ margin-left:0%; }
    46%{ margin-left:0%; }
    50%{ margin-left:-100%; }
    71%{ margin-left:-100%; }
    75%{ margin-left:-100%; }
    96%{ margin-left:-100%; }
}

.mainpanel{
    width: 100%;
    /* overflow-x: hidden; */
    display: flex;
}
.panel{
    padding: 10px;
    
}
.leftpanel{
   width: 25%; 
}
.rightpanel{
    width: 75%; 
    .title{
        padding: 10px 0 20px 0;
        /* text-align: center; */
        font-size: 1.5em;
        font-weight: 900;
    } 
}
.container{
    width: 100%; 
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.card{
    background-color: white;
    min-width: 200px;
    max-width: 250px;
    width: 20vw;
    /* height: 300px; 
    border: 1px solid var(--main-darkblur03); */
    box-shadow: 0px 0px 2px 1px rgb(223, 223, 223);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card:hover{
    border: none;
    box-shadow: 0px 0px 5px 2px var(--main-darkblur03);
    .pick{
        button{
            background-color: black;
            i{
                color: white;
            }
        }
    } 
}
.opacity-off{
    opacity: 0;
}
.card{
    .head{
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: space-between;
    }
    .off{
        color: white;
        font-weight: bold;
        margin: 5px;
        padding: 0 10px;
        background-color: red;
        border-radius: 5px 0 5px 0;
        /* opacity: 0; */
    }
    .code{
        padding: 5px;
    }
    .pic{
        width: 100%;  
        img{
            width: 100%;
           
        }
    }
    .desc{
        width: 100%;
        padding: 5px;
        text-align: start;
        font-size: small;
    }
    .pricing{
        width: 100%;
        padding: 10px 5px;
        .fprice{
            color: blue;
            font-weight: bold;
        }
        .wprice{
            border: 1px solid rgb(0, 153, 0);
            border-radius: 5px;
            padding: 5px;
            font-weight: bold;
            
        }
        .mprice{
            color: red;
            font-weight: bold;
        }
    }
    .pick{
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        button{
            width: 100%;
            background-color: white;
            cursor: pointer;
            border-radius: 5px;
        }
    }
} 


.leftpanel .pad .content{
    border-right: 2px solid gray;
    
    
}

  
@media (width < 650px) {
    #slider{
        display: none;
    }
    .mainpanel{
        flex-direction: column-reverse;
    }
    .leftpanel{
        .pad{
            display: none;
        }
        
    }
    .leftpanel, .rightpanel{
        width: 100%;
    }
    .card{
        width: 90%;
        max-width: 500px;
    }
}