html {
    scroll-behavior: smooth;
}
/* Fancy Checkbox css start */
:root {
    --icfwPrimaryColor: #4170dd; /*#2459e0*/
    --icfwSecondaryColor: #4b16dd;
    --icfwTrinaryColor: #777777;
    --icfwTextColorB: #333333;
    --icfwTextColorW: #FFFFFF;
    --icfwTextColorP: #4170dd;
    --icfwTextColorS: #4b16dd;
}

.cbx {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    display: inline-flex;
    margin-right: 35px;
    align-items: center;
}

.back-icfw-minicart {
    display: flex !important;
    border: 1px solid var(--icfwCartBtnTextColor);
    color: var(--icfwCartBtnTextColor);
    height: 24px;
    width: 24px;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    float: left;
    text-decoration: none !important;
}

.icfw-checkout-wrapper {
    padding: 20px;
    display: flex;
}
.icfw-checkout-wrapper.sliding #customer_details {
    width: 100% !important;
}
.icfw-checkout-wrapper.sliding #order_review_heading {
    float: left !important;
}
.icfw-checkout-wrapper.sliding #order_review {
    width: 100% !important;
}
.close-variable-options{
    position: absolute;
    right: 7px;
    top: 0px;
    padding: 5px;
}
.disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(0, 0, 0, .3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}
#loadMe {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 0.5rem;
    z-index: 9999;
    padding: 25px;
}
.loader-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
    
.variable_form_wrapper{
    background-color: #eeeeee;
    padding: 10% 10% 1% 10%;
    color: black;
    position: relative;
}
.variable_form_wrapper .variations .icfw-leftSide {
    min-width: fit-content;
    margin-right: 15px!important;
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
}

.variable_form_wrapper .quantity input {
    background-color: #d3d3d3;
    padding-bottom: 10px;
    color: black;
}
.variable_form_wrapper .quantity {
    padding-bottom: 10px;
}
.cbx > span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}
.cbx > span:first-child {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid var(--icfwTrinaryColor);
    transition: all 0.2s ease;
}
.cbx > span:first-child svg {
    position: absolute;
    z-index: 1;
    top: 7px;
    left: 5px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.cbx.cbx-square > span {
    border-radius: 0!important;  
}
.cbx > span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;    
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
    transition-delay: 0.2s;
}
.cbx > span:last-child {
    margin-left: 8px;
}
.rtl .cbx > span:last-child {
    margin-right: 8px;
    margin-left: 0;
}
.cbx > span:last-child:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    height: 1px;
    width: 100%;
    transform-origin: 0 0;
    transform: scaleX(0);
}
.inp-cbx:checked + .cbx.wosvg > span:last-child:after {
    top: 5px!important;
    left: 6px!important;
    color: #FFFFFF!important;
    width: 55%!important;
    height: 5px!important;
    border-left: 1px solid #FFF!important;
    border-bottom: 1px solid #FFF!important;
    bottom: 0;
    margin: auto;
    transform: rotateZ(-38deg)!important;
}
.inp-cbx {
    display:none!important;
}
.inp-cbx:checked + .cbx > span:first-child {
    animation: check 0.6s ease;
}
.inp-cbx:checked + .cbx > span:first-child svg {
    stroke-dashoffset: 0;
    width: 10px;
    height: 10px;
    border-radius: 10px;
}
.inp-cbx:checked + .cbx > span:first-child:before {
    transform: scale(2.2);
    opacity: 0;
    transition: all 0.6s ease;
}
.inp-cbx:checked + .cbx > span:last-child {
    transition: all 0.3s ease;
}
.inp-cbx:checked + .cbx > span:last-child:after {
    transform: scaleX(1);
    transition: all 0.3s ease;
}
span.tool-disp {
    display: block;
    font-size: 11px;
    color: #777;
    max-width: 25rem;
    margin-top: 7px;
}
.icfw-form-control {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.icfw-dir-col {
    flex-direction: column;
}
.icfw-leftSide {
    min-width: fit-content;
    margin-right: 15px!important;
    display: inline-block;
    font-weight: 400;
    font-size: 1.618em;
}
.icfw-rightSide {
    width: 100%;
    position: relative;
}
.icfw-fullSide {
    width: 100%;
}
span.icfw-required-label {
    position: absolute;
    margin-left: 50px;
    background: #edf3f9;
    color: #558ecd;
    padding: 2px 15px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    top:0;
    right: 0;
}
.rtl span.icfw-required-label {
    left:  0;
    right:  unset;
    margin-left: 0;
    margin-right: 50px;
}
.icfw-form-control input[type="text"], .icfw-form-control select, .icfw-form-control input[type="file"] {
    width: 100%!important;
    padding: 4px 5px;
    border: 1px solid #bbb;
    font-size: 13px;
    font-family: inherit;
    max-width: 12rem;
    min-height: 32px;
    border-radius: 4px;
    margin: 0;
    line-height: 2;
}
.icfw-form-control textarea {
    width: 100%!important;
    padding: 6px 12px;
    border: 1px solid #bbb;
    font-size: inherit;
    font-family: inherit;
    max-width: 25rem;
    height: 80px;
    resize:none;
}
.icfw-form-control button {
    height: 42px;
}
.icfw-leftSide label {
    font-weight: 500;
    font-size: inherit;
    font-family: inherit;
    color: #777;
}
.icfw-form-control ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d8d8d8;
    opacity: 0.8;
}

.icfw-form-control :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #d8d8d8;
    opacity: 0.8;
}

