.text-center {
  margin: auto;
  text-align: center;
}
.header-container, .category-heading > h2, .section-title1 h3.header-color, .section-title2 h3 {
    background: #F5F5F5		 !important;
    color: #231F20;
}
.hot-deal-product .slick-arrow {
    color: #231F20;
}
.hot-deal-product .slick-next-btn.slick-arrow:after {
    background: #231F20;
}

.whiteclr{
    background: #fff !important;
}

.search-bar{
    background: #ddd !important;
}
.search-bar1 {
    border: 2px solid #F5F5F5		 !important;
    border-radius: 0%;
}

.search-box button {
    border-radius: 0%;
}
.icon-color{
    border-color: #000 !important;
    color: #000 !important;
}
.icon-num {
    color: #000 !important;
}
.border-radius {
  border-radius: 0px 0px 0 0 !important;
}
.right{
    right: -3px !important;
}

.main-menu-home {
    padding-left: 56%;
    border-radius: 0px !important;
}
.logo {
    max-width: 210px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.first_logo {
  max-width: 150px;
}
.search-box-area {
    margin-top: 15px;
    margin-bottom: 15px;
}
.mini-cart-area > ul > li {
    padding: 15px 5px;
}
.header-sticky.sticky.menu-sticky{
    background: #Ffff;
}
.header-sticky.sticky .main-menu-area {
    background: #ffffff!important;
    margin-top: 7px;
}
.main-menu-area{
  text-align: center;
}
.header-sticky.sticky .download_menu {
  display: none;
}
.main-menu > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
}
.header-sticky.sticky .main-menu > li > a {
    color: #000;
    padding-top: 15px;
    padding-bottom: 15px;
}
.header-sticky.sticky.menu-sticky .logo-sticky  {

    max-width: 100px;
}
.section-title1-border.line-color {
    border-bottom:2px solid #F1B307;
}

.black-bg {
    background: #F5F5F5		;
}

.black-bg p, .footer-title > h3, .footer-info > li > a {
    color: #000;
}

.product-cart-img img {
    width: 100px;
    height: 100px;
}
.home-4 .header-top-area {
    border-bottom: 1px solid #fff;
}
#grid-view .single-product {
  margin: 10px;
  height: 420px;
  background: #FFF;
  position: relative;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  box-shadow: 0 0 5px #ececec;
  -webkit-box-shadow: 0 0 5px #ececec;
  -moz-box-shadow: 0 0 5px #ececec;
}

#grid-view .single-product a img {
  height: 245px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#category_menu {
    width: 100%;
    padding: 20px 50px;
    background: #F5F5F5		;
}
.nivo-main-image {
    height: 422px !important;
}

.usp_container {
    background: #231F20;
    border-radius: 0;
}

.usp_container .all-about {
    margin-bottom: 0;
}

.usp_container .single-about {
    background: #231F20;
    color: #FFF;
    padding: 5px;
}

.usp_container .single-about:after {
    background: #2f2f2f;
}

.usp_container h5 {
    font-size: 13px;
}

.text-white {
    color: #FFF !important;
}

.bg-sticky-black {
    background: #FFFFFF;
}

.sticky .bg-sticky-black {
    background: transparent;
}

.category_container, .category_container .single-about {
    background: #fff		;
}

.category_container .all-about img
{
  padding: 1px;
}
.category_container .single-about:after {
    background: transparent !important;
}

.category_container .col-1 {
    width: 10.7%;
}

.category_container .about-content:hover h6 {
  color: #9E1829;
  text-decoration: underline;
}

