.main-container {
    width: 100%;
    padding: 6px 0px;
    background: #fff;
    border: 1px solid #e7e7e7;
    box-shadow: 1px 1px 2px #ffffff70;
    margin-top: 10px;
}

.filter-section {
    flex-basis: 20%;
    padding: 1px 13px;
    border-radius: 10px;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-bottom: 1px solid rgb(203 21 158);
}
.product-section {
    flex-basis: 80%;
}

.container-element h4 
{
    font-size: 16px;
    font-weight: 500;
    background: #fff;
}
/* Remove This */
hr{
    border-top: 1px solid var(--theme);
}
.container-element h4 span {
    text-transform: capitalize;
}

.filter-section .filter-element {
    padding: 7px 8px;
    margin-top: 5px;
    border-radius: 8px;
    border: .5px solid gray;
    /* Remove this */
    border: .5px solid var(--theme);
}

.filter-section .filter-element .price_range {
    width: 100%;
}

.filter-section .filter-element .price_range input[type="range"] {
    width: 85%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 8px;
    outline: none;
    position: relative;
    background: #fff;
    opacity: .7;
    cursor: pointer;
    transition: .3s;
    /* Remove this */
    background:#ff7d00;
}

.filter-section .filter-element .price_range input[type="range"]:hover {
    opacity: 1;
}

.filter-section .filter-element .price_range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #ff3838;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    /* Remove this */
    background: #0ee20e;
}

.filter-section .filter-element .price_range #priceValue {
    background:#ff7d00;
    width: 45px;
    height: 16px;
    padding: 5px 3px;
    margin-bottom: 6px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    /* Remove this */
    color: #ffffff;
}

.filter-section .filter-element h6 {
    font-family: var(--Montserrat);
    font-size: 17px;
    font-weight: bolder;
    color: #000;
    text-align: center;
}

.filter-section .filter-element h6 .mobile-drop {
    padding: 5px;
    font-size: 22px;
    line-height: 17px;
    display: none;
}

.filter-section .filter-element .filter-selection {
    padding: 0 10px;
}

.filter-section .filter-element .scrollable-selection {
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    justify-content: space-around;
}

.filter-section .filter-element .filter-selection .form-check {
    margin: 6px 0;
}