.icfw-form-control ::-ms-input-placeholder { /* Microsoft Edge */
    color: #d8d8d8;
    opacity: 0.8;
}
.icfw_mod_cart_title {
    font-weight: bold;
    margin-right: 5px;
}
.icfw_mod_cart_title, .icfw_mod_cart_value {
    font-size: inherit;
    font-family: inherit;
}
.icfw_mod_cart_wrapper {
    display: flex;
    margin-bottom: 10px;
}
.icfw-header-flex-container {
    display: grid;
    color: var(--resTxtColor);
    grid-template-rows: repeat(1, max-content);
    grid-template-columns: 1fr auto;
    grid-column-gap:  10px;
}
.icfw-header-flex-container > .icfw-left {
    display: flex;    
}
.rtl .icfw-header-flex-container > .icfw-left {    
    padding-left: 25px;
    padding-right: 0;
}
.icfw-header-flex-container > .icfw-left .icfw-restaurant-logo {
    padding: 10px;
    max-width: 150px;
    max-height: 150px;
    border: 1px solid #ddd;
    margin-right: 25px;
    flex: 0 0 150px;
    -webkit-flex: 0 0 150px;
    -moz-flex: 0 0 150px;
    box-shadow: 0px 0px 10px 0px rgb(100 99 99 / 20%);
    -webkit-box-shadow: 0px 0px 10px 0px rgb(100 99 99 / 20%);
}
.rtl .icfw-header-flex-container > .icfw-left .icfw-restaurant-logo {
    margin-left: 25px;
    margin-right: 0;
}
.icfw-header-flex-container > .icfw-left .icfw-restaurant-desc h1 {
    font-size: 30px;
    font-weight: bold;
    font-family: inherit;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--resHeadingColor);
}
.icfw-header-flex-container > .icfw-left .icfw-restaurant-desc p {
    color: var(--resTxtColor);
}
.icfw-categories-filter-container-top {
    position: relative;
    margin-top: 25px;
    background: #fff;
}
.icfw-categories-filter-container-top div.icfw-glider a {
    text-decoration: none;
    color: var(--resTxtColor);
    border-radius: 20px;
    display: inline-flex;
    width: 100% !important;    
    padding: 8px 6px!important;
    box-shadow: 0px 0px 10px 0px rgb(100 99 99 / 30%);
    -webkit-box-shadow: 0px 0px 10px 0px rgb(100 99 99 / 30%);
    -moz-box-shadow: 0px 0px 10px 0px rgb(100 99 99 / 30%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    height: 100%;
}

.icfw-categories-filter-container-top .glider-track {
   width: auto!important;
}

.arrow {
    display: inline-block;
    position: absolute;
    width: 24px;
    height: 24px;
    font-size: 0!important;
    background: transparent;
    text-indent: -9999px;
    border-top: 2px solid #ddd;
    border-left: 2px solid #ddd;
    transition: all 250ms ease-in-out;
    text-decoration: none;
    color: transparent;
    cursor: pointer;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 99;
}
  
.arrow:before {
    display: block;
    height: 200%;
    width: 200%;
    margin-left: -50%;
    margin-top: -50%;
    content: "";
    transform: rotate(45deg);
}
  
.arrow.prev {
    transform: rotate(-45deg);
    left: -25px;
}
  
.arrow.next {
    transform: rotate(135deg);
    right: -25px;
}
  
.arrow.up {
    transform: rotate(45deg);
    left: 175px;
}
  
.arrow.down {
    transform: rotate(-135deg);
    right: 175px;
}
.icfw-body-grid-container {
    display: grid!important;
    grid-template-rows: repeat(1, max-content);
    grid-template-columns: repeat(3, auto);
    grid-gap: 20px;
    grid-auto-rows: max-content;
    margin-top: 25px;
}
.icfw-body-1-col {
    grid-template-columns: repeat(1, auto);
}

.icfw-body-2-col {
    grid-template-columns: 1fr auto;
    grid-gap: 2%;
}
.icfw-body-3-col {
    grid-template-columns:  auto 1fr auto;
}

.icfw-categories-filter-container-left {
    position: relative;
    width: 100%;
    height: fit-content;
    border: 1px solid #ddd;
    padding: 0;
    background: #fff;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -webkit-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -ms-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -o-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
}

.icfw-categories-filter-container-left ul {
    list-style: none;
    margin: 0;
    width: 100%;
    display: block;
}

.icfw-categories-filter-container-left ul li:last-child a {
    border:none;
}

.icfw-categories-filter-container-left ul li a {
    color: var(--resTxtColor);
    text-decoration: none!important;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    display: block;
    outline: none!important;
    transition: all 0.5s ease 0s;
}

.icfw-body-content-container {
    min-width: 563px;
}

ul.disp-toggle-container {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 72px;
}

ul.disp-toggle-container > li {
    width: 100%;
}

ul.disp-toggle-container > li a {
    display: block;
    text-align: center;
    background: #f5f5f5;
    color: #333;
    padding: 3px 0;
    outline: none!important;
}

ul.disp-toggle-container > li:first-child a {
    border-radius: 4px 0 0 4px;
}

.rtl ul.disp-toggle-container > li:first-child a {
    border-radius: 0px 4px 4px 0px;
}

ul.disp-toggle-container > li:last-child a {
    border-radius: 0 4px 4px 0;
}

.rtl ul.disp-toggle-container > li:last-child a {
    border-radius: 4px 0 0 4px;
}

ul.disp-toggle-container > li a.active {
    color: #f5f5f5;
}

.icfw-pull-right {
    float:right!important;
}

.rtl .icfw-pull-right {
    float:left!important;
}

.icfw-pull-left {
    float: left!important;
}

.rtl .icfw-pull-left {
    float: right!important;
} 

.icfw-menu-name {
    font-size: 23px;
    font-weight: bold;
    color: var(--resHeadingColor);
    line-height: 1.2;
}

.icfw-body-content {
    clear: both;
}

.icfw-category-block > a {
    position: relative;
    padding: 11px 15px;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    border: 1px solid #ddd;
    color: var(--resHeadingColor);
    font-weight: bold;
    font-size: 20px;
    text-decoration: none!important;
    background: #fff;
    box-shadow: 2px 2px 6px 0px #ddd;
    -webkit-box-shadow: 2px 2px 6px 0px #ddd;
    -moz-box-shadow: 2px 2px 6px 0px #ddd;
    -o-box-shadow: 2px 2px 6px 0px #ddd;
    -ms-box-shadow: 2px 2px 6px 0px #ddd;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    outline: none!important;
}

.icfw-show {
    display:block!important;
}

.icfw-prod-price {
    font-size: 16px;
    color: inherit;
    display: inline-block !important;
    color: black;
}

.icfw-prod-price > del {
    margin-right: 10px;
    color: black !important;
    font-weight: 100;
}

.icfw-prod-price > ins {
    font-weight: bold;
    color: black !important;
    font-weight: 700;
}

h3.icfw-prod-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--resHeadingColor);
    width: 100%;
}

.icfw-prod-header h3 {
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
    color: #2f2e2e;
    margin: 0;
}

.icfw-product-block p.icfw-prod-desc {
    line-height: 1;
    font-size: 13px;
    color: var(--resTxtColor);
    margin-bottom: 7px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.icfw-modal-content p.icfw-prod-desc {
    line-height: 1.5;
    font-size: 13px;
    color: var(--resTxtColor);
}

.icfw-prod-card {
    width: 100%;
}

.icfw-product-block {
    position: relative;
    text-decoration: none!important;
    transition: all 0.5s ease 0s;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
}

.icfw-pro-right {
    display: inline-grid;
    border: 1px solid #ddd;
    width: 100%;
    height: 125px;
    margin-left: 10px;
    padding: 12px;
    box-sizing: border-box;
    position: relative;
    grid-auto-columns: 100%;
}

.rtl .icfw-pro-right {
    margin-left: 0;
    margin-right: 10px;
}

.icfw-prod-img-wrapper > img {
    width: auto;
    height: auto;    
}

.icfw-prod-btn {
    margin-left: 10px;
    float: right;
}

.rtl .icfw-type-list .icfw-prod-btn {
    margin-right: 10px;
    margin-left: 0;
    float: left;
}

.icfw-prod-btn > a.icfw-add-to-cart {
    display: block;
    text-align: center;
    text-decoration: none!important;
    color: var(--icfwCartBtnTextColor);
    background: var(--icfwCartBtnBgColor);
    border-radius: 5px;
}

.icfw-body-content.icfw-type-grid .icfw-toggle-products.icfw-show {
    display: grid!important;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    grid-auto-columns: max-content;
    grid-auto-rows: max-content;
}

.icfw-body-content.icfw-type-grid .icfw-toggle-products.icfw-show .icfw-product-block {
    margin: 0;
}

.icfw-body-content.icfw-type-grid .icfw-toggle-products.icfw-show .icfw-product-block p.icfw-prod-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    height: fit-content;
    white-space: nowrap;
}

