

.cd-container {
  /* this class is used to horizontally align the gallery of items */
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
.table{overflow-x: hidden;}

media only screen and (min-width: 1200px) {
  header {
    height: 80px;
  }
}


@media only screen and (min-width: 1200px) {
  #logo {
    padding-top: 20px;
    position: absolute;
    /* logo left margin on Dekstop */
    left: 2.4em;
    top: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}



#cd-hamburger-menu {
  left: 0;
}
#cd-hamburger-menu a {
  background: #26292f url("../img/cd-hamburger-menu.svg") no-repeat center center;
}
@media only screen and (min-width: 1200px) {
  #cd-hamburger-menu {
    display: none;
  }
}




#main-nav, #cd-cart {
  position: fixed;
  top: 0;
  height: 100%;
  width: 260px;
  /* header height */
  padding-top: 50px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  #main-nav, #cd-cart {
    width: 350px;
  }
}
@media only screen and (min-width: 1200px) {
  #main-nav, #cd-cart {
    width: 30%;
    /* header height has changed */
    padding-top: 80px;
  }
}

#main-nav {
  left: -100%;
  background: #FFF;
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  transition: left 0.3s;
}
#main-nav.speed-in {
  left: 0;
}
#main-nav ul a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 1em;
  border-bottom: 1px solid #e0e6ef;
}
#main-nav ul .current {
  box-shadow: inset 3px 0 #435779;
}
@media only screen and (min-width: 1200px) {
  #main-nav {
    /* reset main nav style */
    position: absolute;
    height: auto;
    width: auto;
    left: auto;
    right: 8em;
    padding-top: 0;
    top: 0;
    background: transparent;
    box-shadow: none;
    /* header height */
    line-height: 80px;
    z-index: 4;
  }
  #main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  #main-nav ul a {
    display: inline-block;
    height: auto;
    line-height: 1;
    padding: 1em 1.4em;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0.25em;
  }
  #main-nav ul a.current {
    box-shadow: none;
    background: #435779;
    color: #FFF;
  }
  .no-touch #main-nav ul a:hover {
    background: #435779;
    color: #FFF;
  }
}
.no-js #main-nav {
  position: fixed;
}

#cd-cart {
  right: -100%;
  background: #FFF;
  -webkit-transition: right 0.3s;
  -moz-transition: right 0.3s;
  transition: right 0.3s;
}
#cd-cart.speed-in {
  right: 0;
}
#cd-cart > * {
  padding: 0 1em;
}

#cd-cart .cd-cart-items {
  padding: 0;
}
#cd-cart .cd-cart-items li {
  position: relative;
  padding: 1em;
  border-top: 1px solid #e0e6ef;
}
#cd-cart .cd-cart-items li:last-child {
  border-bottom: 1px solid #e0e6ef;
}
#cd-cart .cd-qty, #cd-cart .cd-price {
  color: #a5aebc;
}
#cd-cart .cd-price {
  margin-top: .4em;
}
#cd-cart .cd-item-remove {
  position: absolute;
  right: 1em;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  /*background: url("../img/cd-remove-item.svg") no-repeat center center;*/
}
.no-touch #cd-cart .cd-item-remove:hover {
  background-color: #e0e6ef;
}
#cd-cart .cd-cart-total {
  padding-top: 1em;
  padding-bottom: 1em;
}
#cd-cart .cd-cart-total span {
  float: right;
}
#cd-cart .cd-cart-total::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
#cd-cart .checkout-btn {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #7dcf85;
  color: #FFF;
  text-align: center;
}
.no-touch #cd-cart .checkout-btn:hover {
  background: #a2dda8;
}
#cd-cart .cd-go-to-cart {
  text-align: center;
  margin: 1em 0;
}
#cd-cart .cd-go-to-cart a {
  text-decoration: underline;
}
@media only screen and (min-width: 1200px) {
  #cd-cart > * {
    padding: 0 2em;
  }
  #cd-cart .cd-cart-items li {
    padding: 1em 2em;
  }
  #cd-cart .cd-item-remove {
    right: 2em;
  }
}

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

xgallery 

-------------------------------- */
main {
  position: relative;
  min-height: 100%;
  background: #eeeff7;
  padding-top: 70px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  main {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  main {
    padding-top: 120px;
  }
}

#cd-gallery-items li {
  margin-bottom: 1.5em;
}
#cd-gallery-items li img {
  width: 100%;
  display: block;
  border-radius: 0.25em;
}
@media only screen and (min-width: 768px) {
  #cd-gallery-items li {
    width: 48%;
    float: left;
    margin-bottom: 2em;
    margin-right: 4%;
  }
  #cd-gallery-items li:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #cd-gallery-items li {
    width: 31%;
    float: left;
    margin-bottom: 2.5em;
    margin-right: 3.5%;
  }
  #cd-gallery-items li:nth-child(2n) {
    margin-right: 3.5%;
  }
  #cd-gallery-items li:nth-child(3n) {
    margin-right: 0;
  }
}