.category_container  h6 {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.category_container .single-about {
    height: 140px;
}

.category_container .about-content {
    display: block;
}

.category_container .img-containter {
    height: 110px;
    margin-bottom: 10px;
}

/* CART */
.cd-add-to-cart {
    display: inline-block;
    padding: 1.2em 1.8em;
    background: #2c97de;
    border-radius: 50em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: .1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .cd-add-to-cart:hover {
    background: #42a2e1;
  }
  .cd-add-to-cart:active {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }

  /* --------------------------------

  Main Components

  -------------------------------- */
  .cd-cart-container::before {
    /* dark bg layer visible when the cart is open */
    content: '';
    position: fixed;
    z-index: 10000;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .4s, visibility .4s;
    transition: opacity .4s, visibility .4s;
  }

  .cd-cart-container.cart-open::before {
    opacity: 1;
    visibility: visible;
  }

  .cd-cart-trigger,
  .cd-cart {
    position: fixed;
    bottom: 20px;
    right: 2%;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    will-change: transform;
    backface-visibility: hidden;
  }
  .empty .cd-cart-trigger, .empty
  .cd-cart {
    -webkit-transform: translateY(150px);
        -ms-transform: translateY(150px);
            transform: translateY(150px);
  }
  @media only screen and (min-width: 1170px) {
    .cd-cart-trigger,
    .cd-cart {
      bottom: 40px;
    }
  }

  .cd-cart-trigger {
    /* button that triggers the cart content */
    z-index: 2147483601;
    height: 72px;
    width: 72px;
    /* replace text with image */
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
    background: #fdbe0f;
  }
  .cd-cart-trigger::after, .cd-cart-trigger::before {
    /* used to create the cart/'X' icon */
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    height: 100%;
    width: 100%;
    background: url(../img/icon/cd-icons-cart-close.svg) no-repeat 0 0;
    -webkit-transition: opacity .2s, -webkit-transform .2s;
    transition: opacity .2s, -webkit-transform .2s;
    transition: opacity .2s, transform .2s;
    transition: opacity .2s, transform .2s, -webkit-transform .2s;
  }
  .cd-cart-trigger::after {
    /* 'X' icon */
    background-position: -72px 0;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
        -ms-transform: translateX(-50%) translateY(-50%) rotate(90deg);
            transform: translateX(-50%) translateY(-50%) rotate(90deg);
  }
  .cart-open .cd-cart-trigger::before {
    opacity: 0;
  }
  .cart-open .cd-cart-trigger::after {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
  .cd-cart-trigger .count {
    /* number of items indicator */
    position: absolute;
    top: -10px;
    right: -10px;
    height: 28px;
    width: 28px;
    background: #e94b35;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    text-indent: 0;
    -webkit-transition: -webkit-transform .2s .5s;
    transition: -webkit-transform .2s .5s;
    transition: transform .2s .5s;
    transition: transform .2s .5s, -webkit-transform .2s .5s;
  }
  .cd-cart-trigger .count li {
    /* this is the number of items in the cart */
    position: absolute;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
  .cd-cart-trigger .count li:last-of-type {
    visibility: hidden;
  }
  .cd-cart-trigger .count.update-count li:last-of-type {
    -webkit-animation: cd-qty-enter .15s;
            animation: cd-qty-enter .15s;
    -webkit-animation-direction: forwards;
            animation-direction: forwards;
  }
  .cd-cart-trigger .count.update-count li:first-of-type {
    -webkit-animation: cd-qty-leave .15s;
            animation: cd-qty-leave .15s;
    -webkit-animation-direction: forwards;
            animation-direction: forwards;
  }
  .cart-open .cd-cart-trigger .count {
    -webkit-transition: -webkit-transform .2s 0s;
    transition: -webkit-transform .2s 0s;
    transition: transform .2s 0s;
    transition: transform .2s 0s, -webkit-transform .2s 0s;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  .empty .cd-cart-trigger .count {
    /* fix bug - when cart is empty, do not animate count */
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .cd-cart-trigger:hover + div .wrapper {
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.3);
  }
  .cart-open .cd-cart-trigger:hover + div .wrapper {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.17);
  }

  .cd-cart {
    /* cart content */
    z-index: 10000;
    width: 90%;
    max-width: 440px;
    height: 400px;
    max-height: 90%;
    pointer-events: none;
  }
  .cd-cart .wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10000;
    overflow: hidden;
    height: 72px;
    width: 72px;
    border-radius: 6px;
    -webkit-transition: height .4s .1s, width  .4s .1s, box-shadow .3s;
    transition: height .4s .1s, width  .4s .1s, box-shadow .3s;
    -webkit-transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
            transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.17);
    pointer-events: auto;
  }
  .cd-cart header, .cd-cart footer {
    position: absolute;
    z-index: 2;
    left: 0;
    width: 100%;
  }
  .cd-cart header, .cd-cart .body {
    opacity: 0;
  }
  .cd-cart header {
    top: 0;
    border-radius: 6px 6px 0 0;
    padding: 0 1.4em;
    height: 40px;
    line-height: 40px;
    background-color: #ffffff;
    -webkit-transition: opacity .2s 0s;
    transition: opacity .2s 0s;
    border-bottom: 1px solid #e6e6e6;
  }
  .cd-cart header::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-cart footer {
    bottom: 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    background: #ffffff;
  }
  .cd-cart h2 {
    text-transform: uppercase;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .1em;
  }
  .cd-cart .undo {
    float: right;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s, visibility .2s;
    transition: opacity .2s, visibility .2s;
    color: #808b97;
  }
  .cd-cart .undo a {
    text-decoration: underline;
    color: #2b3e51;
  }
  .cd-cart .undo a:hover {
    color: #2c97de;
  }
  .cd-cart .undo.visible {
    opacity: 1;
    visibility: visible;
  }
  .cd-cart .checkout {
    display: block;
    height: 72px;
    line-height: 72px;
    margin-right: 72px;
    background: #eb3e32;
    color: rgba(255, 255, 255, 0);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    -webkit-transition: all .2s 0s;
    transition: all .2s 0s;
  }
  .cd-cart .checkout:hover {
    background: #eb3e35;
  }
  .cd-cart .checkout em {
    position: relative;
    font-style: normal;
    font-weight: 500 !important;
    display: inline-block;
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px);
    -webkit-transition: -webkit-transform 0s .2s;
    transition: -webkit-transform 0s .2s;
    transition: transform 0s .2s;
    transition: transform 0s .2s, -webkit-transform 0s .2s;
  }
  .cd-cart .checkout em::after {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    content: '';
    height: 24px;
    width: 24px;
    background: url(../img/icon/cd-icon-arrow-next.svg) no-repeat center center;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .cd-cart .body {
    position: relative;
    z-index: 1;
    height: calc(100% - 40px);
    padding: 20px 0 10px;
    margin: 40px 0 10px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .cd-cart .body ul {
    overflow: hidden;
    padding: 0 1.4em;
    position: relative;
    padding-bottom: 90px;
  }
  .cd-cart .body li {
    position: relative;
    opacity: 0;
    -webkit-transform: translateX(80px);
        -ms-transform: translateX(80px);
            transform: translateX(80px);
    -webkit-transition: opacity 0s .2s, -webkit-transform 0s .2s;
    transition: opacity 0s .2s, -webkit-transform 0s .2s;
    transition: opacity 0s .2s, transform 0s .2s;
    transition: opacity 0s .2s, transform 0s .2s, -webkit-transform 0s .2s;
  }
  .cd-cart .body li::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-cart .body li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .cd-cart .body li.deleted {
    /* this class is added to an item when it is removed form the cart */
    position: absolute;
    left: 1.4em;
    width: calc(100% - 2.8em);
    opacity: 0;
    -webkit-animation: cd-item-slide-out .3s forwards;
            animation: cd-item-slide-out .3s forwards;
  }
  .cd-cart .body li.deleted.undo-deleted {
    /* used to reinsert an item deleted from the cart when user clicks 'Undo' */
    -webkit-animation: cd-item-slide-in .3s forwards;
            animation: cd-item-slide-in .3s forwards;
  }
  .cd-cart .body li.deleted + li {
    -webkit-animation: cd-item-move-up-mobile .3s;
            animation: cd-item-move-up-mobile .3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }

  .cd-cart .body li.undo-deleted + li {
    -webkit-animation: cd-item-move-down-mobile .3s;
            animation: cd-item-move-down-mobile .3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .cd-cart .product-image {
    display: inline-block;
    float: left;
    /* the image height determines the height of the list item - in this case height = width */
    width: 50px;
  }
  .cd-cart .product-image img {
    display: block;
  }
  .cd-cart .product-details {
    position: relative;
    display: inline-block;
    float: right;
    width: calc( 100% - 50px);
    padding: 0.3em 0 0 0.5em;
  }
  .cd-cart .product-details::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-cart h3, .cd-cart .price {
    font-weight: bold;
  }
  .cd-cart h3 {
    width: 70%;
    float: left;
    font-size: 1.3rem !important;
    /* truncate title with dots if too long */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .cd-cart h3 a {
    color: #2b3e51;
  }
  .cd-cart h3 a:hover {
    color: #2c97de;
  }
  .cd-cart .price {
    float: right;
    width: 30%;
    text-align: right;
  }
  .cd-cart .actions {
    font-size: 1.4rem;
    height: 1.6em;
    line-height: 1.6em;
  }
  .cd-cart .actions::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-cart .delete-item, .cd-cart .quantity {
    float: left;
    width: 50%;
    color: #808b97;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-cart .delete-item {
    margin-right: 0;
    text-align: right;
  }
  .cd-cart .delete-item:hover {
    color: #e94b35;
  }
  .cd-cart .quantity label {
    display: inline-block;
    margin-right: .3em;
  }
  .cd-cart .select {
    position: relative;
  }
  .cd-cart .select::after {
    /* switcher arrow for select element */
    content: '';
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/cd-icon-select.html) no-repeat center center;
    pointer-events: none;
  }
  .cd-cart select {
    position: relative;
    padding: 0 1em 0 0;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 1.4rem;
    margin: 0;
    color: #808b97;
  }
  .cd-cart select:focus {
    outline: none;
    color: #2b3e51;
    box-shadow: 0 1px 0 currentColor;
  }
  .cd-cart select::-ms-expand {
    /* hide default select arrow on IE */
    display: none;
  }
  .cart-open .cd-cart .wrapper {
    height: 100%;
    width: 100%;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .cart-open .cd-cart header, .cart-open .cd-cart .body {
    opacity: 1;
  }
  .cart-open .cd-cart header {
    -webkit-transition: opacity .2s .2s;
    transition: opacity .2s .2s;
  }
  .cart-open .cd-cart .body {
    -webkit-transition: opacity 0s;
    transition: opacity 0s;
  }
  .cart-open .cd-cart .body li {
    -webkit-transition: opacity .3s .2s, -webkit-transform .3s .2s;
    transition: opacity .3s .2s, -webkit-transform .3s .2s;
    transition: transform .3s .2s, opacity .3s .2s;
    transition: transform .3s .2s, opacity .3s .2s, -webkit-transform .3s .2s;
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .cart-open .cd-cart .body li:nth-of-type(2) {
    -webkit-transition-duration: .4s;
            transition-duration: .4s;
  }
  .cart-open .cd-cart .body li:nth-of-type(3) {
    -webkit-transition-duration: .5s;
            transition-duration: .5s;
  }
  .cart-open .cd-cart .body li:nth-of-type(4), .cart-open .cd-cart .body li:nth-of-type(5) {
    -webkit-transition-duration: .55s;
            transition-duration: .55s;
  }
  .cart-open .cd-cart .checkout {
    color: #ffffff;
    -webkit-transition: color .2s .3s;
    transition: color .2s .3s;
  }
  .cart-open .cd-cart .checkout em {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: padding .2s 0s, -webkit-transform .2s .3s;
    transition: padding .2s 0s, -webkit-transform .2s .3s;
    transition: transform .2s .3s, padding .2s 0s;
    transition: transform .2s .3s, padding .2s 0s, -webkit-transform .2s .3s;
  }
  .cart-open .cd-cart .checkout:hover em {
    padding-right: 30px;
  }
  .cart-open .cd-cart .checkout:hover em::after {
    opacity: 1;
  }
  @media only screen and (min-width: 768px) {
    .cd-cart .body li:not(:last-of-type) {
      margin-bottom: 14px;
    }
    .cd-cart .body li.deleted + li {
      -webkit-animation: cd-item-move-up .3s;
              animation: cd-item-move-up .3s;
    }
    .cd-cart .body li.undo-deleted + li {
      -webkit-animation: cd-item-move-down .3s;
              animation: cd-item-move-down .3s;
    }
    .cd-cart .checkout {
      font-size: 2.4rem;
    }
    .cd-cart .product-image {
      width: 90px;
    }
    .cd-cart .product-details {
      padding: 0em 0 0 1em;
      width: calc( 100% - 90px);
    }
    .cd-cart h3, .cd-cart .price {
      font-size: 1.8rem;
    }
  }

  .cd-cart .price {
      padding: 0;
      color: #f8b831;
  }

  @-webkit-keyframes cd-qty-enter {
    0% {
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateX(-50%) translateY(0);
              transform: translateX(-50%) translateY(0);
    }
    100% {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateX(-50%) translateY(-50%);
              transform: translateX(-50%) translateY(-50%);
    }
  }

  @keyframes cd-qty-enter {
    0% {
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateX(-50%) translateY(0);
              transform: translateX(-50%) translateY(0);
    }
    100% {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateX(-50%) translateY(-50%);
              transform: translateX(-50%) translateY(-50%);
    }
  }
  @-webkit-keyframes cd-qty-leave {
    0% {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateX(-50%) translateY(-50%);
              transform: translateX(-50%) translateY(-50%);
    }
    100% {
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateX(-50%) translateY(-100%);
              transform: translateX(-50%) translateY(-100%);
    }
  }
  @keyframes cd-qty-leave {
    0% {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateX(-50%) translateY(-50%);
              transform: translateX(-50%) translateY(-50%);
    }
    100% {
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateX(-50%) translateY(-100%);
              transform: translateX(-50%) translateY(-100%);
    }
  }
  @-webkit-keyframes cd-item-move-up-mobile {
    0% {
      padding-top: 70px;
    }
    100% {
      padding-top: 0px;
    }
  }
  @keyframes cd-item-move-up-mobile {
    0% {
      padding-top: 70px;
    }
    100% {
      padding-top: 0px;
    }
  }
  @-webkit-keyframes cd-item-move-up {
    0% {
      padding-top: 104px;
    }
    100% {
      padding-top: 0px;
    }
  }
  @keyframes cd-item-move-up {
    0% {
      padding-top: 104px;
    }
    100% {
      padding-top: 0px;
    }
  }
  @-webkit-keyframes cd-item-move-down-mobile {
    0% {
      padding-top: 0px;
    }
    100% {
      padding-top: 70px;
    }
  }
  @keyframes cd-item-move-down-mobile {
    0% {
      padding-top: 0px;
    }
    100% {
      padding-top: 70px;
    }
  }
  @-webkit-keyframes cd-item-move-down {
    0% {
      padding-top: 0px;
    }
    100% {
      padding-top: 104px;
    }
  }
  @keyframes cd-item-move-down {
    0% {
      padding-top: 0px;
    }
    100% {
      padding-top: 104px;
    }
  }
  @-webkit-keyframes cd-item-slide-out {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(80px);
              transform: translateX(80px);
      opacity: 0;
    }
  }
  @keyframes cd-item-slide-out {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(80px);
              transform: translateX(80px);
      opacity: 0;
    }
  }
  @-webkit-keyframes cd-item-slide-in {
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    0% {
      -webkit-transform: translateX(80px);
              transform: translateX(80px);
      opacity: 0;
    }
  }
  @keyframes cd-item-slide-in {
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    0% {
      -webkit-transform: translateX(80px);
              transform: translateX(80px);
      opacity: 0;
    }
  }
  /* END OF CART */

.fa-rupee-sign {
  margin-right: 5px;
}

body {
  background: #F7F6F6;
}

.quantity input.item_quantity, .item_cart_quantity {
	padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px !important;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}

.text-white {
  color: #FFF;
}

#loginModal {
  background: rgba(255, 255, 255, 0.64);
  z-index: 1000000;
}

#loginModal .modal-content {
  background: url(../img/menu/login_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

#loginModal .card {
  padding: 10px;
}

#loginModal .social-btn li {
  display: inline-block;
  margin: 10px 10px 0 0;
}

#loginModal .social-btn img {
  width: 175px;
}

#loginModal input {
  height: 40px;
}