.icfw-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    display: block;
    font-size: smaller;
}

@media screen and (max-width:  1199px) {
    .icfw-body-grid-container {
        /* grid-template-columns:  repeat(1, auto)!important; */
        grid-template-columns:  100%!important;

    }
    .icfw-body-content-container {
        min-width: auto!important;
    }
}

ul.icfw-shipping-lists {
    margin: 0 -15px;
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding:0;
    border-bottom: 2px solid #ededed;
    font-size: 18px;
    color: #2f2e2e;
    font-weight: normal;
}

ul.icfw-shipping-lists li {
    padding: 15px 0 30px 0;
    line-height: 1;
    position:  relative;
}

ul.icfw-shipping-lists li.activated:after {
    content:  '';
    position:  absolute;
    left:  0;
    right:  0;
    bottom:  -2px;
    width:  100%;
    height:  2px;
    background-color: var(--icfwCartTextColor);
}

ul.icfw-shipping-lists li a {
    color: inherit;
    outline: none!important;
}

ul.icfw-shipping-lists li a:hover, ul.icfw-shipping-lists li a:focus, ul.icfw-shipping-lists li a:active {
    color: inherit;
    outline: none!important;
}

.icfw-shipping-tab-content {
    display: none;
    padding: 35px 20px 0;
}

.icfw-shipping-tab-content.icfw-show-tab-content {
    display:  block;
}

/* SALE PRODUCT IMAGE */
.sale-img{
    position: absolute;    
    right: -7px;
    top: 3px;
    border: 0px !important;
}

/*  MODAL */

.scroll-hide{
    overflow-y: hidden !important;
}

.icfw-modal .icfw-prod-price > ins{
    font-weight: 600;
    font-size: 18px;
    
}

.icfw-modal h3.icfw-prod-title {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    line-height: 1;
}

.icfw-modal .icfw-prod-body h3{
    font-weight: 500;
    margin: 0px;
    margin-bottom: 12px;
    font-size: 20px;
    color: #2f2e2e;
    line-height: 1;
}

.icfw-modal .icfw-prod-body p.stock {
    margin: 15px 0 0 0;
}

.icfw-modal .icfw-leftSide{
    font-weight: 500;
    margin: 0px;
    margin-bottom: 8px;
    font-size: 19px;
    color: #333333;
}

.icfw-modal .cbx > span {
    font-size: 12px;
    color: #2f2e2e;
}

.icfw-modal .cbx > span:first-child {
    width: 18px;
    height: 18px;
    stroke: none;
}

.icfw-modal .inp-cbx:checked + .cbx > span:first-child svg{
    background: var(--resThemeColor);
    width: 8px;
    height: 8px;
    border-radius: 5px;
    top: 4px;
    left: 4px;
    stroke: none;
} 

 .icfw-modal .cbx > span:first-child svg{
    width: 8px;
    height: 8px;
    border-radius: 5px;
    top: 4px;
    left: 4px;
    stroke: none;
}

.icfw-modal .inp-cbx:checked + .cbx-square > span:first-child svg {
    stroke-dashoffset: 0;
    width: 15px;
    height: 15px;
}

.icfw-modal .inp-cbx:checked + .cbx-square > span:first-child svg{
    top: 0px !important;
    left: 2px !important;
    stroke: var(--resThemeColor);
    background: none;
}


.icfw-modal .single_add_to_cart_button svg:not(:root).svg-inline--fa{
    margin-right: 10px;
}

.inp-cbx:checked + .cbx > span:first-child:before {
    transform: scale(2.2);
    opacity: 0;
    transition: all 0.6s ease;
    background: #4170dd;
}

/* CATAGORIES */

.cat-img{
    width: 35px;
    height:  35px;
}
.icfw-categories-filter-container-left .icfw-menu-filter li img{
    display: inline-block;
    margin-right: 25px;
}
.rtl .icfw-categories-filter-container-left .icfw-menu-filter li img {
    margin-right: 0;
    margin-left: 25px;
}

.icfw-categories-filter-container-left .icfw-menu-filter li a p{
    display: inline;
    margin-bottom: 0px;
    overflow: hidden;
}
.icfw-categories-filter-container-left .icfw-menu-filter li a{
    display: flex;
    align-items: center;
}

.cat-filter {
    font-weight: 700;
}

.icfw-categories-filter-container-top .cat-filter.icfw-active{
    background-color: var(--resThemeColor);
    color: #FFF;
}

.icfw-categories-filter-container-top .cat-filter.icfw-active img {
    filter: brightness(0) invert(1);
}

.icfw-categories-filter-container-top .cat-img{
    margin: 0px auto 8px auto;
}

span.post_meridiem {
    font-size: 10px;
}
#icfw-timings .icfw-time-block span {
    font-weight: 600;
}

/* LIST STYLE */

.icfw-type-list .icfw-prod-price{
    font-weight: 700;
    margin-top: 10px;
}

.icfw-type-list h3.icfw-prod-title{
    margin-bottom: 7px;
}

.icfw-type-list .icfw-product-block .icfw-pro-right{
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
}

/* GRID STYLE */

.icfw-prod-btn{
    margin-top: 5px;
}

.icfw-product-block > .icfw-pro-right{
    display: inline-grid;
}

.icfw-product-block > .icfw-pro-right .icfw-prod-btn{
    margin-left: 0px;
    display: flex;
    align-items: end;
}

.icfw-categories-filter-container-left.icfw-type-grid .icfw-prod-btn > a.icfw-add-to-cart {
    font-size: 8px !important;
}

.icfw-prod-right{
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
}

.icfw-product-block .icfw-pro-right{
    margin-left: 10px;
    padding: 15px 20px;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
    background: #FFFFFF;
}

.product-img{
    background-color: violet;
    width: 40%;
    display: inline-block;
}

.icfw-modal-content-head{
    border-bottom: none;
}

.icfw-modal-content-head .top{
    border-bottom: 1px solid #ddd;
    padding: 10px 0px;
}

.icfw-modal{
    padding: 15px;
    max-height: 580px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.icfw-modal::-webkit-scrollbar, .icfw-pro-content::-webkit-scrollbar {
    width: 6px;
}

.icfw-modal::-webkit-scrollbar-track, .icfw-pro-content::-webkit-scrollbar-track {
    background: transparent;
}

.icfw-modal::-webkit-scrollbar-thumb, .icfw-pro-content::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 10px;
    border: 3px solid transparent; 
}