#cd-shadow-layer {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(67, 87, 121, 0.6);
  cursor: pointer;
  z-index: 2;
  display: none;
}
#cd-shadow-layer.is-visible {
  display: block;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}

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

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
    #cd-cart .cd-cart-items li {
      padding:  1rem 4.5rem 1rem 1rem;
    }  
    #cd-cart .cd-item-remove {
      right: .5rem;
    }
    #cd-cart .cd-cart-items {
      height: auto;
      max-height: 350px;
      overflow: auto;
    }
    .accessory_box .accessory_box_top_area figure {

        margin: 0 0 1.25rem 0;
        height: 204px;
        overflow: hidden;
        position: relative;
        padding: 1px;

    }
    @media (min-width: 1024px) and  (max-width:1024px) {
        .btn-white{
            font-size: 11px;
        }

    }

    .accessory_box .price{
        margin-bottom: 4px;
    }

    .accessory_box figure > img {
        width: auto;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        max-width: 100%;
        max-height: 100%;
    }
    .accessory_box figure > img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

    .accessory_box .white_rounded_tag{
        z-index: 1;
    }
    .accessory_box h4 {
        color: #4A4A4A;
        margin: 6px 0;
        font-size: 16px;
        height: 38px;
    }
    .accessory_box h4 span {
      line-height: 1.4;
    }

    .se-pre-con {
        position: fixed;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: url(<?php echo base_url()?>/assets/dual-ring.svg) center no-repeat ;
    }

    .navbar-default .navbar-nav > li > a {
            font-weight: bolder;
    }
    .select2-container--default .select2-selection--multiple {
        border-radius: 0px !important;
        border-color: #dcdcdc !important;
        /*width: 100% !important;*/
    }
    .accessory_slider figure{
        margin: 0 auto;
        width: 250px;
        /*height: 250px;*/
        height: auto;
        border: 1px solid #eee;

    }
    .mb-5p {
      margin-bottom: 5px;
    }

    @media screen and (max-width: 767px) {
        #cd-cart .cd-cart-items li {
          padding: 1rem 3.5rem 1rem 1rem;
        }
        #cd-cart .cd-item-remove {
          right: 0;
        }
      }/*ends 767px*/
    @media (max-width: 600px){
        #result {
            overflow-x: scroll;
        }
    }
    .accessory_slider figure img {
        /*object-fit: cover;*/
        height: auto;
    }
    .accessory_slider figure {
        border: none;
    }
    .slick-prev, .slick-next {
            top: 35% !important;
    }
    .accessory_box .accessory_box_top_area {
        padding: 1px;
    }
    .video {

        width: 100%;
        background: #d52005;
    }
    .video_image{
        position: absolute;
        width: 50px !important;
        height: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50% , -50%);
    }
    .accessory_box figcaption h4 span{
        display: block;
    }

  .floating_imeality_search_icon {
    position: fixed;
    right: 5%;
    top: 65%;
    z-index: 1;
    height: 60px;
    width: 60px;
    background-color: #ffffff;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 2px 0 #6d6b6b;
    overflow: hidden;
  }
  .imsearch {
      width: 46px;
      margin: auto;
      margin-top: 9px;
  }
  .cd-cart-trigger {
    position: relative;
  }
  .cd-cart-trigger label {
    position: absolute;
    left: 5px;
    top: -12px !important;
    text-align: center;
    color: #fff;
    width: 42px;
    height: 46px;
    margin: 0;
    line-height: 42px;
    font-size: 14px;
    font-weight: bold;
  }

.close_drawer{
    background: none;
    border: none;
    font-size: 25px;
    position: absolute;
    left: 15px;
    padding: 0 !important;
    z-index: 10000;
}

@media (max-width: 767px) {
    #cd-cart {
        width: 100%;
    }


}

@media all and (-ms-high-contrast:none) {
  .acc_heading {
    display: block !important;
  }
  .acc_prod_title h4{
    display: block !important;
  }
  .pd_no{
    display: block !important;
  }

  .cd-cart-trigger label {
    top: -14px !important;
  }

}


.modal-body ul.brands_list img.brand_image {
  width: auto;
  max-width: 120px;
  height: auto;
}





.acc_det_grid_box .icheckbox_square-blue, .acc_det_grid_box .iradio_square-blue{
  display: none !important;
}



.accessory_box.most_popular_accessories .accessory_box_top_area > figure {
  height: 230px;
}

@media screen and (max-width: 1199px) {
  .accessory_box.most_popular_accessories .accessory_box_top_area > figure {
    height: 184px;
  }
}

@media screen and (max-width: 991px) {
  .accessory_box.most_popular_accessories .accessory_box_top_area > figure {
    height: 140px;
  }
}

@media screen and (max-width: 767px) {
  .accessory_box.most_popular_accessories .accessory_box_top_area > figure {
    height: auto;
  }
}