#loginModal hr {
  margin: 30px 0;
  border-color: #6b6b6b;
}

.checkout .card {
  padding: 20px;
  background: #FFF;
  border: 1px solid #f0f0f0;
}

.shipping-address input[type="radio"] {
  height: 20px;
  vertical-align: middle;
}

.bb-l {
  border-bottom: 1px solid #F0F0F0;
}

.order-summary .product-thumbnail {
  width: 20%;
  height: 7em;
}

.order-summary .product-thumbnail img {
  border-radius: 5px;
}

.order-summary .product-title-summary {
  padding-left: 20px;
  width: 40%;
}
.order-summary .quantity {
  width: 20%;
}
.order-summary .product-price {
  width: 20%;
  text-align: right;
  font-weight: bold;
  color: #363f4d;
}

.fade-scale {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all .15s linear;
  -o-transition: all .15s linear;
  transition: all .15s linear;
}

.fade-scale.in {
  opacity: 1;
  transform: scale(1);
}

.modal.fade .modal-dialog {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
    top: 300px;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.modal.fade.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: translate3d(0, -300px, 0);
    transform: translate3d(0, -300px, 0);
    opacity: 1;
}

#side_menu {
  background-color: #F5F5F5		;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  padding: 15px;
  color: #000;
}

#side_menu .close {
  float: right;
  background: transparent;
  opacity: 0.3;
}