.icfw-prod-header{
    border-bottom: 1px solid #e8e8e8;
    padding: 0px 0px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ingredients ul{
    list-style-type: none;
    margin: 0px;
}

.ingredients ul li {
    display: inline-flex;
    background-color: #FFFFFF;
    border-radius: 20px;
    color: #656565;
    font-size: 11px;
    box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
    min-width: 125px;
    min-height: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e8e8;
    margin: 0 10px 10px 0;
    padding: 5px 15px;
}

.rtl .ingredients ul li {
    margin: 0 0 10px 10px;
}

.icfw-prod-body h3{
    font-weight: 400;
    margin: 0px;
}

.icfw-prod-description{
    border-bottom: 1px solid #e8e8e8;
    padding: 15px 0;
}

.ingredients{
    border-bottom: 1px solid #e8e8e8; 
    padding: 15px 0px;    
}

.icfw-prod-body .woocommerce-error {
    margin: 15px 0 0 0;
}

.icfw-prod-description .icfw-prod-desc{
    margin-bottom: 15px !important;
}

.icfw-modal-footer .icfw-item-qty{
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 20px;
}

.icfw-modal-footer {
    display: flow-root !important;
}

.icfw-modal-footer input.icfw-qty{
    width: 65px !important;
    height: 28px !important;
}

.icfw-modal-footer .icfw-item-qty > a{
    padding: 0px 10px;
    top: -2px;
}

.icfw-pro-content .icfw-form-control{
    display: block;
}

.icfw-leftSide .icfw-label{
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 20px;
    letter-spacing: 0px;
    color: #2f2e2e;
    line-height: 1;
    display: inline-block;
}

.icfw-modal .icfw-leftSide .icfw-desc{
    color: var(--resThemeColor);
}

.icfw-modal .icfw-prod-price {
    color: #2f2e2e;
    font-size: 20px;
}

a:focus, button:focus, .button.alt:focus, input:focus, textarea:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus {
    outline-color: #7f54b3;
    outline: none !important;
}

.cat-filter svg:not(:root).svg-inline--fa{
    font-size: 52px;
}

.icfw-hide-arrow {
    display: none;
}

.icfw-glider.icfw-wo-arrow {
    margin: 0!important;
    padding: 0 8px!important;
}

.icfw-error-modal-content h3 {
    text-align: center;
    font-size: 18px;
    color: #2f2e2e;
    margin:  0 15px 15px;
}

.icfw-pro-img > span {
    display: block;
    width: 100%;
    height: 100%;
}

.icfw_title_rating {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.icfw_title_rating .woocommerce-product-rating {
    margin-left: 5px;
}

.woocommerce-product-rating {
    position: relative;
}

.wc_product_badge_hover {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 0 4px 0px #000000a3;
    width: 227px;
    max-width: 227px;
    padding: 15px;
    top: 37px;
    text-align: center;
    z-index: 9999;
    left: 0;
}

div.woocommerce-product-rating:hover div.wc_product_badge_hover {
    display: block!important;
}

.star-rating::before, .star-rating span::before {
    content: "";
    top: 0px;
    left: 0px;
    position: absolute;
    color: var(--resThemeColor);
}

.wc_product_badge_hover:before {
    content: "";
    top: -7px;
    position: absolute;
    left: 31px;
    width: 14px;
    height: 16px;
    background: #fff;
    -webkit-box-shadow: 0 0 4px 0px #000000a3;
    -ms-box-shadow: 0 0 4px 0px #000000a3;
    -o-box-shadow: 0 0 4px 0px #000000a3;
    box-shadow: 0 0 4px 0px #000000a3;
    box-shadow: 0 0 4px 0px #000000a3;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.wc_product_badge_hover:after {
    content: '';
    width: 30px;
    height: 25px;
    background: #FFF;
    position: absolute;
    top: 0px;
    left: 26px;
}

.wc_product_badge_hover .avg_badge {
    display: block;
    z-index: 9;
    margin-bottom: 10px;
    font-size: 13px;
    position: relative;
    padding: 0;
    line-height: 1.2;
}

ul.wc_review_graph {
    display: inline-block;
    width: 100%;
    margin: 0;
}

.wc_wf_cls {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.wc_review_graph li {
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 5px !important;
    line-height: 1.5;
}

.blk2 .ratingbar {
    width: 100px;
    height: 15px;
    margin-top: 0;
    background: #EEEEEE;
    position: relative;
}

.blk2 .ratingbar > .progressing {
    content: '';
    background: #FFA708;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    width: 0;
}

.blk1 .fa-star {
    color: #FFA708;
}

.blk1 .fa-star:hover {
    color: #000;
}

.blk1 {
    width: 25%;
}

.blk2 {
    width: 55%;
}

.blk3 {
    width: 20%;
}

.icfw-glider .icfw-glider-item-wrap {
    min-width: 120px;
    padding: 10px;
}

.icfw-above-body {
    display: grid;
    margin-top: 20px;
}

.icfw-for-mobile-only {
    display: none;
}

#icfw-res-status {
    display: none;
}

div#icfw-more-info {
    text-align: right;
    margin-bottom: 8px;
    display: none;
}

div#icfw-more-info a {
    font-size: 12px;
    color: var(--resHeadingColor);
}