.filter-section .filter-element .filter-selection .form-check-label input {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.filter-section .filter-element .filter-selection .form-check-label span {
    font-family: var(--Abel);
    font-size: 17px;
    text-transform: capitalize;
    color: var(--text-color);
    /* Remove this */
    color: var(--theme);
    cursor: pointer;
    color: #000;
}

.product-section {
    padding: 0 20px;
}

.product-section .show-result {
    padding: 10px 0px;
    display: grid;
    grid-template-columns: repeat(4, 25%);
    overflow: hidden;
}

.product-section .show-result .full-product {
    width: 200px;
    margin: 5px 5px;
    overflow: hidden;
    transition: .3s linear;
    cursor: pointer;
    border: 1px solid #d8d8d8;
    padding: 10px;
    background: #ffffff;
}

/* .product-section .show-result .full-product img 
{
    height: 270px;
} */

.product-section .show-result .full-product .product-info 
{
    display: block;
    padding: 8px 0;
    text-align: center;
    background:#fff;
}

.product-section .show-result .full-product .product-info .binfo 
{
    padding: 3px 0;
    text-transform: capitalize;
    color: #f91e97;
    text-align: justify;
}

.product-section .show-result .full-product .product-info a {
    text-decoration: none;
    color: var(--black);
    /* Remove this */
    color: #fff;
    font-family: var(--Montserrat);
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

.product-section .show-result .full-product .product-info a:hover {
    color: var(--text-color);
}

.product-section .show-result .full-product .product-info h4 
{
    text-transform: capitalize;
    font-size: 12px;
    padding: 4px 0;
    margin: 0;
    line-height: 18px;
    text-align: justify;
}

.product-section .show-result .full-product .product-info h4 span {
    color: var(--theme);
}

.product-section .show-result .full-product .product-info h4 .bscolor {
    color: var(--black);
    /* Remove this */
    color: var(--theme);
}

.product-section .show-result .full-product .product-info .product-price {
    padding: 3px 0;
    display: flex;
    justify-content: space-between;
}

.product-section .show-result .full-product .product-info .product-price div {
    font-family: var(--Abel);
    font-size: 15px;
    color: var(--text-color);
    /* Remove this */
    color: #000;
}

.product-section .show-result .full-product .product-info .product-price .price-info span {
    color: #f807bc;
    font-weight: 600;
}

.product-section .show-result .full-product .product-info .product-price .stock-info-green {
    font-weight: bold;
    color: #04b704;
    text-transform: capitalize;
}

.product-section .show-result .full-product .product-info .product-price .stock-info-red {
    font-weight: bold;
    color: red;
    text-transform: capitalize;
}
.footer-copyright{
    background: #050215;
    color: #0ee20e;
    font-family: var(--Montserrat);
    font-size: 15px;
    box-shadow: 0 1px 5px rgba(05, 100, 255, .2);
}
@media only screen and (max-width: 1130px) {
    .product-section .show-result {
        grid-template-columns: repeat(3, 33%);
    }
}

@media only screen and (max-width: 910px) {
    .product-section .show-result {
        grid-template-columns: repeat(2, 50%);
    }
}

@media only screen and (max-width: 672px) {
    .filter-section .filter-element .price_range.active input[type="range"] {
        margin-top: 8px;
        width: 100%;
        transform: rotate(1deg);
    }
    .main-container 
    {
        flex-direction: column;
        padding: 10px 0 !important;
    }
    .filter-section h4 {
        font-size: 15px;
    }
    .filter-section hr {
        display: none;
    }
    .product-section #filteredTexts {
        display: none;
    }
    .product-section hr {
        display: none;
    }
    .filter-section .mobile-flex-display {
        display: flex;
    }
    .filter-section .mobile-flex-display .filter-element {
        border-radius: 0px;
        padding: 3px;
        flex-basis: 33%;
    }
    .filter-section .filter-element h6 {
        text-align: center;
        font-size: 15px;
    }
    .filter-section .filter-element h6 .mobile-drop {
        display:contents;
        font-size: 15px;
    }
    .filter-section .filter-element .filter-selection.active {
        display: block;
    }
}

@media only screen and (max-width: 500px) {
    .product-section {
        padding: 0 10px;
    }
    .product-section .show-result {
        grid-template-columns: repeat(2,50%);
    }
    #artist {
        background: linear-gradient(181deg, #00000021, transparent), url(./assets/img/banner/kids1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
    .product-section .show-result .full-product {
        width: 100%;
        height: auto;
    }
    .product-section .show-result .full-product img {
        flex-basis: 30%;
        width:100%;
        height:auto;
    }
    .product-section .show-result .full-product .product-info {
        text-align: left;
        padding: 0 5px;
        flex-basis: 65%;
    }
    .img-fluid-1
    {
        left:0px !important;
    }
    /* .product-section .show-result .full-product .product-info .binfo {
        display: none;
    } */
    .product-section .show-result .full-product .product-info h4 span,
    .product-section .show-result .full-product .product-info .product-price .stock-info-green,
    .product-section .show-result .full-product .product-info .product-price .stock-info-red {
        font-size: 13px;
    }
    .product-section .show-result .full-product .product-info .product-price .price-info span {
        font-weight: bold;
        font-size: 13px;
    }
}

@media only screen and (max-width: 415px) {
    .filter-section .filter-element h6,
    .filter-section .filter-element h6 .mobile-drop {
        font-size: 12px;
    }
    .filter-section .mobile-flex-display .filter-element {
        padding: 2px;
    }
}
@media only screen and (max-width:360px)
{
    .product-section .show-result 
    {
        grid-template-columns: repeat(1, 100%);
    }
    .product-section .show-result .full-product {
        width: 100%;
        margin: 5px 5px;
        overflow: hidden;
        transition: .3s linear;
        cursor: pointer;
        border: 1px solid #d8d8d8;
        padding: 10px;
        background: #ffffff;
    }
    .product-section .show-result {
        padding: 10px 0px;
        display:block;
        grid-template-columns: repeat(4, 25%);
        overflow: hidden;
    }
    .product-section .show-result .full-product img {
        flex-basis: 30%;
        width: 100%;
        height: auto;
    }
}
@media only screen and (max-width:320px)
{
    .d-flex43 
    {
        display: inline !important;
        padding-right: 12px;
        padding-left: 2px;
    }
    .product-section .show-result .full-product {
        width: 287px;
        margin: 5px 5px;
        overflow: hidden;
        transition: .3s linear;
        cursor: pointer;
        border: 1px solid #d8d8d8;
        padding: 10px;
        background: #ffffff;
    }
    .product-section .show-result .full-product img {
        flex-basis: 30%;
        width: 100%;
        height: auto;
    }
}