#side_menu .close i {
    color: #000;
    font-size: 26px;
}

#side_menu .menu {
  margin-top: 10%;
  font-size: 16px;
}

#side_menu .menu li {
  padding-top: 15px;
  padding-bottom: 15px;
}

#side_menu .menu li i {
  margin-right: 10px;
}

.summary_description {
  padding: 10px;
}

.product-description * {
  font-family: "Rubik" !important;
}

.category_strip_title {
  background: url('../img/bg/title_bg.png');
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 5px 10px;
  color: #FFF;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  margin-top: -20px;
  line-height: 20px;
  height: 50px;
  width: 80%;
  z-index: 1;
}

.popover{
    max-width: 100%; /* Max Width of the popover (depending on the container!) */
    min-width: 50%;
}

.header-top-menu .popover {
  border-radius: 2px;
  padding: 0;
}

.header-top-menu .popover .popover-title {
    background-color: #f1b306;
    border-bottom: 1px solid #f1b306;
    color: #000;
    border-radius: 0;
}

.header-top-menu .popover.bottom>.arrow {
    border-bottom-color: #f1b306;
}

.header-top-menu .popover.bottom>.arrow:after {
  border-bottom-color: #f1b306;
}

.hide_scroll {
  overflow-y: hidden;
}

.fipola_points {
  color: #FFF;
  padding: 12px 15px;
  background: #eb3e32;
  font-family: "Rubik";
  font-weight: bold;
}

