/*
========================================================================================================================
Colors
========================================================================================================================
 */
/***
====================================================================
	media queries
====================================================================
 ***/
/*
media query example
@include breakpoint($min768) {
		position: fixed;
	}
*/
body {
  background-image: url("../images/page-bg-1.png");
  font-family: 'Roboto', sans-serif;
  font-weight: 300; }

.f-icon {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.thick-border {
  border-radius: 0;
  border: 2px solid #13394d; }
  .thick-border.white {
    border-color: #fff; }
  .thick-border .form-control {
    border: none; }
  .thick-border .btn {
    border: none; }
  .thick-border .input-group > .form-control:not(:last-child), .thick-border .input-group > .custom-select:not(:last-child) {
    border-radius: 0; }
  .thick-border .input-group > .input-group-append > .btn {
    border-radius: 0; }
  .thick-border .newsletter-form {
    padding: 2px;
    background-color: #fff; }

.btn-icon {
  border: none;
  background-color: transparent; }
  .btn-icon:focus {
    outline: none;
    box-shadow: none; }

/*
========================================================================================================================
WYSIWYG
========================================================================================================================
 */
/*
========================================================================================================================
Shadows
========================================================================================================================
 */
.card-shadow {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }

/*
========================================================================================================================
Transitions
========================================================================================================================
 */
/*! nouislider - 11.1.0 - 2018-04-02 11:18:13 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-target {
  position: relative;
  direction: ltr; }

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1; }

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0; }

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0; }

/* Offset direction
 */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0; }

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0; }

.noUi-horizontal .noUi-origin {
  height: 0; }

.noUi-handle {
  position: absolute; }

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s; }

.noUi-state-drag * {
  cursor: inherit !important; }

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px; }

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px; }

.noUi-vertical {
  width: 18px; }

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px; }

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -17px;
  left: auto; }

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB; }

.noUi-connects {
  border-radius: 3px; }

.noUi-connect {
  background: #3FB8AF; }

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize; }

.noUi-vertical .noUi-draggable {
  cursor: ns-resize; }

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB; }

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB; }

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px; }

.noUi-handle:after {
  left: 17px; }

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px; }

.noUi-vertical .noUi-handle:after {
  top: 17px; }

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8; }

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed; }

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-pips {
  position: absolute;
  color: #999; }

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center; }

.noUi-value-sub {
  color: #ccc;
  font-size: 10px; }

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC; }

.noUi-marker-sub {
  background: #AAA; }

.noUi-marker-large {
  background: #AAA; }

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%; }

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%); }

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%); }

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px; }

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px; }

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px; }

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%; }

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px; }

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%); }

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px; }

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px; }

.noUi-marker-vertical.noUi-marker-large {
  width: 15px; }

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap; }

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%; }

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%; }

/*
========================================================================================================================
Top bar
========================================================================================================================
 */
.top-bar {
  border-bottom: 1px solid #333;
  background: #fff;
  line-height: 30px;
  height: 30px; }
  .top-bar a {
    font-size: 13px;
    color: #333;
    margin-right: 15px;
    font-weight: 500; }

/*
========================================================================================================================
Middle bar
========================================================================================================================
 */