/* Media queries */
@media only screen and (min-width: 1200px) {
    .icfw-categories-filter-container-left {
        width: 210px;
    }
}
@media only screen and (min-width: 992px) {

    .icfw-modal-content, .icfw-error-modal-content {
        padding: 15px;
    }

    .icfw-error-modal-content h3 {
        max-width: 60%;
        margin: 0 auto;
    }

    .icfw-modal-container .icfw-modal {
        max-width: 1325px;
        max-height: 840px;
        width: 90%;
        margin: 30px auto;
        top:  5%;
        position: relative;
        background-color: #fff;
        border: 1px solid #a6a6a6;
        overflow: unset!important;
    }

    .icfw-modal-container .icfw-modal.icfw-modal-no-image {
        max-width: 650px;
    }

    .icfw-modal-product-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        max-height: 730px;
        padding: 10px 0;
        overflow: hidden;
    }

    .icfw-pro-img{
        padding: 10px;
        display: flex;
        margin-right: 2%;
        width: 50%;
        max-width: 620px;
        max-height: 720px;
        box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -webkit-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -moz-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -o-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -ms-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        border: 1px solid #e8e8e8;
        align-items: center;
    }
    
    .icfw-pro-content {        
        width: 48%;
        padding: 10px;
        max-height: 100%;
        overflow-y: scroll;
    }

    .icfw-modal-no-image .icfw-pro-content {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {

    .icfw-modal-container .icfw-modal {
        max-width: 1325px;
        width: 90%;
        margin: 30px auto;
        top:  5%;
        position: relative;
        background-color: #fff;
        border: 1px solid #a6a6a6;
    }
    
    .icfw-modal-container .icfw-modal.icfw-modal-no-image {
        max-width: 650px;
    }

    .icfw-modal-product-flex {
        display: flex;
        flex-direction: column;        
        padding: 20px 0 10px 0;        
    }

    .icfw-pro-img{
        padding: 10px;
        display: flex;
        margin-right: 2%;
        width: 100%;        
        height: 300px;
        box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -webkit-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -moz-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -o-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -ms-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        border: 1px solid #e8e8e8;
        align-items: center;
    }
    
    .icfw-pro-content {        
        width: 100%;
        padding: 10px;        
    }

    .icfw-modal-no-image .icfw-pro-content {
        width: 100%;
    }

    .icfw-modal-header .close-icfw-rest-modal {
        top:  -12px;
        right:  -12px;
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .icfw-prod-header h3 {
        font-size: 17px;
    }

    .icfw-modal .icfw-prod-price {
        font-size: 17px;
        align-items: center;
        justify-content: end;
        display: inline-flex!important;
        flex-direction: column;
        margin-left: 15px;
    }
    .icfw-modal .icfw-prod-price > ins {
        font-size: 17px;
    }

    .ingredients ul li {
        min-width: unset;
        padding: 5px 8px;
        margin: 0 5px 5px 0;
    }

}

@media only screen and (max-width: 767px) {

    .icfw-pro-img {
        padding: 10px;
        display: flex;
        margin-right: 2%;
        width: 100%;        
        height: 250px;
        box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -webkit-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -moz-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -o-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -ms-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        border: 1px solid #e8e8e8;
        align-items: center;
    }

    .icfw-modal .icfw-prod-body p {
        line-height: 1.3;
        font-size: 12px;
    }

    .icfw-body-content.icfw-type-grid .icfw-toggle-products.icfw-show {
        grid-template-columns:  100%;
    }

    .icfw-above-body {
        display: none!important;
    }

    .arrow.prev {
        left: 6px;
        width: 16px;
        height: 16px;
    }

    .arrow.next {        
        right: 6px;
        width: 16px;
        height: 16px;
    }

    .icfw-header-flex-container > .icfw-left .icfw-restaurant-logo {
        max-width: 60px;
        max-height: 60px;
        padding: 5px;
        flex: 0 0 60px;
        -webkit-flex: 0 0 60px;
        margin-right: 15px;
    }

    .icfw-header-flex-container > .icfw-left .icfw-restaurant-desc h1 {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 8px;
    }

    .icfw-header-flex-container > .icfw-left .icfw-restaurant-desc p {
        font-size: 12px;
        line-height: 1.2;
        margin: 0;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
    }

    .icfw-header-flex-container > .icfw-left .icfw-restaurant-desc p:hover {
        display: block!important;
    }

    .icfw-min-order {
        margin-top: 0;
        font-size: 11px;
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: space-between;
    }

    #icfw-res-status {
        display: block;
    }

    div#icfw-more-info {
        display: block;
    }

    .icfw-error-modal-header h4 {
        font-size: 20px;
    }

    .icfw-error-modal-content h3 {
        font-size: 15px;
    }
}

@media only screen and (max-width: 576px) {

    .icfw-pro-img {
        padding: 10px;
        display: flex;
        margin-right: 2%;
        width: 100%;        
        height: 150px;
        box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -webkit-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -moz-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -o-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        -ms-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 10%);
        border: 1px solid #e8e8e8;
        align-items: center;
    }

    .wc_product_badge_hover {
        left:  unset;
        right:  -36px;
    }

    .wc_product_badge_hover:before {
        left: unset;
        right:  55px;
    }

    .wc_product_badge_hover:after {
        left: unset;
        right:  51px;
    }

    .glider::-webkit-scrollbar {
        height: 2px;
    }

    .icfw-categories-filter-container-top div.icfw-glider .icfw-glider-item-wrap a {
        box-shadow: unset;
        -webkit-box-shadow: unset;
    }

    .icfw-categories-filter-container-top div.icfw-glider .icfw-glider-item-wrap a img {
        display: none;
    }

    .icfw-glider .icfw-glider-item-wrap {
        padding:  10px 0;
        width: 95px!important;
        min-width: 95px;
    }

    .icfw-categories-filter-container-top .cat-filter.icfw-active {
        background-color: unset;
        color: var(--resThemeColor);
        position: relative;
    }

    .icfw-categories-filter-container-top .cat-filter.icfw-active:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background-color: var(--resThemeColor);
        width: 50%;
        margin: auto;
    }

    .icfw-categories-filter-container-top {
        position: absolute;
        left: 0;
        right: 0;
        box-shadow: 0px 11px 8px -10px rgb(100 99 99 / 30%), 0px -11px 8px -10px rgb(100 99 99 / 30%);
        -webkit-box-shadow: 0px 11px 8px -10px rgb(100 99 99 / 30%), 0px -11px 8px -10px rgb(100 99 99 / 30%);
    }

    .icfw-categories-filter-container-left {
        display: none;
    }

    .icfw-categories-filter-container-top ~ .icfw-body-grid-container, .icfw-for-mobile-only ~ .icfw-body-grid-container {
        margin-top: 115px;
    }

    .icfw-for-mobile-only {
        display: block;
    }    

    .icfw-prod-btn > a.icfw-add-to-cart {
        font-size: 0;
    }

    .icfw-prod-btn > a.icfw-add-to-cart svg {
        margin-right: 5px;
        font-size: 12px;
    }

    .icfw-prod-btn > a.icfw-add-to-cart::after {
        content: attr(title);
        font-size: 12px;
    }

    .icfw-prod-price {
        max-width: 70px;
        font-size: 12px;
    }

    .icfw-prod-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .icfw-product-block h3.icfw-prod-title {
        font-size: 12px;
        margin-bottom: 5px;
    }    

    .icfw-product-block > .icfw-pro-right p.icfw-prod-desc {
        margin-bottom: 0px;
        font-size: 12px;
    }

    .icfw-prod-price {
        font-size: 13px;
        font-weight: 700;
        margin-top: 5px;
        position: relative;
        align-items: flex-end;
    }
}

/** custom html slide show starts**/
.icfw-pro-gallery {
    position: relative;
}

.icfw-mySlides {
    display: none;
}

/* Next & previous buttons */
.icfw-navs {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
}

.icfw-navs .prev, .icfw-navs .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.icfw-navs .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.icfw-navs .prev:hover, .icfw-navs .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.icfw-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}

.icfw-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.icfw-dot-active, .icfw-dot:hover {
  background-color: #717171;
}

/* Fading animation */
.icfw-fade-slide {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .icfw-navs .prev, .icfw-navs .next {
        font-size: 11px
    }

}

.select2-container{
    z-index: 999999;
}

/** custom html slide show ends**/

/** Minicart CSS*/
#icfw-minicart {
    position: relative;
    min-width: 250px;
    height: fit-content;
    border: 1px solid #ddd;
    padding: 0;
    margin-bottom: 25px;
    background: #fff;
    line-height: 1.2;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -webkit-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -ms-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -o-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
}

.wc-proceed-to-checkout {
    margin: 10px 0;
}

#icfw-minicart.sliding .wc-proceed-to-checkout a.checkout-button.wc-forward {
    display: none;
}

#icfw-minicart.sliding .wc-proceed-to-checkout p {
    margin-bottom: 0;
}

.close-icfw-minicart img{
    width: 23px;
    float: left;
}

#icfw-minicart .empty-cart {
    display: block;
    text-align: center;
    padding: 40px 15px;
    font-size: 16px;
}

#icfw-minicart .empty-cart p {
    margin: 0;
}

#icfw-minicart .empty-cart i.big4x {
    font-size: 32px;
}

#icfw-minicart.sliding .your-cart-content {
    padding: 20px 15px;
}