.show_map {
  display: block !important;
  width: 40px;
  height: 40px;
  margin: auto;
  margin-bottom: 0 !important;
}

.location_marker span {
  font-size: 12px;
  text-align: center;
  width: 100%;
  display: block;
  color: #000;
}


.custom-marker p {
  margin: 5px 10px;
  font-size: 15px;
  font-family: "Rubik";
  color: #000;
  }
  .custom-marker.my1 {
   font-size: 1.5em;
   padding: 0px;
   margin-left: -10px;
   background: #fff;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   border-radius: 4px;
   border: #CCC solid 1px;
  }

  .custom-marker.my1 img {
   margin: 10px;
  }


  .custom-marker.my1:after {
   content: '';
   position: absolute;
   border-style: solid;
   border-width: 7px 6px 0;
   border-color: #fff transparent;
   display: block;
   width: 0;
   z-index: 1;
   margin-left: -6px;
   bottom: -6px;
   left: 50%;
  }

  .custom-marker.my1:before {
   content: '';
   position: absolute;
   border-style: solid;
   border-width: 7px 6px 0;
   border-color: #7F7F7F transparent;
   display: block;
   width: 0;
   z-index: 0;
   margin-left: -6px;
   bottom: -7px;
   left: 50%;
  }

#fc_frame {
  right: -15px !important;
  bottom: -15px !important;
}

