.ioniconnavbar
{
    display: inline-block;
    vertical-align: middle;
}

.ioniconnavbar a ion-icon
{
    color: var(--color-white);
    font-size: 20px;
    margin-top: -12px;
}


.ioniconnavbar .countcart
{
    display: inline-block;
    color: white;
    font-size: 9px;
    margin-left: 5px;
    background: var(--color-red);
    border-radius: 10%;
    padding: 4px 6px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: super;
}

@media all and (max-device-width: 600px)
{
    .ioniconnavbar .countcart
    {
        font-size: 27px;
    }
}

/***********************************************************************************/
/*                                                                                 */
/*                                  DEBUT NAVBAR                                   */
/*                                                                                 */
/***********************************************************************************/

.btn{
    position: absolute;
    top: 14px;
    left: 35px;
    height: 38px;
    width: auto;
    text-align: center;
    background: #1b1b1b;
    border-radius: 3px;
    cursor: pointer;
    transition: left 0.4s ease;
}
.btn.click{
    left: 260px;
}
.btn span{
    color: white;
    font-size: 36px;
    padding: 4px;
}

.rightbar ion-icon
{
    transition: var(--transition-delay);
}

.rightbar ion-icon:hover
{
    color: red;
    transition: var(--transition-delay);
}

@media all and (max-device-width: 600px)
{
    .btn
    {
        top: 34px;
        left: 43px;
    }
    .rightbar ion-icon
    {
        font-size: 42px !important;
    }
    .btn
    {
        height: 57px;
    }
    .btn span
    {
        font-size: 55px;
    }
}

.btn span ion-icon
{
    vertical-align: text-top;
}

.sidebar{
    position: fixed;
    top: 0;
    width: 250px;
    height: 100%;
    left: -250px;
    background: #1b1b1b;
    transition: left 0.4s ease;
    z-index: 1;
}
.sidebar.show{
    left: 0px;
}
.sidebar .text{
    color: white;
    font-size: 25px;
    font-weight: 600;
    line-height: 65px;
    text-align: center;
    background: #1e1e1e;
    letter-spacing: 1px;
}

.sidebar .text a
{
    color: white;
}


