* {
    box-sizing: border-box;
}

.filterbuttondiv {
    display: none;
    bottom: 0;
    position: sticky;
}

form.example input[type=text] {
    padding: 10px;
    font-size: 17px;
    border: 1px solid grey;
    float: left;
    width: 80%;
    background: #fff;

}

form.example button {
    float: left;
    width: 20%;
    padding: 10px;
    background: #333;
    border-radius: 0px;
    color: white;
    font-size: 17px;
    border: 1px solid black;
    border-left: none;
    cursor: pointer;
}

form.example button:hover {
    /*background: #0b7dda;*/
    border: 1px solid black;
}

form.example::after {
    content: "";
    clear: both;
    display: table;
}

.dropdown-check-list {
    display: inline-block;
    width: 100%;
}

.modal-content {
    width: 830px;
    margin: 0;
}

.input-group {
    width: 40%;
    margin-left: -30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #d3f7f2;
    border-radius: 10px;
    position: relative;
}

.uploadImage {
    width: 100%;
    display: flex;
    left: 0;
    justify-content: space-between;
    padding: 15px 10px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    border: #000;
    border-radius: 10px;
    cursor: pointer;
}

.showImageData {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
    color: #b3b3b3;
    padding: 10px 18px;
    border-radius: 10px;
    position: absolute;
    opacity: 0;
    top: -55px;
    pointer-events: none;
}

.uploadImage:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0);
    transition: 0.2s;
}

.uploadImage:hover .showImageData {
    opacity: 1;
    pointer-events: auto;
}

.modal-footer .upload {
    display: none;
}



.dropdown-check-list ul.items li {
    list-style: none;
}

.product-price .offer-pricenew {
    color: #4d4d4d;
    font-size: 15px;
    font-weight: 500;
    padding-left: 10px;
    color: initial;
    font-family: 'Montserrat', sans-serif;
}

.product-price .offer-pricenewone {
    color: #4d4d4d;
    font-size: 10px;
    font-weight: 500;
    padding-right: 6px;
    color: initial;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

.dropdown-check-list {
    max-height: 20rem;
    overflow: auto;
    /* max-width: 20rem; */
    border-radius: 1rem;
    background-color: ghostwhite;
}

.dropdown-check-list span {
    margin-left: 2rem;
}

.dropdown-check-list::-webkit-scrollbar {
    width: 5px;
    background-color: white;
}

.dropdown-check-list::-webkit-scrollbar-thumb {
    background: gainsboro;
    border-radius: 1rem;
}

.ratings {
    margin-top: 1rem;
}

.product-filter-rightDiv {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}
    
/*media queries*/

@media screen and (min-width: 1000px) {
  .close-icon {
    display: none;
    color: red;
  }
}

@media screen and (max-width: 768px) {
    .product-filter-leftDiv {
        position: fixed;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background-color: #fff;
        z-index: 999;
        transition: left 0.3s ease;
        border-right: 3px solid grey;
        overflow-y: auto;
    }
    
    .single_product{
        width: 50% !important;
    }
    
    .bannar-image {
        background: "url({{url('/assets')}}/images/categories/{{$category->feature_image}})" no-repeat center center;
        background-size: cover;
        border-radius: 1.25rem;
        height: 20vh;
        width: 100%;
    }
    

    .dropdown-check-list {
        max-height: 30rem;
        overflow: auto;
        border-radius: 1rem;
        background-color: ghostwhite;
    }

    .product-filter-option .row .form-group {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }

    .product-filter-option .row .form-group.anchor {
        font-size: 12rem;
    }

    .filterbuttondiv {
        display: block;
    }

    .mobilefilter {
        width: 100%;
        height: 8rem;
        font-size: 3rem;
        background-color: #333;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
    }
    
    .product-filter-option-form form:last-child {
        width: 100%;
    }
    
    #price-min {
        width: 100%;
    }
    
    #price-max {
        width: 100%;
    }

    .close-icon {
        display: block;
    }
    
    .close-icon {
        cursor: pointer;
        font-size: 18px;
        color: #444;
        float: right;
    }
    
    .show-panel {
        left: 0;
    }
    
    #price-min,
    #price-max,
    #price-search-btn {
        width: 40%;
        flex-wrap: wrap;
        margin-top: 1px;
    }
    
    .single-product-carousel-item .product-carousel-text {
        display: flex;
        flex-direction: column;
        height: auto;
        text-align: center;
        position: relative;
    }
    
    .single-product-carousel-item .product-carousel-text h4 {
        font-size: 1.1rem;
    }
    
    .ratings {
        display:flex;
        flex-direction: column;
        position: relative;
        vertical-align: middle;
        display: inline-block;
        color: #888888;
        overflow: hidden;
        margin-top: 2rem;
    }
}

@media only screen and (min-width:768px) and (max-width:999px) {
    .product-filter-leftDiv {
        position: fixed;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background-color: #fff;
        z-index: 999;
        transition: left 0.3s ease;
        border-right: 3px solid grey;
        overflow-y: auto;
    }

    .bannar-image {
        background: "url({{url('/assets')}}/images/categories/{{$category->feature_image}})" no-repeat center center;
        background-size: cover;
        border-radius: 1.25rem;
        height: 30vh;
        width: 100%;
    }

    .dropdown-check-list {
        max-height: 20rem;
        /* overflow: hidden; */
        border-radius: 1rem;
        background-color: ghostwhite;
    }

    .product-filter-option .row .form-group {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }

    .product-filter-option .row .form-group.anchor {
        font-size: 12rem;
    }

    #catrow {
        width: 100%;
    }

    .filterbuttondiv {
        display: block;
    }

    .mobilefilter {
        width: 100%;
        height: 8rem;
        font-size: 3rem;
        background-color: #333;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
    }
    
    .product-filter-option-form form:last-child {
        width: 100%;
    }
    
    .mobilefilter:hover {
        background-color: #555;
    }
    
    #custom-form-group {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width:1000px) {
    .bannar-image {
        background: "url({{url('/assets')}}/images/categories/{{$category->feature_image}})" no-repeat center center;
        background-size: cover;
        border-radius: 1.25rem;
        height: 60vh;
        width: 100%;
    }

    .mobilefilter {
        width: 100%;
        height: 8rem;
        font-size: 3rem;
    }
}

@media only screen and (max-width: 991px) {
  #removespace1 {
    margin-top: -10.938rem;
  }
  #removespace3 {
    margin-bottom: -3.75rem;
  }
}

@media only screen and (max-width: 1200px) {
  .addtocart-form {
    width: clamp(800px, 50%, 750px);
    height: auto;
    margin: 0 auto;
    border: none;
    border-radius: 0.5rem;
    background-color: #52dcee;
    margin-bottom: 10px;
  }
}