.icfw-loader-wrapper {
    position: fixed;
    background-color: rgba(8, 8, 8, 0.42);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999999;
}

.icfw-loader-wrapper .icfw-loader {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

.cart-item-left br {
    display: none!important;
}

/* Chrome, Safari, Edge, Opera */
#icfw-minicart input::-webkit-outer-spin-button,
#icfw-minicart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
#icfw-minicart input[type=number] {
  -moz-appearance: textfield;
}

#icfw-minicart .icfw_mod_cart_wrapper {
    margin-bottom:4px;
}

#icfw-minicart span.icfw_mod_cart_title {
    display: none;
}

#icfw-minicart.sliding .icfw-product-title h5 {
    color: var(--resSlidingCartBgColor);
}

#icfw-minicart .cart-total-container {
    margin-top: 10px;
}

#icfw-minicart.sliding {
    position: fixed;
    top: 0;
    bottom: 0;
    margin: 0;
    height: calc(100%);
    overflow-y: auto;
    width: 392px;
    z-index: 999999;
    background: var(--icfwCartBgColor);
    transition: all 0.5s ease 0.1s;
}

#icfw-minicart.sliding.right {
    right: -392px;
}

#icfw-minicart.sliding.left {
    left: -392px;
}

#icfw-minicart.sliding .back-icfw-minicart.right{
    float: right !important;
}

#icfw-minicart.sliding.slide-right {
    right: 0px;
}

#icfw-minicart.sliding.slide-left {
    left: 0px;
}

#icfw-minicart.sliding::-webkit-scrollbar {
    width: 0.35em;
}

#icfw-minicart.sliding::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

#icfw-minicart.sliding::-webkit-scrollbar-thumb {
  background-color: var(--resSlidingCartBgColor);
  border-radius: 6px;
}

#icfw-minicart {
    scroll-behavior: smooth;
}

#icfw-minicart.sliding .icfw-product-title img{
    width: 50px;
    height: 50px;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -webkit-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    margin-bottom: 10px;
}

.cart-item-img{
    width: 45px;
    height: 45px;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 7%);
    -webkit-box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 7%);
}

.cart-item-img img{
    border-radius: 0px;
    border: 1px solid #ddd;
}

#icfw-minicart.sliding a.close-icfw-minicart {
    display: flex !important;
    color: var(--icfwCartBtnTextColor);
    height: 24px;
    width: 24px;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    float: left;
    text-decoration: none!important;
    background-color: var(--icfwCartBtnBgColor);
}

#icfw-minicart.sliding .woocommerce-shipping-calculator {
    margin: 0;
    width: 50%;
}

#icfw-minicart.sliding a.close-icfw-minicart.right {
    float: left;
}

#icfw-minicart.sliding a.close-icfw-minicart.left {
    float: right;
}

#icfw-minicart.standard a.close-icfw-minicart {
    display: none !important;
}

#icfw-minicart.standard .icfw_mod_cart_value {
    font-size: 10px;
}

#icfw-minicart.standard .icfw-add-qty{
    padding: 0px 4px;
}

#icfw-minicart ul#shipping_method {
    text-align: left;
}

.rtl #icfw-minicart ul#shipping_method {    
    text-align: left;
}

.rtl #icfw-minicart ul#shipping_method li input[type=radio], .rtl #icfw-minicart ul#shipping_method li label {
    margin:  0 0.381em 0 0;
}

#icfw-minicart .woocommerce-remove-coupon {
    display: none;
}

.your-suggestion-cart-products .icfw-product-block {
    margin-bottom: 0;
}

.your-suggestion-cart-products h3.icfw-prod-title {
    font-size: 13px;
    margin-bottom: 4px;
    margin-top: 23px;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 4.5em;
    line-height: 1.5em;
}

.your-suggestion-cart-products a.icfw-add-to-cart {
    font-size: 12px!important;
    padding: 3px 9px!important;
}

.your-suggestion-cart-products .sale-img {
    position: absolute;
    right: -7px;
    top: 2px;
    border: 0px !important;
    width: 60px;
}

.your-suggestion-cart-products .icfw-prod-price {
    font-size: 14px;
}

.cart-slide-hide {
    display: none!important;
}

#icfw-minicart table.icfw-after-cart-totals {
    margin-top: 20px;
}

#icfw-minicart ul#shipping_method {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/**
*   
*   Popup Css
*   
*   Start Point
*
**/

#icfw-minicart.popup .woocommerce-shipping-calculator{
    margin: 0;
    width: 70%;
}

#icfw-minicart.popup .your-cart-content {
    padding: 20px 40px;
}

#icfw-minicart.popup .wc-proceed-to-checkout a.checkout-button.wc-forward {
    display: none;
}

#icfw-minicart.popup .wc-proceed-to-checkout p {
    margin-bottom: 0;
}

#icfw-minicart.popup .icfw-product-title h5 {
    color: var(--resSlidingCartBgColor);
}

#icfw-minicart.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--icfwCartBgColor);
    width: 54rem;
    height: 36rem;
    border-radius: 0.5rem;
    z-index: 999999;
    display: none;
    overflow-y: auto;
    border: none;
}

#icfw-minicart.popup.open-modal {
    display: block;
}

#icfw-minicart.popup a.close-icfw-minicart {
    display: flex !important;
    color: var(--icfwCartBtnTextColor);
    height: 24px;
    width: 24px;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    float: right;
    text-decoration: none!important;
    background-color: var(--icfwCartBtnBgColor);
}



/** suggestion cart**/
@media screen and (max-width:  1199px) {
    
}

@media only screen and (max-width: 565px) {
    #icfw-minicart.popup {
        width: 90%;
        right: -90%;
    }
    #icfw-minicart.popup #cart-slide-icon.open {
        display: none;
    }
    #icfw-minicart.sliding {
        width: 90%;
        right: -90%;
    }
    #icfw-minicart.sliding #cart-slide-icon.open {
        display: none;
    }

    /** suggestion cart**/
    .your-suggestion-cart-products h3.icfw-prod-title, .your-suggestion-cart-products .icfw-prod-price {
        font-size: 11px;
        margin: 0;
    }
    .your-suggestion-cart-products .sale-img {
        width: 50px;
    }
    /** suggestion cart**/
}