nav ul{
    background: #1b1b1b;
    height: 100%;
    width: 100%;
    list-style: none;
}
nav ul li{
    line-height: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
nav ul li:last-child{
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav ul li a{
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding-left: 40px;
    font-weight: 500;
    display: block;
    border-left: 3px solid transparent;
}

@media all and (max-device-width: 600px)
{
    .sidebar .text{
        font-size: 30px;
    }
    nav ul li a{
        font-size: 24px;
    }
}


nav li.active a, nav li.active li.active a{
    color: var(--color-red);
    background: #1e1e1e;
    border-left-color: var(--color-red);
}
nav ul li a:hover{
    background: #1e1e1e;
}
nav ul ul{
    position: static;
    display: none;
}
nav ul .feat-show.show{
    display: block;
}
nav ul .serv-show.show1{
    display: block;
}
nav ul ul li{
    line-height: 42px;
    border-top: none;
}
nav ul ul li a{
    font-size: 17px;
    color: #e6e6e6;
    padding-left: 80px;
}
nav ul li.active ul li a{
    color: #e6e6e6;
    background: #1b1b1b;
    border-left-color: transparent;
}
nav ul ul li a:hover{
    color: var(--color-red)!important;
    background: #1e1e1e!important;
}
nav ul li a span{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 22px;
    transition: transform 0.4s;
}
nav ul li a span.rotate{
    transform: translateY(-55%) rotate(-180deg);
}

.feat-btn
{
    cursor: pointer;
}

/***********************************************************************************/
/*                                                                                 */
/*                                    FIN NAVBAR                                   */
/*                                                                                 */
/***********************************************************************************/

.content
{
    position: relative;
    padding: 0 5%;
}

.categoryname
{
    color: var(--color-whitehover);
    font-size: 20px;
    display: inline-block;
}

@media all and (max-device-width: 600px)
{
    .content
    {
        margin-top: 35px;
        padding: 0 2%;
    }
    .categoryname
    {
        font-size: 25px;
    }
    .searchbox
    {
        font-size: 20px;
    }
}

.categoryname span
{
    color: var(--color-white);
}

.limiter
{
    display: block;
    height: 2px;
    margin: 10px 0;
    background: var(--color-red);
}

.littlelimiter
{
    display: block;
    height: 1px;
    margin: 10px 0;
    background: var(--color-red);
}

.productszone
{
    display: grid;
    margin: 20px 0;
    gap: 40px;
    grid-template-columns: repeat(5, minmax(0,1fr));
}

@media all and (max-device-width: 1100px)
{
    .productszone
    {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media all and (max-device-width: 768px)
{
    .productszone
    {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

.product
{
    position: relative;
}

.product .img
{
    height: 160px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    overflow: hidden;
    position: relative;
}

.product .productname
{
    color: var(--color-whitehover);
    margin: 8px 0;
    font-size: 16px;
}

.product .productprice
{
    color: var(--color-white);
    font-size: 14px;
}

@media all and (max-device-width: 600px)
{
    .product .productname
    {
        font-size: 25px;
    }

    .product .productprice
    {
        font-size: 23px;
    }
}

.onlyproductzone
{
    display: grid;
    margin: 20px 0;
    gap: 40px;
    grid-template-columns: repeat(2, minmax(0,1fr));
}

@media screen and (max-width: 768px)
{
    .onlyproductzone
    {
        grid-template-columns: repeat(1, minmax(0,1fr));
    }
}

.onlyproductzone .img
{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 300px;
    width: 100%;
}

.onlyproductzone .product_title, .onlyproductzone .price
{
    font-size: 25px;
    line-height: 35px;
}

.onlyproductzone .product_title
{
    color: var(--color-white);
}

.onlyproductzone .price
{
    margin: 10px 0;
    color: var(--color-whitehover);
}

.quantitybuttonsinput
{
    color: var(--color-white);
    font-size: 16px;
    margin: 20px 0;
}


.quantitybuttonsinput .addremovebutton
{
    color: var(--color-black);
    background: var(--color-white) !important;
    height: 28px;
    width: 26px;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}

.quantitybuttonsinput input
{
    width: 33px;
    font-size: 13px !important;
    text-align: center;
    background: transparent;
    color: var(--color-white);
    border: none;
}

.onlyproductzone .addcart
{
    margin: 20px 0;
    display: block;
}

.onlyproductzone .addcart a
{
    background: var(--color-green);
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 16px;
    color: var(--color-black);
}



.descriptiontitle
{
    margin: 30px 0 0 0;
}

.description
{
    color: var(--color-white);
}

.product_title a
{
    margin: 5px 0;
    display: table-caption;
}

.maintitleshop
{
    text-align: center;
}

.maintitleshop img
{
    height: 200px;
    width: 200px;
    margin-top: 60px;
}

.searchbox
{
    color: var(--color-white);
    float: right;
    font-size: 16px;
    margin-top: 3px;
}

.searchbox input
{
    background: transparent;
    border: none;
    width: 123px;
    color: var(--color-white);
    margin: 0 3px;
    padding: 0 3px;
    font-size: 16px;
}

.listempty
{
    margin: 4% 0;
    text-align: center;
    color: var(--color-white);
}

@media all and (max-device-width: 600px) {
    .maintitleshop img {
        height: 450px;
        width: 450px;
        margin-top: 120px;
    }
    .searchbox
    {
        font-size: 23px;
    }
}

.outofstock
{
    filter: grayscale(100%);
}

.outofstockbanner
{
    color: var(--color-white);
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateY(-50%);
    transform: translate(-50%, -50%) rotate(5deg);
    background: #323232;
    width: 105%;
    text-align: center;
    padding: 5px 0;
}



body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.footer
{
    text-align: center;
    color: var(--color-white);
    padding: 5px 0;
    margin-top: auto;
    width: 100%;
}

.footer p
{
    font-size: 10px;
}

@media all and (max-device-width: 600px)
{
    .footer p
    {
        font-size: 8px;
    }
}

.footer p a
{
    color: var(--color-white);
}