﻿/*  CSS of Products Page */

/* Sections  */

.products-hdg1 {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 55px;
    font-weight: 700;
   
}

.products-hdg2 {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    background-color: #F9F9F9;
}

.products-text {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: #F9F9F9;
}

.icon-size {
    font-family: "Open Sans", sans-serif;
    font-size: 35px;
    
    background-color: #F9F9F9;
}

@media (max-width:768px){
    .products-hdg2{
        display:none;
    }

    /*.product-items{
        display:block;
    }*/

    .products-text::before{
        content:attr(data-col-header) " : ";
        font-weight:bold;
        width:8.5rem;
        display:inline-block;
    }

    .icon-size{
        font-size:25px;
    }
}


.form {
    position: relative;
}

    .form .fa-search {
        position: absolute;
        top: 20px;
        left: 20px;
        color: #9ca3af;
    }

    .form span {
        position: absolute;
        right: 17px;
        top: 13px;
        padding: 2px;
        border-left: 1px solid #d1d5db;
    }

.left-pan {
    padding-left: 7px;
}

    .left-pan i {
        padding-left: 10px;
    }

.form-input {
    height: 55px;
    text-indent: 33px;
    border-radius: 10px;
}

    .form-input:focus {
        box-shadow: none;
        border: none;
    }

.exampleModal{
    z-index: 111;
}


/*///////////////////////////////*/

.details-side {
    width: 50%;
    overflow-y: scroll; /* Allows scrolling */
    padding: 2rem;
    /* Hide scrollbar for all browsers */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

    .details-side::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

.image-side {
    width: 50%;
    padding: 1rem;
    overflow: hidden;
    border-right: 1px solid #ddd;
}

.details-side {
    width: 50%;
    overflow-y: auto;
    padding: 2rem;
}

/* Add to Cart - White Background, Black Text */
.btn-white-black {
    background-color: white;
    color: black;
    border: 2px solid black;
    transition: all 0.3s ease-in-out;
}

    .btn-white-black:hover {
        background-color: black;
        color: white;
        border: 2px solid black;
    }

/* Buy Now - Black Background, White Text */
.btn-black-white {
    background-color: black;
    color: white;
    border: 2px solid black;
    transition: all 0.3s ease-in-out;
}

    .btn-black-white:hover {
        background-color: white;
        color: black;
        border: 2px solid black;
    }

.img-thumbnail {
    cursor: pointer;
    width: 50%;
}

@@media (max-width: 767.98px) {
    .img-thumbnail {
        width: 80%;
        cursor: pointer;
    }
}
    /* End Of Sections  */