@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-moz-keyframes shake {
  0% {
    -moz-transform: translate(3px, 0);
  }
  50% {
    -moz-transform: translate(-3px, 0);
  }
  100% {
    -moz-transform: translate(0, 0);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(3px, 0);
  }
  50% {
    -webkit-transform: translate(-3px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}

@-ms-keyframes shake {
  0% {
    -ms-transform: translate(3px, 0);
  }
  50% {
    -ms-transform: translate(-3px, 0);
  }
  100% {
    -ms-transform: translate(0, 0);
  }
}

@-o-keyframes shake {
  0% {
    -o-transform: translate(3px, 0);
  }
  50% {
    -o-transform: translate(-3px, 0);
  }
  100% {
    -o-transform: translate(0, 0);
  }
}
/** Minicart CSS ENDS*/

/**icfw widget cart css starts*/
.icfw-cart-widget .your-cart-item, .icfw-cart-widget-subtotal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.icfw-cart-widget .your-cart-item .cart-item-left {
    width: 100%;
    padding: 0 12px 0 0;
}

.icfw-cart-widget .your-cart-item .cart-item-left .item-remove {
    float: left;
    line-height: 1.2;
}

.icfw-cart-widget .your-cart-item .cart-item-left .item-title {
    float: left;
    margin-left:  5px;
    line-height: 1.2;
}

.icfw-cart-widget .your-cart-item .cart-item-left .item-title h5 {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 0;
}

.icfw-cart-widget .your-cart-item .cart-item-left .item-total {
    display: block;
    float: left;
    margin-left: 20px;
    width: 100%;
    line-height: 1.2;
}

.icfw-cart-widget .your-cart-item .cart-item-right .cart-item-img {
    margin: 0!important;
}

.dashicons, .dashicons-before:before {
    font-family: dashicons;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    speak: never;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 12px!important;
    height: 12px!important;
    font-size: 12px!important;
    vertical-align: middle!important;
    text-align: center;
    transition: color .1s ease-in;
}

i.dashicons.dashicons-trash {
    font-size: 17px!important;
    margin-bottom: 7px;
    color: var(--icfwCartBtnBgColor);
}

#icfw-minicart .woocommerce-shipping-calculator {
    display: none!important;
}

/*  Floating Cart Icon Starts  */

#cart-slide-icon {
    display: none;
    text-align: center;
    position: fixed;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.5s ease 0.1s;
    margin: auto;
    padding: 4px;
    background-color: var(--icfwCartIconBgColor);
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    -webkit-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    z-index: 99999;
}

#cart-slide-icon.right {
    right: 25px;
}

#cart-slide-icon.left {
    left: 25px;
}

#cart-slide-icon svg {
    fill: var(--icfwCartIconColor);
    position: relative;
    width: 40px;
    margin: auto;
}

#cart-slide-icon:hover {
    animation: shake 150ms 2 linear;
    -moz-animation: shake 150ms 2 linear;
    -webkit-animation: shake 150ms 2 linear;
    -o-animation: shake 150ms 2 linear;
}

#cart-slide-icon.bottom {
    bottom: 5rem;
}

#cart-slide-icon.middle {
    bottom: calc(100% - 50%);
}

#cart-slide-icon.top {
    top: 4rem;
}

#cart-slide-icon
#cart-slide-icon.open {
    right: 410px;
    display: none;
}

span.icfw-cart-count {    
    background: var(--icfwCartCounterBgColor);
    font-size: 12px;
    position: absolute;
    height: 21px;
    line-height: 22px;
    font-weight: 500;
    display: block;
    color: var(--icfwCartCounterTextColor);
    border-radius: 73px;
    width: 22px;
    top: -7px;
    right: -7px;
}

/*  Floating Cart Icon Ends  */
.icfw-cart-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999999;
    overflow-y: scroll;
}

#icfw-minicart .your-cart-title {
    text-align: left;
    padding: 15px 18px;
    display: block;
    color: var(--icfwCartBtnTextColor) !important;
    position: sticky;
    top: 0px;
    border-bottom: 0.5px solid #ebebeb;
    background-color: var(--icfwCartTitleBGColor);
    z-index: 999;
    border-radius: 0.5rem;
}

#icfw-minicart .your-cart-title h4 {
    margin: 0;
    font-weight: 600;
    font-size: 25px;
    font-family: inherit;
    color: inherit;
    display: inline;
    color: var(--icfwCartTitleColor);
}

#icfw-minicart.sliding.right .your-cart-title, #icfw-minicart.sliding.left .your-cart-title {
    display: flex;
    align-items: center;
}

#icfw-minicart.sliding.left .your-cart-title {
    flex-direction: row-reverse;
    justify-content: space-between;
}

#icfw-minicart.sliding.right .your-cart-title h4 {
    margin-left: 18px;
}

#icfw-minicart .your-cart-item {
    background: var(--icfwItemBGColor);
    border-radius: 20px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: row;
    height: auto;
}

.cart-item-img {
    width: 65px;
    height: 65px;
    border-radius: 5px;
    box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 45%);
    -webkit-box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 45%);
}

.cart-item-left {
    margin: 5% 5%;
    display: flex;
    align-items: center;
}

.icfw-item-qty {
    position: relative;
    margin-top: 10px;
    border: 1px solid var(--icfwCartTextColor);
    border-radius: 50px;
    width: 7rem;
}

.icfw-item-qty .icfw-qty {
    width: 3rem;
    height: 28px;
    text-align: center;
    background: transparent;
    border-left: 1px solid var(--icfwCartTextColor);
    border-right: 1px solid var(--icfwCartTextColor);
}

.icfw-item-qty > a {    
    padding: 0px 4px;
    border-radius: 33px;
}

.icfw-item-qty > input {    
    box-shadow: none;
    padding: 0em;
    color: var(--icfwCartTextColor);
}

.icfw-item-qty > a:focus, .item-remove > a:focus {    
    outline-color: #7f54b300;
}

.icfw-item-qty .dashicons-minus, .icfw-item-qty .dashicons-plus-alt2 {
    line-height: inherit !important;
    font-weight: 100 !important;
    font-size: 14px !important;
    vertical-align: inherit !important;
    width: 1rem !important;
    color: var(--icfwCartBtnBgColor);
}

.cart-item-middle {
    margin: 2% 2% 2% 0%;
    line-height: 25px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.cart-item-middle .quantity {
    font-size: 13px;
    font-weight: 500;
    color: var(--icfwCartTextColor);
}

.cart-item-title > h5 {
    font-size: 20px;
    margin: 0px;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 53px;
    color: var(--icfwCartTextColor);
}

.cart-item-title .bundle_edit_btn_in_cart {
    font-size: 15px;
}

.cart-item-right {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-evenly;
    margin-right: 5%;
}

.cart-item-right .amount {
    color: var(--icfwCartTitleColor);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.icfw-cart-coupon-area {
    position: relative;
    display: inline-block;
    width: 100%;
}

.icfw-cart-coupon-area > input {
    width: 100%;
    border-radius: 9px;
    padding: 8px 0px 8px 12px;
    border: 1px solid #a0a0a0;
    background-color: #ffffff;
}

.icfw-cart-coupon-area > button {
    position: absolute;
    top: 6px;
    color: var(--icfwCartBtnTextColor);
    right: 6px;
    background-color: var(--icfwCartBtnBgColor);
    border-radius: 10px;
    width: 18%;
    height: 73%;
    display: flex;
    justify-content: center;
    align-content: space-around;
    flex-wrap: wrap;
}

.icfw-cart-coupon-area > button:hover {
    background-color: #000000;
    color: #ffffff;
}

.icfw-cart-coupon-area > input:focus {
    background-color: #ffffff;
}
  
.icfw-cart-coupon-area > input:focus + label {
    font-size: 12px;
    color: #c2c2c2;
    top: -10px;
    left: 35px;
    background: #ffffff;
    padding: 0px 5px 0px 5px;
    border-radius: 100px;
}

.icfw-cart-coupon-area label {
    font-family:arial;
    font-size:15px;
    color: #c2c2c2;
    padding: 12px 0px 12px 32px;
    position: absolute;
    top: 0;
    left: 0;
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
    pointer-events: none;
}

.cart-total-title {
    margin-bottom: 15px;
    border-bottom: 0.5px solid black;
}

.cart-total-title h4 {
    font-weight: 600;
    font-size: 20px;
    font-family: inherit;
    color: inherit;
    color: var(--icfwCartTitleColor);
}

.subtotal-container, .service-charge-container {
    display: flex;
    justify-content: space-between;
    margin: 0% 3%;
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--icfwCartTextColor);
}

.service-charge-container.total-item {
    margin-bottom: 15px;
    border-bottom: 0.5px solid black;
    color: var(--icfwCartTextColor);
}

.service-charge , .service-charge-price {
    margin-bottom: 15px;
}

.shipping-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0% 3%;
    font-size: 15px;
    color: var(--icfwCartTextColor);
}