.best-seller-products h2, .trending-products h2 {
  margin-left: 5px;
  margin-right: 5px;
  font-size: 16px;
}

.faq h2 {
    font-size: 20px;
    margin-top: 30px;
}

.single-product .meta_desc .b-r:last-child {
  border: none;
}

.feature_icons .col-md-4 {
  text-align: center;
}

.feature_icons span {
  color: #000;
}

.feature_icons img {
  height: 45px;
}

#grid-view .single-product h2 {
  padding-left: 5px;
  padding-right: 5px;
}

.add-btn {
  cursor: pointer;
}

.ui-ios-overlay {
    z-index: 999999999;
}

.account-settings .nav-link.active {
  background: #FDBE0F;
  color: #000;
}

.address_index {
  background: #f8b831;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  line-height: 35px;
  padding-left: 14px;
  font-weight: bold;
  color: #000;
}

.swal-footer {
  text-align: center !important;
}

.swal-button {
  padding: 8px 24px !important;
}

#slider .owl-item img {
  height: 340px;
}

.cart_count {
  position: absolute;
  top: -5px;
  right: -10px;
  height: 20px;
  width: 20px;
  line-height: 23px;
  background: #e94b35;
  border-radius: 50%;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
}

.why-fipola {
  margin-top: -35px;
}

