/** Shopify CDN: Minification failed

Line 90:0 Unexpected "}"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
.custom-css{
    margin-right: auto;
    margin-left: auto;
    width: 630px;
    height: 217px;
    background: #F1F5F6;
    border: 1px solid #E5E8EC;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}



/* ===== Header Search Box Border Color ===== */
.header-search input[type="search"],
.header-search input[type="text"] {
    border: 0.50px solid #26bca1 !important;
    border-radius: 50px !important;
    outline: none;
}

/* Focus করলে একই color থাকবে */
.header-search input[type="search"]:focus,
.header-search input[type="text"]:focus {
    border-color: #000000 !important;
    box-shadow: none;
}

/* ===== Search Button Style ===== */
.header-search button,
.header-search .search-btn {
    background-color: #26bca1 !important;
    border: none !important;
    color: #ffffff !important;
}


/* ===== Product Description Bullet Points - Visible List Markers ===== */
.product__description ul,
.product-description ul,
.rte ul,
[class*="description"] ul {
  list-style-type: disc !important;
  padding-left: 1.5em !important;
}

.product__description ul li,
.product-description ul li,
.rte ul li,
[class*="description"] ul li {
  list-style: disc !important;
  display: list-item !important;
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  .custom-css{padding: 10px;}

}
/* ===== Hide Header Search on Mobile Only ===== */
@media (max-width: 767px) {
    .header-search,
    .search-box,
    .search-form,
    .header-search-wrap {
        display: none !important;
    }
}
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  .custom-css{padding: 10px;}
}