.shipping-container > * {
    flex-basis: 50%;
    margin-bottom: 10px;
}

.woocommerce-shipping-destination {
    display: block;
    margin-top: 10px;
}

.cart-total-container {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 25px;
}

#icfw-minicart a.icfw-continue-shopping,
#icfw-minicart a.proceed-checkout, .icfw-prod-btn a.icfw-add-to-cart {
    color: var(--icfwCartBtnTextColor);
    background-color: var(--icfwCartBtnBgColor);
    padding: 8px;
    margin-top: 11px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 15px;
}

#icfw-minicart a.icfw-continue-shopping:hover,
#icfw-minicart a.proceed-checkout:hover, .icfw-prod-btn a.icfw-add-to-cart:hover {
    background-color: #000000;
    color: #ffffff;
}

.your-suggestion-cart-title {
    margin-top: 17px;
    border-bottom: 0.5px solid black;
}

.your-suggestion-cart-title h4 {
    font-weight: 600;
    font-size: 20px;
    font-family: inherit;
    color: var(--icfwCartTitleColor);
    margin-bottom: 15px;
}

.icfw-cart-slider-wrapper {
    padding: 25px 20px;
    position: relative; 
}

a.cart-slide-arrow {
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    background: #0a0a0a00;
    border-top: 2px solid var(--icfwCartBtnBgColor);
    border-left: 2px solid var(--icfwCartBtnBgColor);
    transition: all 250ms ease-in-out;
    text-decoration: none;
    color: transparent;
    cursor: pointer;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 99;
}

a.cart-slide-prev {
    left: 0;
    transform: rotateZ(-40deg)!important;
}

a.cart-slide-next {
    right: 0;
    transform: rotateZ(135deg)!important;
}

.icfw-product-block .icfw-prod-img{
    width: 90px;
    height: 80px;
}

.icfw-prod-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.icfw-prod-img-wrapper > span {
    border-radius: 5px;
    box-shadow: 7px 7px 8px 0px rgb(0 0 0 / 45%);
}

#icfw-suggestion-cart .glider-slide {
    min-width: 135px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 12px;
}

.icfw-prod-left {
    display: flex;
    justify-content: center;
}

.icfw-pro-right > img {
    float: right;
    margin: auto;
    position: absolute;
    right: 17px;
    top: 0;
    margin-bottom: 10px;
    box-shadow: 6px 6px 8px 0px rgb(0 0 0 / 45%);
}

.icfw-product-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 35px;
}

.your-suggestion-cart-products .icfw-pro-right {
    height: 135px;
    padding: 7px;
    margin-top: 16px;
    width: 106px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--icfwCartTextColor);
    background-color: #ffffff;
    justify-content: space-between;
}

.icfw-prod-card {
    display: flex;
    flex-direction: column;
}

#icfw-suggestion-cart {
    display: flex;
}
  
@media screen and (max-width: 418px) {

    .your-cart-content .cart-item-img {
        display: none;
    }

    #icfw-minicart.popup .your-cart-content {
        padding: 20px 20px;
    }

    #icfw-minicart.popup #icfw-suggestion-cart .icfw-pro-right {
        width: 117px;
    }

    #icfw-minicart.popup .cart-item-right {
        width: 27%;
    }

    #icfw-minicart.popup .icfw-item-qty {
        width: 5rem !important;
    }

    #icfw-minicart.popup .icfw-item-qty > a {
        padding: 0px;
    }
}

@media screen and (max-width: 565px) and (min-width: 418px) {

    #icfw-minicart.popup .your-cart-content {
        padding: 20px 20px;
    }

    #icfw-minicart.popup #icfw-suggestion-cart .icfw-pro-right {
        width: 117px;
    }
}

@media screen and (max-width: 1000px) and (min-width: 566px) {

    #icfw-minicart.popup {
        width: 32rem;
    }

    #icfw-minicart.popup #icfw-suggestion-cart .icfw-pro-right {
        width: 117px;
    }
}

#icfw-minicart::-webkit-scrollbar {
    width: 7px;
}

#icfw-minicart::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

#icfw-minicart.popup .icfw-item-qty {
    width: 7rem;
}

#icfw-minicart.popup .icfw-item-qty .icfw-qty {
    width: 50%;
}

body.woocommerce-shop .icfw-buynow-btn {
    background: var(--icfwBuyNowButtonBGColor);
    color: var(--icfwBuyNowBtnTextColor);
    display: flex;
    margin: auto;
    margin-bottom: 8px;
}

.icfw-buynow-btn {
    background: var(--icfwBuyNowButtonBGColor);
    color: var(--icfwBuyNowBtnTextColor);
    margin: 0px 8px;
}

.icfw-rtl {
    direction: rtl;
}

.icfw-rtl .cart-item-right {
    margin-right: unset;
    margin-left: 5%;
}

.icfw-rtl .shipping_method {
    margin-left: 10px;
}

.icfw-rtl .icfw-cart-coupon-area > button {
    left: 6px;
    right: unset;
    
}

.icfw-rtl .icfw-cart-coupon-area > input {
    padding: 8px 12px 8px 12px;
}

.icfw-rtl #icfw-cart-subtotal {
    margin-left: 5px;
}

.icfw-rtl #icfw-minicart.sliding.right .your-cart-title {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.icfw-rtl #icfw-minicart.sliding.left .your-cart-title {
    justify-content: space-between;
}

.icfw-rtl #icfw-minicart.sliding.right .your-cart-title h4 {
    margin-left: 62%;
}

.icfw-rtl #icfw-minicart.sliding.left .your-cart-title h4 {
    margin-left: 62%;
}

.icfw-rtl #icfw-minicart .your-cart-title h4 {
    margin-left: 83%;
}

.icfw-rtl .icfw-cart-slider-wrapper {
    direction: ltr;
}

.icfw-rtl .icfw-product-block {
    direction: rtl;
}

.icfw-wcbp-item-qty {
    position: relative;
    margin-top: 10px;
    border: 1px solid var(--icfwCartTextColor);
    width: 4rem;
    text-align: center;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 17px;
    color: black;
}
    