.why-fipola::before {
  content: '';
  background: url('../img/bg/why_fipola_header.png');
  width: 100%;
  height: 200px;
  display: block;
  background-repeat: no-repeat;
  margin: auto;
  background-size: 100%;
}

.why-fipola::after {
  content: '';
  background: url('../img/bg/why_fipola_footer.png');
  width: 100%;
  height: 200px;
  display: block;
  background-repeat: no-repeat;
  margin: auto;
  background-size: 100% 100%;
}

.payment_mode_container {
  cursor: pointer;
}

.faq h3 {
  margin-top: 25px;
  font-size: 20px;
}

.strikethrough{
  position: relative;
}
.strikethrough:before {
  position: absolute;
  content: "";
  left: 0;
  top: 65%;
  right: 0;
  border-top: 1px solid;
  border-color: inherit;

  -webkit-transform:rotate(-25deg);
  -moz-transform:rotate(-25deg);
  -ms-transform:rotate(-25deg);
  -o-transform:rotate(-25deg);
  transform:rotate(-25deg);
}

.original-price, .fipola-first-price {
  display: inline-block;
}

.original-price {
  color: #525252 !important;
}

.original-price p, .fipola-first-price p {
  padding-bottom: 0;
  padding-top: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 10px;
  margin-bottom: 0;
}

.original-price i, .fipola-first-price i {
  font-style: normal;
  font-weight: bold;
}

.fipola-first-price i {
    color: #EB3E32 !important;
}

.single-product-info .original-price i, .single-product-info .fipola-first-price i {
  font-size: 20px;
}

.single-product-quantity {
  margin-top: 20px;
}

.bg-product-price {
  background: #f6f6f6;
  border: 1px solid #e0e0e0;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-right: 0;
  border-left: 0;
}

.btn-add-to-cart {
  background: #EB3E32;
  margin-top: 5px;
  line-height: 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #FFF !important;
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-add-to-cart span {
    margin-right: 10px;
}

.btn-add-to-cart:hover {
  color: #FFF;
  opacity: 0.8;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-    ng-cloak {
     display: none !important;
 }


 .calendar-picker .col-md-2 {
   background: #FFF;
   padding-top: 10px;
   padding-bottom: 10px;
   text-align: center;
   cursor: pointer;
   width: 20%;
 }

 .calendar-picker {
   margin-bottom: 20px;
   /*border: 1px solid #ececec;*/
   background: #FFF;
 }

 .calendar-picker span {
   font-size: 12px;
 }

 .calendar-picker .selected {
   background: #fdbe0f;
   color: #000;
   border-radius: 50%;
 }

 .calendar-picker h4 {
   margin-bottom: 0;
   margin-top: 0;
   font-size: 16px;
   width: 30px;
   height: 30px;
   line-height: 30px;
   margin: auto;
 
}

@media (max-width: 767px) { 
	#fc_widget, #fc_frame {
		display: none;
	}

}