.middle-bar .search .btn {
  color: #fff; }

@media (max-width: 991px) {
  .middle-bar {
    background-color: #13394d; } }

/*
========================================================================================================================
shopping-cart-menu-menu -- shopping in header
========================================================================================================================
 */
.shopping-cart-menu .scm-link {
  background-color: #fff;
  color: #333333; }
  .shopping-cart-menu .scm-link:hover {
    background-color: #13394d;
    color: #fff;
    text-decoration: none; }
  @media (max-width: 991px) {
    .shopping-cart-menu .scm-link {
      background-color: transparent;
      color: #fff; }
      .shopping-cart-menu .scm-link:hover {
        background-color: #f58634;
        color: #fff;
        text-decoration: none; } }

.shopping-cart-menu .scm-icon {
  line-height: 48px;
  width: 48px; }

@media (max-width: 991px) {
  .shopping-cart-menu .thick-border {
    border: none; }
  .shopping-cart-menu .scm-icon {
    display: none; }
  .shopping-cart-menu .scm-text {
    display: flex;
    justify-content: center;
    font-size: 14px; } }

@media (max-width: 399px) {
  .shopping-cart-menu .scm-text {
    display: block; }
    .shopping-cart-menu .scm-text .title {
      display: inline-block; }
    .shopping-cart-menu .scm-text .val {
      display: inline-block; } }

/*
========================================================================================================================
Site menu
========================================================================================================================
 */
.site-menu .nav .nav-link {
  padding: 1rem 1.6rem;
  color: #fff; }

.site-menu .nav.util-nav .nav-link {
  padding: 1rem;
  color: #fff; }

.site-menu .m_logo img {
  width: 146px; }

.navbar-alat {
  padding: 0; }

/*
========================================================================================================================
Shopping cart header
========================================================================================================================
 */
.open-dropdown {
  display: none; }

.shopping-cart-menu {
  position: relative; }

.shopping-cart-wrapper {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 20px;
  position: absolute;
  right: 0;
  width: 100%;
  top: 28px;
  z-index: 999; }
  @media (min-width: 400px) {
    .shopping-cart-wrapper {
      width: 370px; } }
  @media (min-width: 992px) {
    .shopping-cart-wrapper {
      top: 62px; } }

.shopping-cart-wrapper ul {
  padding: 0;
  margin: 0; }
  .shopping-cart-wrapper ul li {
    border-bottom: 1px solid #ededed;
    padding: 20px 0;
    list-style: none; }

.shopping-cart-wrapper .shoping-cart-image {
  float: left;
  margin: 0 20px 0 0;
  position: relative;
  width: 72px; }
  .shopping-cart-wrapper .shoping-cart-image img {
    display: block;
    max-width: 100%; }

.shopping-cart-wrapper .shoping-cart-image .cart-sticker {
  background: #f58634 none repeat scroll 0 0;
  border-radius: 100%;
  color: #ffffff;
  font-size: 12px;
  left: 5px;
  line-height: 23px;
  min-width: 25px;
  padding: 2px 0 0;
  position: absolute;
  text-align: center;
  top: 5px; }

.shopping-cart-wrapper .shoping-product-details h3 {
  color: #222222;
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
  word-wrap: break-word; }

.shopping-cart-wrapper .cart-product-price span {
  color: #3398CC; }
  .shopping-cart-wrapper .cart-product-price span.val {
    color: #3398CC;
    margin: 10px 0 0;
    font-weight: 900; }

.product-size > span {
  color: #666666;
  display: block;
  font-size: 12px;
  margin: 5px 0 0; }

.shopping-cart-wrapper .product-color > span {
  color: #666666;
  display: block;
  font-size: 12px; }

.shopping-cart-wrapper .cart-total h5 {
  color: #414141;
  font-size: 14px;
  line-height: 25px;
  font-family: 'Open Sans', sans-serif;
  margin: 0; }

.shopping-cart-wrapper .cart-total span {
  font-size: 16px; }

.shopping-cart-wrapper .shoping-checkout .cart-btn {
  border-radius: 0;
  color: #fff;
  margin-bottom: 20px; }

.sidebar .collapse-btn {
  background-color: #F7F7F7;
  border-radius: 0; }
  .sidebar .collapse-btn .text {
    line-height: 1.2;
    text-align: left;
    white-space: normal;
    max-width: 60%;
    font-size: 14px;
    padding: 5px 0; }
  .sidebar .collapse-btn:focus {
    outline: none;
    box-shadow: none; }

.sidebar .card-header {
  background-color: #f9f9f9;
  border: none;
  padding: 0; }
  .sidebar .card-header .collapse-btn {
    border-bottom: 1px solid #f58634; }
    .sidebar .card-header .collapse-btn:after {
      color: #f58634;
      display: inline-block;
      line-height: 1;
      font-size: 20px;
      font-family: 'fontello';
      content: "\e80a";
      float: right;
      align-self: center;
      margin-right: 15px; }
    .sidebar .card-header .collapse-btn.collapsed {
      border-bottom: 1px solid #fff; }
      .sidebar .card-header .collapse-btn.collapsed:after {
        content: "\e807"; }

.sidebar .card-body {
  background-color: #fff;
  padding: 0 10px; }
  .sidebar .card-body .nav-item {
    border-bottom: 1px solid #F7F7F7; }
    .sidebar .card-body .nav-item .nav-link {
      color: #333333;
      font-size: 14px;
      padding: 12px 12px; }

.sidebar-header {
  height: 56px; }
  .sidebar-header .text {
    font-size: 18px;
    line-height: 1.2;
    padding: 12px 0; }
  .sidebar-header .f-icon {
    font-size: 24px; }

.price-slider {
  padding-top: 40px;
  margin-bottom: 50px; }
  .price-slider .title {
    font-size: 16px;
    font-weight: 500; }
  .price-slider .slider-wrap {
    padding: 20px 0; }
  .price-slider .noUi-connect {
    background-color: #f58634; }
  .price-slider .price-input {
    border-radius: 20px;
    font-size: 14px;
    padding: 3px 15px;
    border: 1px solid #f58634;
    box-shadow: none; }
    .price-slider .price-input:focus {
      outline: none;
      box-shadow: none; }

.product-list-filter {
  border: 1px solid #e5e5e5;
  background-color: #fff;
  padding: 5px;
  margin-bottom: 10px;
  font-size: 14px; }

.product-prev {
  background-color: #fff;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
  .product-prev .prod-image {
    position: relative; }
    .product-prev .prod-image .prod-sticker {
      z-index: 5;
      position: absolute;
      top: 0;
      left: 0;
      padding: 6px 20px;
      font-size: 14px;
      line-height: 1;
      color: #fff; }
      .product-prev .prod-image .prod-sticker:before {
        z-index: 5;
        position: absolute;
        left: 0;
        top: 26px;
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 10px 0 0;
        border-color: #007bff transparent transparent transparent; }
      .product-prev .prod-image .prod-sticker.novo {
        background-color: #9bc756; }
        .product-prev .prod-image .prod-sticker.novo:before {
          border-color: #82b03a transparent transparent transparent; }
      .product-prev .prod-image .prod-sticker.akcija {
        background-color: #f58634; }
        .product-prev .prod-image .prod-sticker.akcija:before {
          border-color: #ea6a0c transparent transparent transparent; }
    .product-prev .prod-image a {
      display: block;
      text-align: center; }
    .product-prev .prod-image img {
      display: inline-block;
      max-width: 100%; }
  .product-prev .prod-prev-header {
    padding: 10px 10px 0 10px; }
    .product-prev .prod-prev-header .title {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.2;
      height: 50px;
      overflow: hidden; }
      .product-prev .prod-prev-header .title a {
        color: #333333; }
        .product-prev .prod-prev-header .title a:hover, .product-prev .prod-prev-header .title a:focus {
          color: #f58634;
          text-decoration: none; }
    .product-prev .prod-prev-header .opis {
      height: 40px;
      overflow: hidden;
      font-size: 14px;
      opacity: .8; }
  .product-prev a.add-to-chart {
    font-size: 2rem;
    color: #fff; }
    .product-prev a.add-to-chart:hover, .product-prev a.add-to-chart:focus {
      text-decoration: none;
      color: #f58634;
      transform: scale(1.1);
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); }
  .product-prev .prod-prev-footer {
    height: 60px;
    overflow: hidden;
    color: #fff;
    background: #13394d; }
  .product-prev .prod-price-wrap {
    padding: 0 20px 0 10px; }
  .product-prev .prod-price {
    text-align: center;
    font-weight: 500;
    font-size: 16px; }
    .product-prev .prod-price.old {
      font-size: 14px;
      font-weight: 400;
      text-decoration: line-through;
      opacity: .8; }
    .product-prev .prod-price.new {
      color: #f58634;
      font-size: 15px; }

/***
====================================================================
	Product single
====================================================================
 ***/
.product-title {
  font-size: 1.6rem;
  margin-bottom: 30px; }

.model-title {
  font-size: 1rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc; }

.single-product-image-area {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin-bottom: 20px; }
  .single-product-image-area img {
    display: block;
    max-width: 100%; }

.single-product-info-area .product-name {
  font-size: 26px;
  font-weight: 300; }

.single-product-info-area .ratings i {
  color: #ff9900; }

.single-product-info-area .product-desc .header {
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc; }
  .single-product-info-area .product-desc .header .title {
    font-size: 1.2rem; }
  .single-product-info-area .product-desc .header .lager {
    font-size: 14px;
    color: #fff;
    font-weight: 300; }

.single-product-info-area .product-desc .body {
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc; }

.single-product-info-area .product-desc p {
  font-size: 16px;
  margin-bottom: 3px;
  color: #666; }

.single-product-info-area .product-price-box {
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 40px;
  text-align: left; }
  .single-product-info-area .product-price-box .new-price {
    font-weight: 900; }
  .single-product-info-area .product-price-box .old-price {
    text-decoration: line-through;
    color: gray; }

.single-product-info-area .product-meta {
  border-top: 1px solid #ebebeb;
  margin: 20px 0 10px;
  padding-top: 15px;
  text-transform: capitalize; }
  .single-product-info-area .product-meta .posted-meta-inner a {
    color: #666666;
    font-size: 14px; }
    .single-product-info-area .product-meta .posted-meta-inner a:hover {
      color: #f58634; }

/***
====================================================================
	Product single cart-plus-minus BTN
====================================================================
 ***/
.quick-add-to-cart .quantity label {
  display: block;
  margin-bottom: 0.375rem;
  color: #333333;
  font-weight: 900;
  text-transform: uppercase; }

.cart-plus-minus {
  float: left;
  margin-right: 2px;
  position: relative;
  width: 76px; }

.cart-plus-minus-box {
  background: #13394d none repeat scroll 0 0;
  border-image: none;
  border-style: none solid none none;
  border-width: medium 1px medium medium;
  color: #ffffff;
  height: 46px;
  text-align: center;
  width: 48px; }

.dec.qtybutton {
  bottom: 0;
  right: 0; }

.inc.qtybutton {
  right: 0;
  top: 0; }

.dec.qtybutton, .inc.qtybutton {
  background: #13394d none repeat scroll 0 0;
  color: #ffffff;
  cursor: pointer;
  height: 23px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 28px; }

.single-product-info-area .add-to-cart {
  background: #13394d;
  border: medium none;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  height: 46px;
  line-height: 46px;
  padding: 0 25px;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s; }

.single-product-info-area .wishlist-title {
  color: #333333;
  font-weight: 900;
  text-transform: uppercase; }

.single-product-info-area .btn-wishlist {
  color: #13394d;
  padding: 0;
  height: 46px;
  width: 80px;
  font-size: 36px;
  line-height: 46px;
  text-align: center; }
  .single-product-info-area .btn-wishlist:hover, .single-product-info-area .btn-wishlist:focus {
    color: #f58634;
    text-decoration: none; }

.single-product-info-area .product-meta {
  border-top: 1px solid #ebebeb;
  margin: 20px 0 10px;
  padding-top: 15px;
  text-transform: capitalize; }

.dec.qtybutton:hover, .inc.qtybutton:hover, .quick-add-to-cart .add-to-cart:hover {
  background: #f58634; }

.sp-product-list {
  padding-top: 50px;
  padding-bottom: 50px; }
  .sp-product-list .title {
    font-size: 1.4rem; }

.newsletter-sec {
  background-image: url(../images/tool-pattern-bg-1.png); }
  .newsletter-sec .newsletter-inner {
    padding: 30px 0; }
  .newsletter-sec .header .title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2; }
  .newsletter-sec .header .subtitle {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2; }
  .newsletter-sec .form .form-control {
    font-size: 14px; }
  .newsletter-sec .form .btn .f-icon {
    font-size: 24px; }

.site-footer {
  background-image: url(../images/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
  padding: 30px 0px 0px 0px;
  color: #fff;
  font-size: 14px; }
  .site-footer img {
    max-width: 100%; }
  .site-footer a {
    color: #fff;
    line-height: 30px; }
  .site-footer .footer-logo {
    font-size: 60px;
    color: #3398CC;
    font-weight: 700; }
  .site-footer span {
    line-height: 40px;
    text-transform: uppercase;
    border-bottom: 1px solid #f58634;
    font-size: 16px; }
  .site-footer .footer-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px; }
    .site-footer .footer-title:before {
      position: absolute;
      left: 0;
      bottom: 0;
      content: '';
      display: block;
      width: 100%;
      height: 2px;
      background-color: #f58634; }
    .site-footer .footer-title:after {
      z-index: 5;
      position: absolute;
      left: 0;
      bottom: -8px;
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 8px 8px 0 0;
      border-color: #f58634 transparent transparent transparent; }
  .site-footer .footer-col {
    margin-bottom: 30px; }
    .site-footer .footer-col .nav-link {
      padding: .1rem 1rem; }

.bottom-line {
  background-color: #13394d;
  color: #fff;
  font-size: 14px; }
  .bottom-line .signature a {
    color: #fff;
    background-image: url(../images/apaone-logo-white.png);
    background-repeat: no-repeat;
    padding-left: 20px;
    background-position: 0;
    text-decoration: none; }

.mob-overlay {
  display: none; }
  @media (max-width: 991px) {
    .mob-overlay {
      background-color: rgba(0, 0, 0, 0.8);
      display: none;
      bottom: 0;
      left: 0;
      position: fixed;
      right: 0;
      top: 0;
      z-index: 40; } }

.mob-menu, .mob-search {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 280px;
  height: 100%;
  background-color: #fff;
  overflow: auto; }
  .mob-menu .nav .nav-link, .mob-search .nav .nav-link {
    color: #333333;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #fff;
    transition: background-color .3s; }
    .mob-menu .nav .nav-link:focus, .mob-menu .nav .nav-link:hover, .mob-search .nav .nav-link:focus, .mob-search .nav .nav-link:hover {
      background-color: #f58634; }
    .mob-menu .nav .nav-link:before, .mob-search .nav .nav-link:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      display: block;
      width: 0;
      padding-top: 0;
      border-radius: 100%;
      background-color: rgba(236, 240, 241, 0.3);
      transform: translate(-50%, -50%); }
    .mob-menu .nav .nav-link:focus:before, .mob-search .nav .nav-link:focus:before {
      width: 120%;
      padding-top: 120%;
      transition: width .2s ease-out, padding-top .2s ease-out; }

.mob-menu {
  left: 0; }

.mob-search {
  right: 0; }
  .mob-search .card-header {
    padding: 0; }
  .mob-search .card-body {
    padding: 0; }
  .mob-search .collapse-btn {
    border-radius: 0; }
    .mob-search .collapse-btn:focus {
      outline: none;
      box-shadow: none; }
    .mob-search .collapse-btn:after {
      color: #f58634;
      display: inline-block;
      line-height: 1;
      font-size: 20px;
      font-family: 'fontello';
      content: "\e80a";
      float: right;
      align-self: center;
      margin-right: 15px; }
    .mob-search .collapse-btn.collapsed:after {
      content: "\e807"; }

.m_search {
  padding: 10px; }

.mob-price-slider {
  padding: 10px; }
  .mob-price-slider .price-slider {
    padding-top: 10px;
    margin-bottom: 50px; }

/***
====================================================================
	 Order history page
====================================================================
 ***/
.order-list .product-image {
  width: 80px; }

.order-list .product-list-table td {
  vertical-align: middle; }

/***
====================================================================
	 Cart page
====================================================================
 ***/
.cart-table table.table-min-content.shop-table {
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%; }

.cart-table .table-min-content th {
  background: #f6f6f6 none repeat scroll 0 0;
  font-size: 14px;
  border-right: 1px solid #e7e4dd;
  font-weight: 500;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap; }

.cart-table .table-min-content td {
  border-bottom: 1px solid #e7e4dd;
  border-right: 1px solid #e7e4dd;
  border-top: 0 none;
  font-size: 1.142em;
  font-weight: 500;
  text-align: center;
  vertical-align: middle; }
  .cart-table .table-min-content td.product-remove {
    border-left: 1px solid #dddddd; }

.cart-table .shop-table td.product-remove > a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border-radius: 50%;
  color: #333333;
  display: inline-block;
  font-size: 20px;
  height: 30px;
  line-height: 26px;
  width: 30px; }
  .cart-table .shop-table td.product-remove > a:hover {
    color: #fff;
    background-color: #f58634; }
  .cart-table .shop-table td.product-remove > a .fa {
    line-height: 29px; }

.cart-table .shop-table td.c-product-thumbnail img {
  width: 100px; }

.cart-table .shop-table td.c-product-name a {
  color: #333333;
  font-size: 15px; }

.cart-table .shop-table td.c-product-name a:hover {
  color: #f58634; }

.cart-table .shop-table td.c-price {
  color: #f58634;
  font-weight: 700;
  font-size: 15px; }

.cart-table .shop-table td label {
  display: block;
  font-size: 15px;
  font-weight: normal;
  margin: 0 0 5px; }

.cart-table .shop-table td .c-input-text {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 2px solid #e7e4dd;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 15px;
  font-weight: normal;
  height: 42px;
  padding: 0 0 0 10px;
  text-align: center;
  width: 60px; }

.cart-table .shop-table td.product-add-to-cart .total-amount {
  color: #f58634;
  font-weight: 700; }

.cart-table .table-min-content .table-bottom td {
  border-bottom: medium none;
  border-right: 0 none; }

.cart-table .table-min-content .table-bottom td {
  padding: 10px 0; }

.coupon .input-text {
  border: 1px solid #d3ced2;
  box-sizing: border-box;
  line-height: 1;
  margin: 0 4px 0 0;
  outline: 0 none;
  padding: 6px 6px 5px;
  height: 42px; }

/*-- cart-totals --*/
.cart-collaterals .cart-totals .cart-totals-table {
  margin-bottom: 10px;
  width: 100%; }

.cart-collaterals .cart-totals {
  border: 1px solid #e7e4dd;
  padding: 30px;
  margin-bottom: 50px;
  background-color: #f6f6f6; }

.cart-collaterals .cart-totals > h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
  padding: 10px 0;
  text-transform: uppercase; }

.cart-total .cart-totals-table {
  border: medium none;
  float: right;
  margin: 0 0 10px;
  text-align: right;
  color: #4c4c4c; }

.cart-totals-table th {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  font-weight: 400;
  padding: 0;
  text-align: left;
  text-transform: capitalize;
  vertical-align: top; }

.cart-totals-table td {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
  border: medium none;
  font-size: 1.142rem;
  font-weight: 900;
  padding: 0 0 12px;
  text-align: right;
  vertical-align: top; }

.cart-totals-table .cart-subtotal .amount {
  font-weight: 900; }

.cart-collaterals .cart-totals-table tr.shipping {
  border-bottom: 1px solid #e7e4dd; }

.cart-totals-table .order-total th {
  font-size: 24px;
  font-weight: 500;
  padding: 10px 0; }

.cart-totals-table .order-total td {
  color: #f58634;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 10px 0; }

.cart-totals-table .shipping a, .lost-password {
  color: #ff5c00; }

.lost-password {
  margin: 12px 0 0 0; }

.cart-totals-table .shipping a:hover, .lost-password:hover {
  color: #f58634; }

.coupon-info .button-login, .login-Register-info .button-login {
  float: inherit; }

.checkout-button.button:hover,
.checkout-payment .button-continue-payment:hover,
.coupon-info .button-login:hover,
.login-Register-info .button-login:hover {
  background: #3398CC none repeat scroll 0 0;
  text-decoration: none; }

.table-hover tbody tr:hover {
  background-color: #f6f6f6; }

/***
====================================================================
	 Checkout page
====================================================================
 ***/
.coupon-accordion > h3 {
  background: #f7f6f7 none repeat scroll 0 0;
  border-top: 3px solid #f58634;
  color: #515151;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 2em;
  padding: 1em 2em 1em 3.5em; }

.coupon-accordion h3 span.coupon {
  color: #ff5c00;
  cursor: pointer; }

.coupon-accordion h3 span.coupon:hover {
  color: #C97178; }

.coupon-content, .login-Register-info {
  border: 1px solid #d3ced2;
  border-radius: 5px;
  margin: 2em 0;
  padding: 20px; }

.customer-login-register > h3 {
  line-height: 28px; }

.coupon-info p.coupon-input {
  margin: 0 0 10px; }

.coupon-info p.form-row-first {
  float: left;
  width: 47%; }

.coupon-info p.form-row-last {
  float: right;
  width: 47%; }

.coupon-info p.coupon-input > label {
  display: block;
  line-height: 2;
  margin-bottom: 5px; }

.coupon-input > input, .checkout-coupon > input, .single-form-row > input, .single-form-row textarea {
  border: 1px solid #e5e5e5;
  height: 42px;
  padding: 0 0 0 10px;
  width: 100%; }

.single-form-row textarea {
  height: 100px;
  padding: 10px;
  line-height: 1.5; }

.coupon-input .required {
  color: #ff0000; }

.coupon-info .button-login, .login-Register-info .button-login {
  margin: 5px 10px 0 0; }

.coupon-info label span, .login-Register-info label span {
  margin-left: 5px; }

.checkout-coupon {
  margin: 0; }

.checkout-coupon > input {
  width: auto; }

.checkout-coupon .button-apply-coupon {
  background: #333333 none repeat scroll 0 0;
  border: medium none;
  color: #ffffff;
  cursor: pointer;
  line-height: 42px;
  margin-left: 5px;
  padding: 0 25px; }

.checkout-coupon .button-apply-coupon:hover {
  background: #1a1a1a none repeat scroll 0 0; }

.nice-select {
  float: inherit; }

/*-- checkbox-form --*/
.checkout-area h3.shoping-checkboxt-title {
  border-bottom: 1px solid #e7e4dd;
  font-size: 1.4em;
  font-weight: 400;
  margin: 0 0 20px;
  padding-bottom: 10px;
  text-transform: none;
  width: 100%; }

.checkbox-form .single-form-row {
  margin: 0 0 30px; }

.single-form-row .required {
  border: 0 none;
  color: #ff0000;
  font-weight: 700;
  cursor: help; }

.single-form-row.checkout-area {
  margin-bottom: 5px; }

table.checkout-review-order-table {
  width: 100%; }

.checkout-review-order-table thead th, .checkout-review-order-table tbody td,
.checkout-review-order-table tfoot tr th, .checkout-review-order-table tfoot tr td {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border-bottom: 1px solid #dcd8ce;
  border-right: medium none;
  border-top: medium none;
  font-size: 14px;
  padding: 15px 0;
  text-align: center; }

.payment_methods {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 15px;
  background-color: #f6f6f6;
  border: 1px solid #e7e4dd; }
  .payment_methods p {
    margin: 0; }

/***
====================================================================
	 404 page
====================================================================
 ***/
.error404 {
  padding: 90px 0;
  text-align: center; }

.error404 h1 {
  color: #f58634;
  font-size: 200px;
  font-weight: 900;
  letter-spacing: 10px;
  line-height: 140px;
  margin: 0 0 60px; }

.error404 h2 {
  color: #4c4c4c;
  font-size: 35px;
  text-transform: uppercase; }

.error404 p {
  color: #333;
  font-size: 22px;
  font-weight: 300;
  margin: 20px auto 30px;
  text-align: center;
  width: 60%; }

.error404 .error-form .error-form-input {
  background: #f8f8f8 none repeat scroll 0 0;
  border: 1px solid #e9e9e9;
  border-radius: .3rem;
  height: 50px;
  margin: 0 auto;
  position: relative;
  width: 450px; }

.error404 .error-form .error-form-input .error-input-text {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  height: 100%;
  outline: medium none;
  padding-left: 20px;
  padding-right: 80px;
  width: 100%; }

.error404 .error-form .error-form-input .error-s-button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  color: #4f4f4f;
  font-size: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.error404 .error-form .error-form-input .error-s-button:hover {
  color: #f58634; }

.error404 a.home-bacck-button {
  background: #f58634 none repeat scroll 0 0;
  border-radius: 35px;
  box-shadow: none;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  margin-top: 30px;
  padding: 0 30px;
  text-shadow: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap; }

.error404 a.home-bacck-button:hover {
  background: #f58634; }

/*# sourceMappingURL=style.css.map */
