@charset "UTF-8";
a {
  outline: none !important;
}

:focus {
  -moz-outline-style: none !important;
}

:-moz-any-link:focus {
  outline: 1px dotted invert;
}

:-moz-any-link:focus {
  outline: none !important;
}

:-moz-any-link:focus {
  outline: none !important;
}

:focus {
  outline: none !important;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  outline: none !important;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=file] > input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  padding: 0;
  border: 1px dotted transparent;
}

a {
  -o-transition: 0.1s;
  -ms-transition: 0.1s;
  -moz-transition: 0.1s;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

@media (max-width: 769px) {
  .navbar-header {
    float: none;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-nav {
    float: none !important;
    margin: 7.5px -15px;
  }
  .navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-text {
    float: none;
    margin: 15px 0;
  }
  /* since 3.1.0 */
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  .collapsing {
    overflow: hidden !important;
  }
  .navbar .dropdown-menu {
    background-color: transparent;
    border: medium none;
    border-radius: 0 0 0 0;
    box-shadow: none;
    float: none;
    left: auto;
    margin: 0 15px;
    max-width: none;
    padding: 0;
    position: static;
    top: auto;
  }
}
.nopadding {
  padding: 0;
}

.nomargin {
  margin: 0;
}

.noborder {
  border: none;
  border-radius: 0;
}

.margin-auto {
  margin: 0 auto;
}

.cd-top.cd-fade-out,
.cd-top.cd-is-visible,
.no-touch .cd-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 0.5;
}

/***** END Back To Top *****/
.col-lg-15,
.col-md-15,
.col-sm-15,
.col-xs-15 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-15 {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left;
  }
}
/* USAGE
<div class="row">
  <div class="row-height">
    <div class="col-xs-2 col-xs-height col-xs-middle">
      <div class="inside"></div>
    </div>
    <div class="col-xs-4 col-lg-5 col-xs-height col-xs-middle">
      <div class="inside"></div>
    </div>
  </div>
</div>
*/
/* content styles */
.inside {
  margin-top: 15px;
  margin-bottom: 15px;
}

.inside-full-height {
  /*
  // if you want to give content full height give him height: 100%;
  // with content full height you can't apply margins to the content
  // content full height does not work in ie http://stackoverflow.com/questions/27384433/ie-display-table-cell-child-ignores-height-100
  */
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

/* columns of same height styles */
.row-height {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}

.col-height {
  display: table-cell;
  float: none;
  height: 100%;
}

.col-top {
  vertical-align: top;
}

.col-middle {
  vertical-align: middle;
}

.col-bottom {
  vertical-align: bottom;
}

@media (min-width: 480px) {
  .row-xs-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .col-xs-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-xs-top {
    vertical-align: top;
  }
  .col-xs-middle {
    vertical-align: middle;
  }
  .col-xs-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 768px) {
  .row-sm-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .col-sm-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-sm-top {
    vertical-align: top;
  }
  .col-sm-middle {
    vertical-align: middle;
  }
  .col-sm-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 992px) {
  .row-md-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .col-md-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-md-top {
    vertical-align: top;
  }
  .col-md-middle {
    vertical-align: middle;
  }
  .col-md-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 1200px) {
  .row-lg-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .col-lg-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-lg-top {
    vertical-align: top;
  }
  .col-lg-middle {
    vertical-align: middle;
  }
  .col-lg-bottom {
    vertical-align: bottom;
  }
}
.col-xs-1point5, .col-sm-1point5, .col-md-1point5, .col-lg-1point5,
.col-xs-2point5, .col-sm-2point5, .col-md-2point5, .col-lg-2point5,
.col-xs-3point5, .col-sm-3point5, .col-md-3point5, .col-lg-3point5,
.col-xs-4point5, .col-sm-4point5, .col-md-4point5, .col-lg-4point5,
.col-xs-5point5, .col-sm-5point5, .col-md-5point5, .col-lg-5point5,
.col-xs-6point5, .col-sm-6point5, .col-md-6point5, .col-lg-6point5,
.col-xs-7point5, .col-sm-7point5, .col-md-7point5, .col-lg-7point5,
.col-xs-8point5, .col-sm-8point5, .col-md-8point5, .col-lg-8point5,
.col-xs-9point5, .col-sm-9point5, .col-md-9point5, .col-lg-9point5,
.col-xs-10point5, .col-sm-10point5, .col-md-10point5, .col-lg-10point5,
.col-xs-11point5, .col-sm-11point5, .col-md-11point5, .col-lg-11point5,
.col-xs-point5, .col-sm-point5, .col-md-point5, .col-lg-point5 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 768px) {
  .col-xs-1point5,
  .col-xs-2point5,
  .col-xs-3point5,
  .col-xs-4point5,
  .col-xs-5point5,
  .col-xs-6point5,
  .col-xs-7point5,
  .col-xs-8point5,
  .col-xs-9point5,
  .col-xs-10point5,
  .col-xs-11point5,
  .col-xs-point5 {
    float: left;
  }
  .col-xs-point5 {
    width: 4.16666667%;
  }
  .col-xs-11point5 {
    width: 95.83333334%;
  }
  .col-xs-10point5 {
    width: 87.5%;
  }
  .col-xs-9point5 {
    width: 79.16666667%;
  }
  .col-xs-8point5 {
    width: 70.83333334%;
  }
  .col-xs-7point5 {
    width: 62.5%;
  }
  .col-xs-6point5 {
    width: 54.16666667%;
  }
  .col-xs-5point5 {
    width: 45.83333334%;
  }
  .col-xs-4point5 {
    width: 37.5%;
  }
  .col-xs-3point5 {
    width: 29.16666667%;
  }
  .col-xs-2point5 {
    width: 20.83333334%;
  }
  .col-xs-1point5 {
    width: 12.5%;
  }
  .col-xs-pull-point5 {
    right: 4.16666667%;
  }
  .col-xs-pull-11point5 {
    right: 95.83333334%;
  }
  .col-xs-pull-10point5 {
    right: 87.5%;
  }
  .col-xs-pull-9point5 {
    right: 79.16666667%;
  }
  .col-xs-pull-8point5 {
    right: 70.83333334%;
  }
  .col-xs-pull-7point5 {
    right: 62.5%;
  }
  .col-xs-pull-6point5 {
    right: 54.16666667%;
  }
  .col-xs-pull-5point5 {
    right: 45.83333334%;
  }
  .col-xs-pull-4point5 {
    right: 37.5%;
  }
  .col-xs-pull-3point5 {
    right: 29.16666667%;
  }
  .col-xs-pull-2point5 {
    right: 20.83333334%;
  }
  .col-xs-pull-1point5 {
    right: 12.5%;
  }
  .col-xs-push-point5 {
    left: 4.16666667%;
  }
  .col-xs-push-11point5 {
    left: 95.83333334%;
  }
  .col-xs-push-10point5 {
    left: 87.5%;
  }
  .col-xs-push-9point5 {
    left: 79.16666667%;
  }
  .col-xs-push-8point5 {
    left: 70.83333334%;
  }
  .col-xs-push-7point5 {
    left: 62.5%;
  }
  .col-xs-push-6point5 {
    left: 54.16666667%;
  }
  .col-xs-push-5point5 {
    left: 45.83333334%;
  }
  .col-xs-push-4point5 {
    left: 37.5%;
  }
  .col-xs-push-3point5 {
    left: 29.16666667%;
  }
  .col-xs-push-2point5 {
    left: 20.83333334%;
  }
  .col-xs-push-1point5 {
    left: 12.5%;
  }
  .col-xs-offset-point5 {
    margin-left: 4.16666667%;
  }
  .col-xs-offset-11point5 {
    margin-left: 95.83333334%;
  }
  .col-xs-offset-10point5 {
    margin-left: 87.5%;
  }
  .col-xs-offset-9point5 {
    margin-left: 79.16666667%;
  }
  .col-xs-offset-8point5 {
    margin-left: 70.83333334%;
  }
  .col-xs-offset-7point5 {
    margin-left: 62.5%;
  }
  .col-xs-offset-6point5 {
    margin-left: 54.16666667%;
  }
  .col-xs-offset-5point5 {
    margin-left: 45.83333334%;
  }
  .col-xs-offset-4point5 {
    margin-left: 37.5%;
  }
  .col-xs-offset-3point5 {
    margin-left: 29.16666667%;
  }
  .col-xs-offset-2point5 {
    margin-left: 20.83333334%;
  }
  .col-xs-offset-1point5 {
    margin-left: 12.5%;
  }
}
@media (min-width: 768px) {
  .col-sm-1point5,
  .col-sm-2point5,
  .col-sm-3point5,
  .col-sm-4point5,
  .col-sm-5point5,
  .col-sm-6point5,
  .col-sm-7point5,
  .col-sm-8point5,
  .col-sm-9point5,
  .col-sm-10point5,
  .col-sm-11point5,
  .col-sm-point5 {
    float: left;
  }
  .col-sm-point5 {
    width: 4.16666667%;
  }
  .col-sm-11point5 {
    width: 95.83333334%;
  }
  .col-sm-10point5 {
    width: 87.5%;
  }
  .col-sm-9point5 {
    width: 79.16666667%;
  }
  .col-sm-8point5 {
    width: 70.83333334%;
  }
  .col-sm-7point5 {
    width: 62.5%;
  }
  .col-sm-6point5 {
    width: 54.16666667%;
  }
  .col-sm-5point5 {
    width: 45.83333334%;
  }
  .col-sm-4point5 {
    width: 37.5%;
  }
  .col-sm-3point5 {
    width: 29.16666667%;
  }
  .col-sm-2point5 {
    width: 20.83333334%;
  }
  .col-sm-1point5 {
    width: 12.5%;
  }
  .col-sm-pull-point5 {
    right: 4.16666667%;
  }
  .col-sm-pull-11point5 {
    right: 95.83333334%;
  }
  .col-sm-pull-10point5 {
    right: 87.5%;
  }
  .col-sm-pull-9point5 {
    right: 79.16666667%;
  }
  .col-sm-pull-8point5 {
    right: 70.83333334%;
  }
  .col-sm-pull-7point5 {
    right: 62.5%;
  }
  .col-sm-pull-6point5 {
    right: 54.16666667%;
  }
  .col-sm-pull-5point5 {
    right: 45.83333334%;
  }
  .col-sm-pull-4point5 {
    right: 37.5%;
  }
  .col-sm-pull-3point5 {
    right: 29.16666667%;
  }
  .col-sm-pull-2point5 {
    right: 20.83333334%;
  }
  .col-sm-pull-1point5 {
    right: 12.5%;
  }
  .col-sm-push-point5 {
    left: 4.16666667%;
  }
  .col-sm-push-11point5 {
    left: 95.83333334%;
  }
  .col-sm-push-10point5 {
    left: 87.5%;
  }
  .col-sm-push-9point5 {
    left: 79.16666667%;
  }
  .col-sm-push-8point5 {
    left: 70.83333334%;
  }
  .col-sm-push-7point5 {
    left: 62.5%;
  }
  .col-sm-push-6point5 {
    left: 54.16666667%;
  }
  .col-sm-push-5point5 {
    left: 45.83333334%;
  }
  .col-sm-push-4point5 {
    left: 37.5%;
  }
  .col-sm-push-3point5 {
    left: 29.16666667%;
  }
  .col-sm-push-2point5 {
    left: 20.83333334%;
  }
  .col-sm-push-1point5 {
    left: 12.5%;
  }
  .col-sm-offset-point5 {
    margin-left: 4.16666667%;
  }
  .col-sm-offset-11point5 {
    margin-left: 95.83333334%;
  }
  .col-sm-offset-10point5 {
    margin-left: 87.5%;
  }
  .col-sm-offset-9point5 {
    margin-left: 79.16666667%;
  }
  .col-sm-offset-8point5 {
    margin-left: 70.83333334%;
  }
  .col-sm-offset-7point5 {
    margin-left: 62.5%;
  }
  .col-sm-offset-6point5 {
    margin-left: 54.16666667%;
  }
  .col-sm-offset-5point5 {
    margin-left: 45.83333334%;
  }
  .col-sm-offset-4point5 {
    margin-left: 37.5%;
  }
  .col-sm-offset-3point5 {
    margin-left: 29.16666667%;
  }
  .col-sm-offset-2point5 {
    margin-left: 20.83333334%;
  }
  .col-sm-offset-1point5 {
    margin-left: 12.5%;
  }
}
@media (min-width: 992px) {
  .col-md-1point5,
  .col-md-2point5,
  .col-md-3point5,
  .col-md-4point5,
  .col-md-5point5,
  .col-md-6point5,
  .col-md-7point5,
  .col-md-8point5,
  .col-md-9point5,
  .col-md-10point5,
  .col-md-11point5,
  .col-md-point5 {
    float: left;
  }
  .col-md-point5 {
    width: 4.16666667%;
  }
  .col-md-11point5 {
    width: 95.83333334%;
  }
  .col-md-10point5 {
    width: 87.5%;
  }
  .col-md-9point5 {
    width: 79.16666667%;
  }
  .col-md-8point5 {
    width: 70.83333334%;
  }
  .col-md-7point5 {
    width: 62.5%;
  }
  .col-md-6point5 {
    width: 54.16666667%;
  }
  .col-md-5point5 {
    width: 45.83333334%;
  }
  .col-md-4point5 {
    width: 37.5%;
  }
  .col-md-3point5 {
    width: 29.16666667%;
  }
  .col-md-2point5 {
    width: 20.83333334%;
  }
  .col-md-1point5 {
    width: 12.5%;
  }
  .col-md-pull-point5 {
    right: 4.16666667%;
  }
  .col-md-pull-11point5 {
    right: 95.83333334%;
  }
  .col-md-pull-10point5 {
    right: 87.5%;
  }
  .col-md-pull-9point5 {
    right: 79.16666667%;
  }
  .col-md-pull-8point5 {
    right: 70.83333334%;
  }
  .col-md-pull-7point5 {
    right: 62.5%;
  }
  .col-md-pull-6point5 {
    right: 54.16666667%;
  }
  .col-md-pull-5point5 {
    right: 45.83333334%;
  }
  .col-md-pull-4point5 {
    right: 37.5%;
  }
  .col-md-pull-3point5 {
    right: 29.16666667%;
  }
  .col-md-pull-2point5 {
    right: 20.83333334%;
  }
  .col-md-pull-1point5 {
    right: 12.5%;
  }
  .col-md-push-point5 {
    left: 4.16666667%;
  }
  .col-md-push-11point5 {
    left: 95.83333334%;
  }
  .col-md-push-10point5 {
    left: 87.5%;
  }
  .col-md-push-9point5 {
    left: 79.16666667%;
  }
  .col-md-push-8point5 {
    left: 70.83333334%;
  }
  .col-md-push-7point5 {
    left: 62.5%;
  }
  .col-md-push-6point5 {
    left: 54.16666667%;
  }
  .col-md-push-5point5 {
    left: 45.83333334%;
  }
  .col-md-push-4point5 {
    left: 37.5%;
  }
  .col-md-push-3point5 {
    left: 29.16666667%;
  }
  .col-md-push-2point5 {
    left: 20.83333334%;
  }
  .col-md-push-1point5 {
    left: 12.5%;
  }
  .col-md-offset-point5 {
    margin-left: 4.16666667%;
  }
  .col-md-offset-11point5 {
    margin-left: 95.83333334%;
  }
  .col-md-offset-10point5 {
    margin-left: 87.5%;
  }
  .col-md-offset-9point5 {
    margin-left: 79.16666667%;
  }
  .col-md-offset-8point5 {
    margin-left: 70.83333334%;
  }
  .col-md-offset-7point5 {
    margin-left: 62.5%;
  }
  .col-md-offset-6point5 {
    margin-left: 54.16666667%;
  }
  .col-md-offset-5point5 {
    margin-left: 45.83333334%;
  }
  .col-md-offset-4point5 {
    margin-left: 37.5%;
  }
  .col-md-offset-3point5 {
    margin-left: 29.16666667%;
  }
  .col-md-offset-2point5 {
    margin-left: 20.83333334%;
  }
  .col-md-offset-1point5 {
    margin-left: 12.5%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1point5,
  .col-lg-2point5,
  .col-lg-3point5,
  .col-lg-4point5,
  .col-lg-5point5,
  .col-lg-6point5,
  .col-lg-7point5,
  .col-lg-8point5,
  .col-lg-9point5,
  .col-lg-10point5,
  .col-lg-11point5,
  .col-lg-point5 {
    float: left;
  }
  .col-lg-point5 {
    width: 4.16666667%;
  }
  .col-lg-11point5 {
    width: 95.83333334%;
  }
  .col-lg-10point5 {
    width: 87.5%;
  }
  .col-lg-9point5 {
    width: 79.16666667%;
  }
  .col-lg-8point5 {
    width: 70.83333334%;
  }
  .col-lg-7point5 {
    width: 62.5%;
  }
  .col-lg-6point5 {
    width: 54.16666667%;
  }
  .col-lg-5point5 {
    width: 45.83333334%;
  }
  .col-lg-4point5 {
    width: 37.5%;
  }
  .col-lg-3point5 {
    width: 29.16666667%;
  }
  .col-lg-2point5 {
    width: 20.83333334%;
  }
  .col-lg-1point5 {
    width: 12.5%;
  }
  .col-lg-pull-point5 {
    right: 4.16666667%;
  }
  .col-lg-pull-11point5 {
    right: 95.83333334%;
  }
  .col-lg-pull-10point5 {
    right: 87.5%;
  }
  .col-lg-pull-9point5 {
    right: 79.16666667%;
  }
  .col-lg-pull-8point5 {
    right: 70.83333334%;
  }
  .col-lg-pull-7point5 {
    right: 62.5%;
  }
  .col-lg-pull-6point5 {
    right: 54.16666667%;
  }
  .col-lg-pull-5point5 {
    right: 45.83333334%;
  }
  .col-lg-pull-4point5 {
    right: 37.5%;
  }
  .col-lg-pull-3point5 {
    right: 29.16666667%;
  }
  .col-lg-pull-2point5 {
    right: 20.83333334%;
  }
  .col-lg-pull-1point5 {
    right: 12.5%;
  }
  .col-lg-push-point5 {
    left: 4.16666667%;
  }
  .col-lg-push-11point5 {
    left: 95.83333334%;
  }
  .col-lg-push-10point5 {
    left: 87.5%;
  }
  .col-lg-push-9point5 {
    left: 79.16666667%;
  }
  .col-lg-push-8point5 {
    left: 70.83333334%;
  }
  .col-lg-push-7point5 {
    left: 62.5%;
  }
  .col-lg-push-6point5 {
    left: 54.16666667%;
  }
  .col-lg-push-5point5 {
    left: 45.83333334%;
  }
  .col-lg-push-4point5 {
    left: 37.5%;
  }
  .col-lg-push-3point5 {
    left: 29.16666667%;
  }
  .col-lg-push-2point5 {
    left: 20.83333334%;
  }
  .col-lg-push-1point5 {
    left: 12.5%;
  }
  .col-lg-offset-point5 {
    margin-left: 4.16666667%;
  }
  .col-lg-offset-11point5 {
    margin-left: 95.83333334%;
  }
  .col-lg-offset-10point5 {
    margin-left: 87.5%;
  }
  .col-lg-offset-9point5 {
    margin-left: 79.16666667%;
  }
  .col-lg-offset-8point5 {
    margin-left: 70.83333334%;
  }
  .col-lg-offset-7point5 {
    margin-left: 62.5%;
  }
  .col-lg-offset-6point5 {
    margin-left: 54.16666667%;
  }
  .col-lg-offset-5point5 {
    margin-left: 45.83333334%;
  }
  .col-lg-offset-4point5 {
    margin-left: 37.5%;
  }
  .col-lg-offset-3point5 {
    margin-left: 29.16666667%;
  }
  .col-lg-offset-2point5 {
    margin-left: 20.83333334%;
  }
  .col-lg-offset-1point5 {
    margin-left: 12.5%;
  }
}
/***** Modal Efects *****/
.modal-backdrop {
  -webkit-backface-visibility: hidden;
}

.modal-backdrop.zoom,
.modal-backdrop.newspaper,
.modal-backdrop.move-horizontal,
.modal-backdrop.move-from-top,
.modal-backdrop.unfold-3d,
.modal-backdrop.zoom-out {
  opacity: 0;
  transition: opacity 0.1s ease;
}

.modal-backdrop.in {
  opacity: 0.5;
}

.modal-backdrop.unfold-3d {
  perspective: 500;
}

.modal.zoom .modal-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transform: scale(0.5);
}

.modal.in .modal-dialog {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.42 ease-in-out;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}

.modal.fade.newspaper .modal-dialog,
.modal.newspaper .modal-dialog {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  transform: scale(0) rotate(500deg);
}

.modal.fade.newspaper.in .modal-dialog,
.modal.in .modal-dialog {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.modal.move-horizontal .modal-dialog {
  opacity: 0;
  transition: all 0.5s;
  transform: translateX(-50px);
}

.modal.in .modal-dialog {
  opacity: 1;
  transform: translateX(0);
}

.modal.move-from-top .modal-dialog {
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(-100px);
}

.modal.in .modal-dialog {
  opacity: 1;
  transform: translateY(0);
}

.modal.unfold-3d .modal-dialog {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform-style: preserve-3d;
  transform: rotateY(-60deg);
}

.modal.in .modal-dialog {
  opacity: 1;
  transform: rotateY(0deg);
}

.modal.fade.zoom-out .modal-dialog,
.modal.zoom-out .modal-dialog {
  opacity: 0;
  transition: all 0.5s;
  transform: scale(1.3);
}

.modal.fade.zoom-out.in .modal-dialog,
.modal.in .modal-dialog {
  opacity: 1;
  transform: scale(1);
}

.csstransforms3d .modal.unfold-3d .modal-dialog {
  transform: none;
  transform-origin: 50% 100%;
  transform: scale(0.7) rotate3d(-1, 1, 0, -60deg);
}

.csstransforms3d .modal.in .modal-dialog {
  transform: scale(1) rotate3d(-1, 1, 0, 0deg);
}

#head-top {
  background: #444444;
  padding: 10px 0;
}
#head-top a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #fff;
}
#head-top a:hover {
  text-decoration: none;
}
#head-top #profile-desktop .dropdown-menu {
  background: #67cd69;
  border-radius: 0;
  top: -4px !important;
  border: none;
}
#head-top #profile-desktop .dropdown-item {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #fff;
  padding-left: 9px;
}
#head-top #profile-desktop .dropdown-item:hover {
  background: none;
}
#head-top #profile-desktop .dropdown-item:focus {
  background: none;
}
#head-top #profile-desktop .dropdown-item:active {
  background: none;
}
#head-top #profile-desktop .dropdown-item .fa {
  margin-right: 3px;
}
#head-top .my-profile {
  background: #67cd69;
  padding: 13px;
}
#head-top .socials {
  margin-right: 20px;
}
@media (max-width: 767px) {
  #head-top .socials {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
#head-top .socials .fa-circle {
  color: #fafafa;
}
#head-top .socials .fa-stack-1x {
  color: #444444;
}
#head-top .socials .fa-stack {
  font-size: 12px;
}
#head-top .fa-envelope {
  margin-right: 3px;
  position: relative;
  top: 1px;
}
#head-top .fa-phone {
  margin-right: 3px;
  margin-left: 30px;
  position: relative;
  top: 1px;
}
@media (max-width: 768px) {
  #head-top .fa-phone {
    margin-left: 0;
  }
}
#head-top .register {
  border-right: 1px solid #fff;
  padding-right: 9px;
  margin-right: 9px;
}
#head-top .login {
  color: #67cd69;
}
#head-top .cart-wrapper {
  margin-left: 50px;
}
@media (max-width: 767px) {
  #head-top .cart-wrapper {
    margin: 0;
    margin-bottom: 7px;
    margin-top: 18px;
  }
}
#head-top .cart-wrapper .price {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  border-right: 1px solid #fff;
  padding-right: 9px;
  margin-right: 9px;
  display: inline-block;
}
#head-top .cart-wrapper .fa-shopping-cart {
  color: #fff;
  font-size: 19px;
}
#head-top .cart-wrapper .shopping-cart {
  position: relative;
}
#head-top .cart-wrapper .shopping-cart .counter {
  position: absolute;
  border-radius: 50%;
  background: #e74246;
  top: -8px;
  right: -9px;
  font-size: 11px;
  padding: 1px 6px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

#navigation-menu {
  padding: 17px 0;
  background: #f8f8f8;
}
#navigation-menu .form-control {
  border: 1px solid #d8d8d8;
  border-right: none;
  margin-right: 0 !important;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}
#navigation-menu .form-control::placeholder {
  color: #dedede;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}
#navigation-menu .btn-search {
  border-radius: 0;
  background: #67cd69;
  font-size: 10px;
  color: #Fff;
}
#navigation-menu .btn-search:hover {
  background-color: rgb(64.6237623762, 192.3762376238, 67.1287128713);
}
#navigation-menu .navbar-brand {
  padding: none !important;
}
@media (max-width: 767px) {
  #navigation-menu .navbar-brand {
    padding-left: 8px;
  }
}
#navigation-menu ul li a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #939393;
}
#navigation-menu ul li a:hover {
  color: #67cd69;
}
#navigation-menu .navbar-toggler {
  margin-top: 11px;
  margin-right: 12px;
}
#navigation-menu .navbar-toggler:focus {
  outline: none;
  border: none;
}
#navigation-menu .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(103,205,105, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
@media (max-width: 767px) {
  #navigation-menu form {
    margin-top: 18px;
  }
}
@media (max-width: 767px) {
  #navigation-menu .navbar-collapse {
    padding-left: 8px;
    padding-right: 8px;
  }
}

#mobile-menu .active {
  color: #67cd69 !important;
}
#mobile-menu .cart-wrapper {
  margin-left: 50px;
}
@media (max-width: 767px) {
  #mobile-menu .cart-wrapper {
    margin: 0;
    margin-bottom: 7px;
    margin-top: 18px;
  }
}
#mobile-menu .cart-wrapper .price {
  color: #000;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  border-right: 1px solid #000;
  padding-right: 9px;
  margin-right: 9px;
  display: inline-block;
}
#mobile-menu .cart-wrapper .fa-shopping-cart {
  color: #000;
  font-size: 19px;
}
#mobile-menu .cart-wrapper .shopping-cart {
  position: relative;
}
#mobile-menu .cart-wrapper .shopping-cart .counter {
  position: absolute;
  border-radius: 50%;
  background: #e74246;
  top: -8px;
  color: #fff;
  right: -9px;
  font-size: 11px;
  padding: 1px 6px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}
#mobile-menu a {
  color: inherit;
}
#mobile-menu a:hover {
  text-decoration: none;
  color: none !important !important;
}
#mobile-menu ul li a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #939393;
}
#mobile-menu .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(103,205,105, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
#mobile-menu .navbar-toggler {
  padding-right: 0;
  margin-top: 7px;
}
#mobile-menu .navbar-toggler:focus {
  outline: none;
  border: none;
}
#mobile-menu .profile-box {
  top: 13px;
  right: 102px;
  font-size: 18px;
}
#mobile-menu .dropdown-item {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  padding-left: 0;
}
#mobile-menu .dropdown-item:hover {
  background: none;
  color: #67cd69;
}
#mobile-menu #profile-mobile .dropdown-menu {
  width: 100% !important;
}
#mobile-menu #profile-mobile .dropdown-item {
  font-size: 14px;
}

.toggle-search {
  color: #444444;
  margin-top: 13px;
  margin-right: 10px;
}

.search {
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  width: 91%;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  -o-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}
.search .form-control {
  border: 1px solid #d8d8d8;
  border-right: none;
  margin-right: 0 !important;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}
.search .form-control::placeholder {
  color: #dedede;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}
.search .btn-search {
  border-radius: 0;
  background: #67cd69;
  font-size: 10px;
  color: #Fff;
}

.open {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
  visibility: visible;
  z-index: 900;
}

.fixed-top {
  z-index: 800;
  background: #fff;
  -webkit-box-shadow: 0px 1px 7px 0px rgba(50, 50, 50, 0.2);
  -moz-box-shadow: 0px 1px 7px 0px rgba(50, 50, 50, 0.2);
  box-shadow: 0px 1px 7px 0px rgba(50, 50, 50, 0.2);
}

.user-login {
  color: #67cd69 !important;
}

.user-logout {
  color: #000 !important;
}

@media (max-width: 767px) {
  #my-menu {
    display: none !important;
  }
}
@media (min-width: 767px) {
  #mm-my-menu {
    display: none !important;
  }
}
#mm-my-menu {
  z-index: 999;
}
#mm-my-menu ul li a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

#quick-cart-mobile .products-box, #quick-cart-desktop .products-box {
  max-height: 320px;
  overflow-y: scroll;
}
#quick-cart-mobile .dropdown-menu, #quick-cart-desktop .dropdown-menu {
  padding: 7px;
  width: 300px;
  border-radius: 0;
  left: auto !important;
  right: 0px !important;
  top: 35px !important;
  transform: none !important;
}
@media (max-width: 991px) {
  #quick-cart-mobile .dropdown-menu, #quick-cart-desktop .dropdown-menu {
    right: 12px;
  }
}
#quick-cart-mobile .cart-title, #quick-cart-desktop .cart-title {
  font-size: 20px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #939393;
  margin-bottom: 23px;
}
#quick-cart-mobile .product-wrapper, #quick-cart-desktop .product-wrapper {
  position: relative;
  margin-bottom: 10px;
}
#quick-cart-mobile .product-wrapper img, #quick-cart-desktop .product-wrapper img {
  margin-right: 7px;
  display: inline-block !important;
  float: left;
}
#quick-cart-mobile .product-wrapper .product-name, #quick-cart-desktop .product-wrapper .product-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
  font-size: 13px;
}
#quick-cart-mobile .product-wrapper .product-details, #quick-cart-desktop .product-wrapper .product-details {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #939393;
  font-size: 12px;
}
#quick-cart-mobile .product-wrapper .list-remove, #quick-cart-desktop .product-wrapper .list-remove {
  bottom: 7px;
  left: 90px;
  position: absolute;
}
#quick-cart-mobile .product-wrapper .list-remove .fa, #quick-cart-desktop .product-wrapper .list-remove .fa {
  font-size: 14px;
  color: #e1e1e1;
}
#quick-cart-mobile .total-price, #quick-cart-desktop .total-price {
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  display: block;
  font-weight: 400;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 9px 0;
  margin-top: 24px;
  font-size: 17px;
}
#quick-cart-mobile .total-price span, #quick-cart-desktop .total-price span {
  color: #67cd69;
}
#quick-cart-mobile .divider, #quick-cart-desktop .divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-top: 10px;
}
#quick-cart-mobile .btn-order, #quick-cart-desktop .btn-order {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #fff;
  background: #67cd69;
  border-radius: 0;
  line-height: 2;
  padding: 0;
  margin-top: 20px;
}

#mobile-menu .dropdown-menu {
  padding: 7px;
  width: 290px;
  border-radius: 0;
  left: -71px !important;
  right: 0px !important;
  top: 35px !important;
  transform: none !important;
}
@media (max-width: 991px) {
  #mobile-menu .dropdown-menu {
    right: 12px;
  }
}

#home-slider {
  padding: 30px 0;
  background: url("/images/bg-slider.jpg") no-repeat center;
}
#home-slider .swiper-slide {
  margin: 0 auto;
}
#home-slider h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #818181;
  font-size: 28px;
}
@media (max-width: 768px) {
  #home-slider h1 {
    font-size: 26px;
  }
}
#home-slider p {
  width: 450px;
  margin: 0 auto;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #818181;
  margin-top: 10px;
}
@media (max-width: 767px) {
  #home-slider p {
    width: 100%;
    font-size: 15px;
  }
}
#home-slider .navbar-collapse {
  margin-top: 7px;
}
#home-slider .btn-more {
  background: #e74246;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  border-radius: 0;
  color: #fff;
  padding: 3px 12px;
  display: inline-block;
  margin-top: 10px;
}
#home-slider .btn-more:hover {
  background: rgb(218.2816901408, 27.7183098592, 32.338028169);
}

#slider-products .swiper-slide {
  position: relative;
  margin-bottom: 24px;
}
#slider-products .swiper-slide a {
  z-index: 700;
}
#slider-products .swiper-slide .prod-name {
  display: block;
  min-height: 35px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 0;
}
#slider-products .swiper-button-next {
  background: url("/images/products_slider/arrow-r.png");
  position: absolute;
  top: 42%;
  width: 48px;
  height: 47px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  right: 31px;
  background-repeat: no-repeat;
  border-radius: 12px;
}
@media (max-width: 767px) {
  #slider-products .swiper-button-next {
    background: url("/images/arrow-r-small.png");
    position: absolute;
    top: 42%;
    width: 24px;
    height: 30px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    opacity: 1;
    right: 31px;
    background-repeat: no-repeat;
    border-radius: 0;
  }
}
#slider-products .swiper-button-prev {
  background: url("/images/products_slider/arrow-l.png");
  position: absolute;
  top: 42%;
  width: 48px;
  height: 47px;
  margin-top: -20px;
  border-radius: 12px;
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  left: 31px;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  #slider-products .swiper-button-prev {
    background: url("/images/arrow-l-small.png");
    position: absolute;
    border-radius: 0;
    top: 42%;
    width: 24px;
    height: 30px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    opacity: 1;
    left: 31px;
    background-repeat: no-repeat;
  }
}
#slider-products .swiper-pagination {
  position: relative;
  top: -8px;
}
#slider-products .swiper-pagination .swiper-pagination-bullet {
  background: #ffdc38;
  width: 16px;
  height: 16px;
  opacity: 0.5;
}
#slider-products .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}
#slider-products .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffdc38;
  opacity: 1;
}
#slider-products .grid {
  margin: 0 auto;
  list-style: none;
}
#slider-products .grid figure {
  margin: 0;
  position: relative;
}
#slider-products .grid figure:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transition: all 0.5s;
}
#slider-products .grid figure img {
  max-width: 100%;
  display: block;
  position: relative;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
#slider-products .grid figcaption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 19px;
  background: #444444;
  color: #fff;
}
#slider-products .grid figcaption a {
  text-align: center;
  padding: 5px 10px;
  border-radius: 0;
  display: inline-block;
  background: #ffdc38;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}
#slider-products .grid figcaption a:hover {
  text-decoration: none;
  background: rgb(249.8, 205.8653266332, 0);
}
#slider-products .cs-style-3 figure {
  overflow: hidden;
}
#slider-products .cs-style-3 figcaption {
  height: 100px;
  width: 100%;
  top: auto;
  bottom: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s, opacity 0.1s 0.3s;
}
#slider-products .cs-style-3 figure:hover figcaption,
#slider-products .cs-style-3 figure.cs-hover figcaption {
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.4s, opacity 0.1s;
}
#slider-products .cs-style-3 figcaption a {
  position: absolute;
  bottom: 14px;
  right: 15px;
}
#slider-products .product-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 19px;
}

.header-internal {
  margin-top: 0;
  padding: 1px 0;
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 13px;
}
.header-internal h1 {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #939393;
  font-size: 21px;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .header-internal h1 {
    font-size: 17px;
  }
}
.header-internal .breadcrumb {
  background: none;
  margin-top: 0px;
  margin-bottom: 0;
  padding: 0.75rem 0;
}
@media (max-width: 767px) {
  .header-internal .breadcrumb {
    padding: 0.75rem 13px;
  }
}
.header-internal .breadcrumb a {
  color: #939393;
}
.header-internal .breadcrumb li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #939393;
  font-size: 10px;
}
.header-internal .breadcrumb li::before {
  content: "›";
  color: #67cd69;
  font-size: 15px;
}
.header-internal .breadcrumb li:first-child::before {
  content: "";
}

#inner-page {
  margin-top: 20px;
}
#inner-page h1 {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #939393;
  font-size: 21px;
}
@media (max-width: 767px) {
  #inner-page h1 {
    font-size: 17px;
  }
}
#inner-page p, #inner-page ul, #inner-page ol {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
}
#inner-page .categories {
  background: #f0f1f3;
  padding: 10px;
}
#inner-page .categories h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 24px;
  background: #e74246;
  padding: 3px;
  padding-left: 10px;
}

#categories, #home-products, #inner-page {
  margin-top: 20px;
}
#categories .filters, #home-products .filters, #inner-page .filters {
  background: #f0f1f3;
  padding: 10px;
  /* The radio-wrapper */
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
}
#categories .filters form, #home-products .filters form, #inner-page .filters form {
  padding: 0 15px;
}
#categories .filters .title, #home-products .filters .title, #inner-page .filters .title {
  display: block;
  font-size: 20px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
  margin-bottom: 7px;
  margin-top: 14px;
  text-align: center;
}
#categories .filters .radio-wrapper, #home-products .filters .radio-wrapper, #inner-page .filters .radio-wrapper {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #939393;
}
#categories .filters .radio-wrapper input, #home-products .filters .radio-wrapper input, #inner-page .filters .radio-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#categories .filters .checkmark, #home-products .filters .checkmark, #inner-page .filters .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #dedede;
  border-radius: 50%;
}
#categories .filters .radio-wrapper:hover input ~ .checkmark, #home-products .filters .radio-wrapper:hover input ~ .checkmark, #inner-page .filters .radio-wrapper:hover input ~ .checkmark {
  background-color: #ccc;
}
#categories .filters .radio-wrapper input:checked ~ .checkmark, #home-products .filters .radio-wrapper input:checked ~ .checkmark, #inner-page .filters .radio-wrapper input:checked ~ .checkmark {
  background-color: #e74246;
}
#categories .filters .checkmark:after, #home-products .filters .checkmark:after, #inner-page .filters .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#categories .filters .radio-wrapper input:checked ~ .checkmark:after, #home-products .filters .radio-wrapper input:checked ~ .checkmark:after, #inner-page .filters .radio-wrapper input:checked ~ .checkmark:after {
  display: block;
}
#categories .filters .filter-title, #home-products .filters .filter-title, #inner-page .filters .filter-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 15px;
  background: #e74246;
  padding: 3px;
  padding-left: 10px;
}
#categories .filters .filter-title a, #home-products .filters .filter-title a, #inner-page .filters .filter-title a {
  color: #fff;
}
#categories .filters .filter-title a:hover, #home-products .filters .filter-title a:hover, #inner-page .filters .filter-title a:hover {
  text-decoration: none;
}
#categories .alert, #home-products .alert, #inner-page .alert {
  border-radius: 0px;
}

#gmap {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  #contacts .row {
    display: inherit;
  }
}
#contacts .title {
  font-family: "Source Sans Pro", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #333333 !important;
  font-size: 18px;
}
#contacts .contact-form .error {
  color: #E53935;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
}
#contacts .divider {
  width: 100%;
  height: 1px;
  background: #eeeeee;
  margin: 10px 0;
}
#contacts p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  color: #939393;
}
#contacts .form-control {
  border-radius: 0;
  color: #777777;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}
#contacts label {
  color: #777777;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 0px;
}
#contacts input:focus, #contacts textarea:focus, #contacts select:focus {
  outline: none !important;
  box-shadow: none;
  border: 1px solid rgb(187.25, 187.25, 187.25) !important;
}
#contacts textarea {
  resize: none;
}
#contacts .contacts-btn {
  background: #6c6c6c;
  color: #Fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  border-radius: 0;
  padding: 5px 22px;
  margin-top: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#contacts .contact-information span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
  font-size: 16px;
}
#contacts .contact-information .socials .facebook {
  color: #3b5998;
}
#contacts .contact-information .socials .twitter {
  color: #0084b4;
}
#contacts .contact-information .socials .gplus {
  color: #d34836;
}
#contacts .contact-information .socials a:hover {
  text-decoration: none;
}
#contacts .alert {
  border-radius: 0px;
}

.pagination {
  color: #000;
  border-radius: 0 !important;
}
.pagination .active {
  background: #e74246 !important;
}
.pagination .page-link {
  font-size: 12px !important;
  background: none !important;
  border-color: none !important;
  border-radius: 0 !important;
  color: #939393 !important;
}
.pagination .page-link:hover {
  background: #e74246 !important;
  color: #fff !important;
}
.pagination .page-item.active .page-link {
  background: none !important;
  border: none !important;
  border: 1px solid #939393;
  border-radius: 0 !important;
  color: #fff !important;
}

#fpw h1 {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #939393;
  font-size: 21px;
  margin-top: 11px;
}
@media (max-width: 767px) {
  #fpw h1 {
    font-size: 17px;
  }
}
#fpw .btn-fpw {
  background: #67cd69;
  border-radius: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
#fpw label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
}
#fpw .form-control {
  border-radius: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  border: 1px solid #ced4da;
}
#fpw .form-control:focus {
  border: 1px solid #ced4da;
  outline: none;
  box-shadow: none;
}

#blog h1 {
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #595858;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  #blog h1 {
    font-size: 35px;
  }
}
#blog .divider {
  margin-bottom: 40px;
  margin-top: 10px;
  width: 57px;
}
#blog .blog-img {
  position: relative;
}
#blog .main-wrapper {
  padding: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  #blog .main-wrapper {
    padding: 1px 10px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  #blog .main-wrapper {
    padding: 1px 16px;
  }
}
#blog .main-wrapper .wrapper-1 {
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
}
#blog .main-wrapper .wrapper-1 .wrapper-2 {
  border: 2px solid #000;
  padding: 50px 23px;
  width: 250px;
}
@media (max-width: 1199px) {
  #blog .main-wrapper .wrapper-1 .wrapper-2 {
    padding: 23px;
  }
}
@media (max-width: 991px) {
  #blog .main-wrapper .wrapper-1 .wrapper-2 {
    width: 100%;
    padding: 10px 4px;
  }
}
#blog .main-wrapper .wrapper-1 .blog-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 19px;
  display: block;
  height: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  #blog .main-wrapper .wrapper-1 .blog-title {
    font-size: 14px;
  }
}
#blog .main-wrapper .wrapper-1 .btn-read {
  background: #e74246;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  padding: 4px 20px;
  border-radius: 0;
  font-size: 12px;
  display: block;
  margin: 0 auto;
  margin-top: 14px;
}
@media (max-width: 767px) {
  #blog .main-wrapper .wrapper-1 .btn-read {
    font-size: 12px;
    width: 116px;
  }
}
#blog .swiper-button-next {
  background: url("/images/blog-arrow-r.png");
  position: absolute;
  top: 50%;
  width: 20px;
  height: 42px;
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  right: 0;
  background-repeat: no-repeat;
}
#blog .swiper-button-prev {
  background: url("/images/blog-arrow-l.png");
  position: absolute;
  top: 50%;
  width: 20px;
  height: 42px;
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  left: 1px;
  background-repeat: no-repeat;
}

#previous-blogs {
  background: #f2f5f7;
  margin-top: 50px;
  padding: 20px 0;
}
#previous-blogs .divider {
  width: 140px;
  height: 2px;
  background: #67cd69;
  margin: 0 auto;
  position: relative;
  top: 24px;
}
@media (max-width: 767px) {
  #previous-blogs .divider {
    margin-bottom: 0;
  }
}
#previous-blogs h1 {
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #595858;
  margin-bottom: 2px;
  position: relative;
  top: 24px;
}
@media (max-width: 767px) {
  #previous-blogs h1 {
    font-size: 35px;
  }
}
#previous-blogs .swiper-wrapper {
  margin-top: 90px;
}
#previous-blogs .box-wrapper {
  -webkit-box-shadow: 5px 3px 23px 0px rgba(0, 0, 0, 0.42);
  -moz-box-shadow: 5px 3px 23px 0px rgba(0, 0, 0, 0.42);
  box-shadow: 5px 3px 23px 0px rgba(0, 0, 0, 0.42);
  margin: 0 auto;
  padding-bottom: 20px;
  margin-bottom: 30px;
  width: 350px;
}
@media (max-width: 991px) {
  #previous-blogs .box-wrapper {
    width: 330px;
  }
}
@media (max-width: 767px) {
  #previous-blogs .box-wrapper {
    width: 270px;
    float: none !important;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
#previous-blogs .box-wrapper .title-box {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  display: block;
  font-size: 17px;
  margin-top: 6px;
  height: 42px;
  line-height: 24px;
}
#previous-blogs .box-wrapper .read-more {
  background: #e74246;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  padding: 2px 0;
  display: block;
  width: 160px;
  margin: 0 auto;
}
#previous-blogs .box-wrapper p, #previous-blogs .box-wrapper ul, #previous-blogs .box-wrapper ol {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 10px;
}
#previous-blogs .box-wrapper p {
  height: 60px;
}
#previous-blogs .box-wrapper .text-wrapper {
  padding: 0 10px;
}
#previous-blogs .arrows {
  width: 68px;
  margin: 0 auto;
}
#previous-blogs .arrows .swiper-button-next {
  background: url("/images/arrow-r.png");
  position: relative;
  top: 68px;
  width: 32px;
  height: 32px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  right: -35px;
  background-repeat: no-repeat;
}
#previous-blogs .arrows .swiper-button-prev {
  background: url("/images/arrow-l.png");
  position: relative;
  top: 78px;
  width: 32px;
  height: 32px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  left: 0px;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  #blog-detail .row {
    padding-left: 15px !important;
    padding-right: 15px;
  }
}
#blog-detail .blog-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 25px;
}
@media (max-width: 767px) {
  #blog-detail .blog-title {
    font-size: 19px;
  }
}
#blog-detail p, #blog-detail ul, #blog-detail ol {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #777777;
  font-size: 15px;
}
#blog-detail .blog-img {
  margin-right: 25px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #blog-detail .blog-img {
    margin-right: 0;
  }
}
#blog-detail .date-container {
  position: absolute;
  left: 8px;
  top: 8px;
  background: #67cd69;
  color: #fff;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
#blog-detail .date-container .date {
  padding: 6px 12px;
  display: block;
}
#blog-detail .date-container .month {
  background: #313131;
  display: block;
  font-size: 11px;
  padding: 7px;
  text-align: center;
  text-transform: uppercase;
}
#blog-detail .at-icon-wrapper {
  margin: 0 !important;
}
#blog-detail .detail {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #999999;
  display: inline-block;
  margin-right: 10px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 11px;
}
@media (max-width: 767px) {
  #blog-detail .detail {
    font-size: 10px;
  }
}
#blog-detail .share {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
  border-bottom: 1px solid #ffdc38;
}
#blog-detail .comments {
  margin-top: 12px;
}

.popular-posts img {
  margin-right: 15px;
}
.popular-posts .title {
  margin-bottom: 0;
  color: #000;
  font-size: 16px;
}
.popular-posts .divider {
  height: 2px;
  width: 40px;
  background: #67cd69;
  margin: 0;
  margin-bottom: 20px;
}
.popular-posts a {
  margin-bottom: 20px;
  display: inline-block;
}
@media (max-width: 767px) {
  .popular-posts a {
    margin-bottom: 13px;
  }
}
.popular-posts a:hover {
  text-decoration: none;
}
.popular-posts i {
  background: #67cd69;
  color: #fff;
  margin-right: 13px;
  padding: 15px;
}
.popular-posts span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  display: inline-block;
}
.popular-posts .date-posts {
  font-size: 10px;
  margin-top: 5px;
  color: #999999;
  position: relative;
  left: 0px;
  bottom: 16px;
  top: 0;
}
.popular-posts .blog-title-popular {
  display: block !important;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #ababab;
  font-size: 12px;
  height: 24px;
}
.popular-posts .blog-box {
  padding: 5px;
  border: 1px solid #efefef;
  border-bottom: 2px solid #67cd69;
}

#login-register .box-wrapper {
  border: 1px solid #ced4da;
  margin: 30px 0;
  padding: 20px;
}
@media (max-width: 767px) {
  #login-register .box-wrapper {
    padding: 14px;
  }
}
#login-register .box-wrapper h3 {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 27px;
}
#login-register .box-wrapper .form-group {
  margin-bottom: 5px;
}
#login-register .box-wrapper .form-control {
  border-radius: 0;
  outline: none;
  border: 1px solid #ced4da;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #605e5e;
}
#login-register .box-wrapper .form-control:focus {
  border: 1px solid #ced4da;
  outline: none;
  box-shadow: none;
}
#login-register .box-wrapper label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #605e5e;
  font-size: 14px;
}
#login-register .box-wrapper .btn-register {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  background: #e74246;
  color: #Fff;
  font-size: 17px;
  border-radius: 0;
}
#login-register .box-wrapper .btn-register:hover {
  background-color: rgb(218.2816901408, 27.7183098592, 32.338028169);
}
#login-register .box-wrapper .btn-login {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  background: #67cd69;
  color: #Fff;
  font-size: 17px;
  border-radius: 0;
}
#login-register .box-wrapper .btn-login:hover {
  background-color: rgb(64.6237623762, 192.3762376238, 67.1287128713);
}
#login-register .box-wrapper .req {
  color: #e74246;
}
#login-register .box-wrapper .error {
  color: #e74246;
  margin-bottom: 0px;
}
#login-register .box-wrapper .terms-check label {
  font-size: 14px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}
@media (max-width: 767px) {
  #login-register .box-wrapper .terms-check label {
    font-size: 13px;
    top: 4px;
    margin-top: 10px;
  }
}

.forgot-password {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
  position: relative;
  top: 21px;
}
.forgot-password:hover {
  text-decoration: none;
  color: #67cd69;
}

#profile h1 {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #939393;
  font-size: 21px;
  margin-top: 11px;
}
@media (max-width: 767px) {
  #profile h1 {
    font-size: 17px;
  }
}
#profile .btn-profile {
  background: #67cd69;
  border-radius: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
#profile label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}
#profile .form-control {
  border-radius: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  border: 1px solid #ced4da;
}
#profile .form-control:focus {
  border: 1px solid #ced4da;
  outline: none;
  box-shadow: none;
}
#profile .req {
  color: #e74246;
}
#profile .error {
  color: #e74246;
  margin-bottom: 0px;
  font-size: 13px;
}
#profile .btn-delete-profile {
  background: #e74246;
  color: #fff;
  text-decoration: none;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  border-radius: 0;
}

.profile-btn-yes {
  background: #67cd69;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  border-radius: 0;
  margin-right: 10px;
  padding: 0px 2px;
  font-size: 11px;
}
.profile-btn-yes:hover {
  color: #fff;
}

.profile-btn-no {
  background: #e74246;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  border-radius: 0;
  padding: 0px 2px;
  font-size: 11px;
}
.profile-btn-no:hover {
  color: #fff;
}

.popover-header {
  border-radius: 0;
  font-size: 13px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

.popover-body {
  background: #fff;
  border-radius: 0;
}

.popover {
  border-radius: 0;
}

#orders {
  min-height: 500px;
}
#orders h1 {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #939393;
  font-size: 21px;
  margin-top: 11px;
}
@media (max-width: 767px) {
  #orders h1 {
    font-size: 17px;
  }
}
#orders .btn-order-info {
  background: #67cd69;
  border-radius: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}
#orders table {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
#orders th {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
#orders .total {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
#orders .product-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
#orders .product-name:hover {
  text-decoration: none;
}
#orders .badge {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
}

#wishlist {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  min-height: 500px;
}
#wishlist h1 {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #939393;
  font-size: 21px;
  margin-top: 11px;
}
@media (max-width: 767px) {
  #wishlist h1 {
    font-size: 17px;
  }
}
#wishlist .btn-delete {
  background: #e74246;
  border-radius: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
#wishlist td {
  vertical-align: middle;
}
#wishlist .alert {
  border-radius: 0px;
}

#send2friend .modal-btn {
  background: #67cd69;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  border-radius: 0;
}
#send2friend .modal-btn:hover {
  background: rgb(68.4613861386, 193.6386138614, 70.9158415842);
}
#send2friend .form-control {
  border-radius: 0;
  box-shadow: none;
}
#send2friend .form-control:focus {
  border: 1px solid #ced4da;
}
#send2friend label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 17px;
}
#send2friend .modal-body {
  border-bottom: 3px solid #67cd69;
}
#send2friend .modal-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

#login-modal .modal-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 19px;
}
#login-modal label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #939393;
}
#login-modal .modal-btn {
  background: #67cd69;
  color: #fff;
  font-size: 15px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  border-radius: 0;
}
#login-modal .modal-btn:hover {
  background: rgb(68.4613861386, 193.6386138614, 70.9158415842);
}
#login-modal .close:hover {
  color: red;
}
#login-modal .form-control {
  border-radius: 0;
  outline: none;
  border: 1px solid #ced4da;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #605e5e;
}
#login-modal .form-control:focus {
  border: 1px solid #ced4da;
  outline: none;
  box-shadow: none;
}
#login-modal .modal-body {
  border-bottom: 2px solid #67cd69;
}
#login-modal .fpw-btn {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  position: relative;
  top: 5px;
}
#login-modal .fpw-btn:hover {
  color: #67cd69;
  text-decoration: none;
}
#login-modal .register {
  color: #e74246;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  position: relative;
  top: 2px;
}
#login-modal .register:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  #productModal {
    margin-top: 54px;
  }
}
#productModal .product-name {
  font-size: 22px;
  margin-bottom: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #000;
}
#productModal .price {
  color: #e74246;
  font-size: 27px;
  display: block; /* inline-block */
  margin-right: 20px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  line-height: 24px;
}
#productModal .old-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #939393;
  font-size: 16px;
  text-decoration: line-through;
  display: inline-block;
}
#productModal .info-orther p {
  margin-bottom: 2px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
  font-size: 14px;
}
#productModal .info-orther .badge-success {
  border-radius: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}
#productModal .description {
  margin-top: 10px;
  height: 120px;
}
#productModal .description ul, #productModal .description ol {
  padding-left: 15px;
}
#productModal .description p {
  margin-bottom: 5px;
}
#productModal .description p, #productModal .description ul, #productModal .description ol {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
  font-size: 15px;
}
#productModal .description strong {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #939393;
  font-size: 15px;
}
#productModal .product-qty {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #939393;
}
#productModal .product-qty .qty {
  width: 87px;
}
#productModal .product-qty .btn-cart {
  background: #67cd69;
  border-radius: 0;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
}
#productModal .product-qty .btn-cart .fa-shopping-cart {
  margin-right: 3px;
}
#productModal .product-qty .btn-cart:before {
  content: "\f07a";
  font-family: "FontAwesome";
  margin-right: 4px;
}
#productModal .product-qty .btn-cart:hover {
  background-color: rgb(64.6237623762, 192.3762376238, 67.1287128713);
}
#productModal .product-qty .btn-cart:hover:before {
  content: "\f218";
  font-family: "FontAwesome";
}
#productModal .product-qty .form-control {
  border-radius: 0;
  outline: none;
  border: 1px solid #ced4da;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #605e5e;
}
#productModal .product-qty .form-control:focus {
  border: 1px solid #ced4da;
  outline: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  #termsModal {
    margin-top: 54px;
  }
}
#termsModal .modal-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 19px;
}
#termsModal p, #termsModal ul, #termsModal ol {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
}

#checkout {
  margin-top: 20px;
}
#checkout #shipping-info .box-wrapper {
  border: 1px solid #ced4da;
  margin: 30px 0;
  padding: 20px;
}
#checkout #shipping-info .box-wrapper h3 {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 27px;
}
#checkout #shipping-info .box-wrapper .form-group {
  margin-bottom: 5px;
}
#checkout #shipping-info .box-wrapper .form-control {
  border-radius: 0;
  outline: none;
  border: 1px solid #ced4da;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #605e5e;
}
#checkout #shipping-info .box-wrapper .form-control:focus {
  border: 1px solid #ced4da;
  outline: none;
  box-shadow: none;
}
#checkout #shipping-info .box-wrapper label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #605e5e;
  font-size: 14px;
}
#checkout #shipping-info .box-wrapper .btn-register {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  background: #e74246;
  color: #Fff;
  font-size: 17px;
  border-radius: 0;
}
#checkout #shipping-info .box-wrapper .btn-register:hover {
  background-color: rgb(218.2816901408, 27.7183098592, 32.338028169);
}
#checkout #shipping-info .box-wrapper .btn-login {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  background: #67cd69;
  color: #Fff;
  font-size: 17px;
  border-radius: 0;
}
#checkout #shipping-info .box-wrapper .btn-login:hover {
  background-color: rgb(64.6237623762, 192.3762376238, 67.1287128713);
}
#checkout #shipping-info .box-wrapper .req {
  color: #e74246;
}
#checkout #shipping-info .box-wrapper .error {
  color: #e74246;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  #checkout .row {
    margin: 0;
  }
}
#checkout .login {
  background: #67cd69;
  padding: 20px;
}
@media (max-width: 768px) {
  #checkout .login {
    margin: 0 auto;
    margin-top: 15px;
  }
}
#checkout .login .title {
  font-size: 20px;
  color: #Fff;
}
@media (max-width: 768px) {
  #checkout .login .title {
    font-size: 19px;
  }
}
#checkout .login #login-wrapper {
  margin-top: 20px;
  border: 1px solid #fff !important;
  padding: 17px;
}
#checkout .login #login-wrapper label {
  color: #fff;
}
#checkout .login #login-wrapper .btn-login {
  background: none;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 5px 20px;
  color: #Fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}
#checkout .remove-cart {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #666;
}
#checkout .remove-cart:hover {
  color: #67cd69;
  text-decoration: none;
}
#checkout .logout-another-acc {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
}

#box-order, #order-complete {
  margin-top: 30px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
#box-order th, #order-complete th {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 15px;
  vertical-align: middle;
}
#box-order td, #order-complete td {
  vertical-align: middle;
}
#box-order .total, #order-complete .total {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
#box-order .product-name, #order-complete .product-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
#box-order .product-name:hover, #order-complete .product-name:hover {
  text-decoration: none;
}
#box-order .badge, #order-complete .badge {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
}
#box-order .form-control, #order-complete .form-control {
  max-width: 100px;
  margin: 0 auto;
  border-radius: 0;
  border: 1px solid #ced4da;
}
#box-order .form-control:focus, #order-complete .form-control:focus {
  border: 1px solid #ced4da;
  outline: none;
  box-shadow: none;
}
#box-order .btn-pay, #order-complete .btn-pay {
  background: #67cd69;
  border-radius: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  padding: 4px 29px;
}
#box-order .terms-check label, #order-complete .terms-check label {
  font-size: 14px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}
@media (max-width: 767px) {
  #box-order .terms-check label, #order-complete .terms-check label {
    font-size: 13px;
    top: 4px;
    margin-top: 10px;
  }
}

#product-detail {
  margin: 15px 0;
}
#product-detail .gallery-thumbs {
  margin-top: 10px;
}
#product-detail .img-thumbnail {
  border-radius: 0;
}
#product-detail .gallery-thumb-item {
  cursor: pointer;
}
#product-detail .product-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #5d5d5d;
  font-size: 28px;
}
@media (max-width: 767px) {
  #product-detail .product-name {
    font-size: 22px;
  }
}
#product-detail .price {
  color: #e74246;
  font-size: 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  line-height: 20px;
}
#product-detail .old-price {
  color: #939393;
  font-size: 18px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  margin-left: 10px;
  text-decoration: line-through;
}
#product-detail .info-orther {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #939393;
}
#product-detail .info-orther .badge-success {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  border-radius: 0;
  font-size: 14px;
}
#product-detail .info-orther span {
  margin-bottom: 7px;
  margin-bottom: 11px;
}
#product-detail .product-desc {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 20px 0;
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  padding: 10px 0;
  color: #939393;
}
#product-detail .product-desc p {
  margin-bottom: 0;
}
#product-detail .product-qty {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #939393;
}
#product-detail .product-qty .qty {
  width: 87px;
}
#product-detail .product-qty .btn-cart {
  background: #67cd69;
  border-radius: 0;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
#product-detail .product-qty .btn-cart .fa-shopping-cart {
  margin-right: 3px;
}
#product-detail .product-qty .btn-cart:before {
  content: "\f07a";
  font-family: "FontAwesome";
  margin-right: 4px;
}
#product-detail .product-qty .btn-cart:hover {
  background-color: rgb(64.6237623762, 192.3762376238, 67.1287128713);
}
#product-detail .product-qty .btn-cart:hover:before {
  content: "\f218";
  font-family: "FontAwesome";
}
#product-detail .form-control {
  border-radius: 0;
  outline: none;
  border: 1px solid #ced4da;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #605e5e;
}
#product-detail .form-control:focus {
  border: 1px solid #ced4da;
  outline: none;
  box-shadow: none;
}
#product-detail .add-fav {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-decoration: none;
}
#product-detail .add-fav .fa-heart {
  font-size: 16px;
  color: #e74246;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
#product-detail .add-fav:hover {
  color: #e74246;
}
#product-detail .send-friend {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-decoration: none;
  margin-left: 10px;
}
#product-detail .send-friend .fa-user {
  font-size: 16px;
  color: #ffdc38;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
#product-detail .send-friend:hover {
  color: #ffdc38;
}
#product-detail #relatedProduct {
  margin-top: 30px;
}
#product-detail #relatedProduct .product-wrapper {
  display: block !important;
  margin: 0 auto;
  margin: 0 auto;
  margin-bottom: 40px;
  border: 1px solid #e1e1e1;
  position: relative;
  min-height: 300px;
}
#product-detail #relatedProduct .product-wrapper:hover .name {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transition: all 0.5s;
}
#product-detail #relatedProduct .product-wrapper:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transition: all 0.5s;
}
#product-detail #relatedProduct .product-wrapper:hover .price {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transition: all 0.5s;
}
#product-detail #relatedProduct .product-wrapper img {
  display: block !important;
  margin: 0 auto;
}
#product-detail #relatedProduct .product-wrapper a:hover {
  text-decoration: none;
}
#product-detail #relatedProduct .product-wrapper img {
  margin: 0 auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
#product-detail #relatedProduct .product-wrapper .name {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  display: block; /* */
  font-size: 14px;
  height: 50px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
#product-detail #relatedProduct .product-wrapper .price {
  color: #e74246;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 20px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  display: block;
  line-height: 20px;
}
#product-detail #relatedProduct .product-wrapper .old-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #939393;
  font-size: 12px;
  margin-left: 6px;
  text-decoration: line-through;
  display: inline-block;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
#product-detail #relatedProduct .product-wrapper .cart {
  position: relative;
  top: 5px;
  transform: translate(0px, 15px);
  transition: transform 0s;
  transition-delay: 0;
  visibility: hidden;
  float: right;
}
#product-detail #relatedProduct .product-wrapper .cart .fa-cart-arrow-down {
  color: #838383;
  border: 1px solid #939393;
  padding: 5px;
}
#product-detail #relatedProduct .product-wrapper .quick-view {
  position: relative;
  top: 5px;
  float: right;
  right: 5px;
  transform: translate(0px, 15px);
  transition: transform 0s;
  transition-delay: 0;
  visibility: hidden;
}
#product-detail #relatedProduct .product-wrapper .quick-view .fa-search {
  color: #838383;
  border: 1px solid #939393;
  padding: 5px;
}
#product-detail #relatedProduct .product-wrapper .product-details {
  padding: 8px;
}
#product-detail #relatedProduct .product-wrapper:hover .quick-view {
  transform: translate(0px, 0);
  visibility: visible;
  transition: transform 0.5s, visibility 0.5s linear 0.2s;
  transition-delay: 0.5s;
}
#product-detail #relatedProduct .product-wrapper:hover .cart {
  transform: translate(0px, 0);
  visibility: visible;
  transition: transform 0.5s, visibility 0.5s linear 0.2s;
}
#product-detail #relatedProduct .product-wrapper:hover .cart .fa-cart-arrow-down {
  color: #e74246;
  border: 1px solid #e74246;
}
#product-detail #relatedProduct .product-wrapper .sticker {
  position: absolute;
  top: 6px;
  width: 70px;
  text-align: center;
  left: 7px;
  width: 0;
  height: 0;
  border-top: 40px solid #e74246;
  border-right: 40px solid transparent;
}
#product-detail #relatedProduct .product-wrapper .sticker span {
  position: absolute;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  top: -37px;
  transform: rotate(-45deg);
  color: #fff;
  left: -10px;
  right: -36px;
  font-size: 13px;
}
#product-detail #relatedProduct .product-wrapper .new {
  border-top: 40px solid #e74246;
  z-index: 2;
}
#product-detail #relatedProduct .product-wrapper .promo {
  border-top: 40px solid #67cd69;
  z-index: 2;
}
#product-detail #relatedProduct .product-wrapper .promo span {
  font-size: 12px !important;
  top: -35px;
  right: -41px;
  left: -11px;
}
#product-detail #relatedProduct .product-wrapper .sale {
  border-top: 40px solid #ffdc38;
  z-index: 2;
}
#product-detail #relatedProduct .title {
  color: #939393;
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #c8c8c8;
}
#product-detail #relatedProduct .arrows {
  position: relative;
  width: 118px;
  float: right;
  bottom: 23px;
}
#product-detail #relatedProduct .swiper-button-prev {
  background: url("/images/arrow-l-small.png");
  position: absolute;
  top: 42%;
  width: 24px;
  height: 30px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  left: 60px;
  background-repeat: no-repeat;
}
#product-detail #relatedProduct .swiper-button-next {
  background: url("/images/arrow-r-small.png");
  position: absolute;
  top: 42%;
  width: 24px;
  height: 30px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  right: 0;
  background-repeat: no-repeat;
}

.products h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 25px;
}
.products .product-wrapper {
  margin: 0 auto;
  margin-bottom: 40px;
  border: 1px solid #e1e1e1;
  position: relative;
  min-height: 300px;
}
.products .product-wrapper img {
  display: block !important;
  margin: 0 auto;
}
.products .product-wrapper a:hover {
  text-decoration: none;
}
.products .product-wrapper img {
  margin: 0 auto;
}
.products .product-wrapper .name {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  display: block;
  height: 50px;
}
.products .product-wrapper .price {
  color: #e74246;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: block;
  line-height: 20px;
}
.products .product-wrapper .old-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #939393;
  font-size: 12px;
  margin-left: 6px;
  text-decoration: line-through;
  margin-top: 12px;
  display: inline-block;
}
.products .product-wrapper .cart {
  position: relative;
  top: 5px;
  transform: translate(0px, 15px);
  transition: transform 0s;
  transition-delay: 0;
  visibility: hidden;
  float: right;
}
.products .product-wrapper .cart .fa-cart-arrow-down {
  color: #838383;
  border: 1px solid #939393;
  padding: 5px;
}
.products .product-wrapper .quick-view {
  position: relative;
  top: 5px;
  float: right;
  right: 5px;
  transform: translate(0px, 15px);
  transition: transform 0s;
  transition-delay: 0;
  visibility: hidden;
}
.products .product-wrapper .quick-view .fa-search {
  color: #838383;
  border: 1px solid #939393;
  padding: 5px;
}
.products .product-wrapper .product-details {
  padding: 8px;
}
.products .product-wrapper:hover .quick-view {
  transform: translate(0px, 0);
  visibility: visible;
  transition: transform 0.5s, visibility 0.5s linear 0.2s;
  transition-delay: 0.5s;
}
.products .product-wrapper:hover .cart {
  transform: translate(0px, 0);
  visibility: visible;
  transition: transform 0.5s, visibility 0.5s linear 0.2s;
}
.products .product-wrapper:hover .cart .fa-cart-arrow-down {
  color: #e74246;
  border: 1px solid #e74246;
}
.products .product-wrapper .sticker {
  position: absolute;
  top: 6px;
  width: 70px;
  text-align: center;
  left: 7px;
  width: 0;
  height: 0;
  border-top: 40px solid #e74246;
  border-right: 40px solid transparent;
}
.products .product-wrapper .sticker span {
  position: absolute;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  top: -37px;
  transform: rotate(-45deg);
  color: #fff;
  left: -10px;
  right: -36px;
  font-size: 13px;
}
.products .product-wrapper .new {
  border-top: 40px solid #e74246;
}
.products .product-wrapper .promo {
  border-top: 40px solid #67cd69;
}
.products .product-wrapper .promo span {
  font-size: 12px !important;
  top: -35px;
  right: -41px;
  left: -11px;
}
.products .product-wrapper .sale {
  border-top: 40px solid #ffdc38;
}

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

.ok-btn {
  background-color: #67cd69 !important;
  color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 0px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  margin: 0;
  cursor: pointer;
}

.favorite-exist .swal-button {
  background: #F8BB86 !important;
  border-radius: 0px;
}

.favorite-success .swal-button {
  background: #67cd69 !important;
  border-radius: 0px;
}

#accordianmenu {
  background: #f0f1f3;
  color: #000;
}
#accordianmenu p {
  font-size: 12px;
  line-height: 34px;
  padding: 0 10px;
  cursor: pointer;
  background: #f0f1f3;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #545454;
  font-size: 11px;
}
#accordianmenu p:hover {
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
#accordianmenu li {
  list-style-type: none;
}
#accordianmenu ul {
  padding-left: 0;
}
#accordianmenu ul ul {
  display: none;
}
#accordianmenu ul ul li a {
  color: #939393;
  text-decoration: none;
  font-size: 11px;
  line-height: 27px;
  display: block;
  padding: 0 15px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
}
#accordianmenu ul ul li a:hover {
  background: #e74246;
  color: #fff;
}
#accordianmenu li.active ul {
  display: block;
}

#home-products {
  margin-top: 30px;
  margin-bottom: 20px;
}
#home-products h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #939393;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 25px;
}
#home-products .view-all {
  background: #ffdc38;
  color: #Fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  border-radius: 0;
  padding: 5px;
  line-height: 12px;
  font-size: 14px;
  position: relative;
  top: 3px;
}
#home-products .view-all:hover {
  background: rgb(255, 211.0301507538, 5);
}
#home-products .view-all .fa-eye {
  position: relative;
  top: 1px;
}
#home-products .view-all:hover {
  text-decoration: none;
}
#home-products .categories {
  background: #f0f1f3;
  padding: 10px;
}
#home-products .categories h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 15px;
  background: #e74246;
  padding: 3px;
  padding-left: 10px;
}
#home-products .categories .category-link {
  display: block;
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-top: 8px;
  font-size: 15px;
  cursor: pointer;
}
#home-products .categories .category-link:hover {
  text-decoration: none;
  color: #e74246;
}
#home-products .categories .category-link .icon-img {
  margin-right: 9px;
}
#home-products .products {
  z-index: 0;
}
#home-products .products .product-wrapper {
  margin: 0 auto;
  margin-bottom: 40px;
  border: 1px solid #e1e1e1;
  position: relative;
  min-height: 300px;
}
#home-products .products .product-wrapper a:hover {
  text-decoration: none;
}
#home-products .products .product-wrapper img {
  margin: 0 auto;
  display: block;
}
#home-products .products .product-wrapper .name {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  display: block;
  height: 50px;
}
#home-products .products .product-wrapper .price {
  color: #e74246;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: block;
  line-height: 20px;
}
#home-products .products .product-wrapper .old-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #939393;
  font-size: 16px;
  margin-left: 6px;
  text-decoration: line-through;
  margin-top: 12px;
  display: inline-block;
  line-height: 0px;
}
#home-products .products .product-wrapper .cart {
  position: relative;
  top: 5px;
  transform: translate(0px, 15px);
  transition: transform 0s;
  transition-delay: 0;
  visibility: hidden;
  float: right;
}
#home-products .products .product-wrapper .cart .fa-cart-arrow-down {
  color: #838383;
  border: 1px solid #939393;
  padding: 5px;
}
#home-products .products .product-wrapper .quick-view {
  position: relative;
  top: 5px;
  float: right;
  right: 5px;
  transform: translate(0px, 15px);
  transition: transform 0s;
  transition-delay: 0;
  visibility: hidden;
}
#home-products .products .product-wrapper .quick-view .fa-search {
  color: #838383;
  border: 1px solid #939393;
  padding: 5px;
}
#home-products .products .product-wrapper .product-details {
  padding: 8px;
}
#home-products .products .product-wrapper:hover .quick-view {
  transform: translate(0px, 0);
  visibility: visible;
  transition: transform 0.5s, visibility 0.5s linear 0.2s;
  transition-delay: 0.5s;
}
#home-products .products .product-wrapper:hover .cart {
  transform: translate(0px, 0);
  visibility: visible;
  transition: transform 0.5s, visibility 0.5s linear 0.2s;
}
#home-products .products .product-wrapper:hover .cart .fa-cart-arrow-down {
  color: #e74246;
  border: 1px solid #e74246;
}
#home-products .products .product-wrapper .sticker {
  position: absolute;
  top: 6px;
  width: 70px;
  text-align: center;
  left: 7px;
  width: 0;
  height: 0;
  border-top: 40px solid #e74246;
  border-right: 40px solid transparent;
}
#home-products .products .product-wrapper .sticker span {
  position: absolute;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  top: -37px;
  transform: rotate(-45deg);
  color: #fff;
  left: -10px;
  right: -36px;
  font-size: 13px;
}
#home-products .products .product-wrapper .new {
  border-top: 40px solid #e74246;
}
#home-products .products .product-wrapper .promo {
  border-top: 40px solid #67cd69;
}
#home-products .products .product-wrapper .promo span {
  font-size: 12px !important;
  top: -35px;
  right: -41px;
  left: -11px;
}
#home-products .products .product-wrapper .sale {
  border-top: 40px solid #ffdc38;
}

#popular {
  background: #f0f1f3;
  padding: 40px 0;
}
#popular .popular-products {
  background: #333;
  padding: 17px;
}
@media (max-width: 768px) {
  #popular .popular-products {
    margin-bottom: 25px;
  }
}
#popular .popular-products .popular-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #67cd69;
  font-size: 20px;
  margin-bottom: 26px;
  border-bottom: 2px solid #67cd69;
}
#popular .popular-products .popular-title .fa-star {
  font-size: 14px;
  font-size: 12px;
  position: relative;
  bottom: 3px;
}
@media (max-width: 991px) {
  #popular .popular-products .popular-title {
    font-size: 18px;
  }
}
#popular .popular-products .product-wrapper {
  margin-bottom: 15px;
  padding: 5px;
  position: relative;
  display: flex;
}
#popular .popular-products .product-wrapper:hover {
  text-decoration: none;
}
#popular .popular-products .product-wrapper:hover .product-name {
  color: #67cd69;
}
#popular .popular-products .product-wrapper:hover img {
  background: #67cd69;
}
#popular .popular-products .product-wrapper img {
  margin-right: 20px;
  background: #5d5d5d;
  padding: 2px;
}
#popular .popular-products .product-wrapper .product-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #cecece;
  display: block;
  font-size: 15px;
}
@media (max-width: 991px) {
  #popular .popular-products .product-wrapper .product-name {
    font-size: 14px;
  }
}
#popular .popular-products .product-wrapper .old-price {
  margin: 4px 0;
  display: inline-block;
  color: #939393;
  text-decoration: line-through;
  font-size: 12px;
}
#popular .popular-products .product-wrapper .price {
  color: #67cd69;
  font-size: 17px;
  display: inline-block;
}
@media (max-width: 991px) {
  #popular .popular-products .product-wrapper .price {
    font-size: 16px;
  }
}
#popular .grid {
  position: relative;
  clear: both;
  margin: 0 auto;
  max-width: 1000px;
  list-style: none;
  text-align: center;
}
#popular .grid figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}
#popular .grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}
#popular .grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#popular .grid figure figcaption:hover h2 {
  margin: 0 0 10px 0;
  transition: margin 0.35s;
}
@media (max-width: 574px) {
  #popular .grid figure figcaption:hover h2 {
    margin: 19% 0 10px 0;
  }
}
@media (max-width: 574px) and (max-width: 339px) {
  #popular .grid figure figcaption:hover h2 {
    margin: 10% 0 10px 0;
  }
}
#popular .grid figure figcaption:hover .small-heading {
  margin: 30% 0 10px 0;
}
#popular .grid figure figcaption::before, #popular .grid figure figcaption::after {
  pointer-events: none;
}
#popular .grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
#popular .grid figure figcaption > a:hover h2 {
  margin: 0 0 10px 0;
  transition: margin 0.35s;
}
#popular .grid figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  margin: 13% 0 10px 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
@media (max-width: 991px) {
  #popular .grid figure h2 {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  #popular .grid figure h2 {
    margin: 0 0 10px 0;
    font-size: 30px;
  }
}
@media (max-width: 574px) {
  #popular .grid figure h2 {
    margin: 19% 0 10px 0;
  }
}
@media (max-width: 339px) {
  #popular .grid figure h2 {
    margin: 10% 0 10px 0;
    font-size: 26px;
  }
}
#popular .grid figure h2 span {
  font-weight: 800;
}
@media (max-width: 767px) {
  #popular .grid figure h2 span {
    font-size: 25px;
  }
}
@media (max-width: 339px) {
  #popular .grid figure h2 span {
    font-size: 23px;
  }
}
#popular .grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
  margin: 0;
}
@media (max-width: 767px) {
  #popular .grid figure p {
    font-size: 15px;
    padding: 0;
  }
}
@media (max-width: 339px) {
  #popular .grid figure p {
    font-size: 11px;
    padding: 0;
  }
}
#popular .grid figure img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  width: 100%;
}
#popular .grid figure:hover figcaption {
  background-color: rgba(0, 0, 0, 0.4);
}
#popular .grid .small-heading {
  font-size: 22px;
  margin: 30% 0 10px 0;
}
@media (max-width: 767px) {
  #popular .small-box {
    max-width: 310px;
  }
}

figure.effect-ming figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.4, 1.4, 1);
  transform: scale3d(1.4, 1.4, 1);
}

figure.effect-ming p {
  padding: 1em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

figure.effect-ming:hover h2 {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

figure.effect-ming:hover figcaption::before,
figure.effect-ming:hover p {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

figure.effect-ming figure.effect-ming:hover img {
  opacity: 0.4;
}

footer {
  background: #444444;
  margin-top: 20px;
  padding: 15px;
}
footer a:hover {
  color: inherit !important;
}
footer #top-footer {
  padding: 15px 0;
}
footer #top-footer .news-letter-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #939393;
  font-size: 28px;
}
footer #top-footer .alert {
  border-radius: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  padding: 9px;
  font-size: 14px;
  margin-top: 8px;
}
footer #top-footer span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #939393;
  font-size: 15px;
}
footer #top-footer .title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #939393;
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ffdc38;
  display: inline-block;
}
footer #top-footer .form-control {
  border: none;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #cccbcb;
  background: transparent;
  margin-top: 7px;
  padding-left: 0;
}
footer #top-footer .form-control::placeholder {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #cccbcb;
}
footer #top-footer .form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom: none;
}
footer #top-footer .btn-subscribe {
  background: none;
  border: none;
  color: #67cd69;
}
footer #top-footer .btn-subscribe:hover {
  color: rgb(64.6237623762, 192.3762376238, 67.1287128713);
}
footer #top-footer .btn-subscribe:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
footer #top-footer .btn-subscribe:active {
  outline: none;
  box-shadow: none;
  border: none;
}
footer #top-footer .form-group {
  border-bottom: 2px solid #cecece;
}
footer #top-footer .socials a:hover {
  text-decoration: none;
}
footer #top-footer .socials .fa-stack-1x {
  color: #fff;
}
footer #top-footer .socials .fa-stack {
  font-size: 16px;
}
footer #top-footer .socials .facebook {
  color: #3b5998;
}
footer #top-footer .socials .twitter {
  color: #0084b4;
}
footer #top-footer .socials .gplus {
  color: #d34836;
}
footer #top-footer .blog a {
  color: #939393;
}
footer #top-footer .blog a:hover {
  text-decoration: none;
  color: #67cd69 !important;
}
footer #top-footer .blog a:hover .blog-title {
  color: #67cd69;
}
footer #top-footer .blog .blog-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  height: 48px;
  margin-bottom: 0;
  font-size: 14px;
  height: 39px;
}
footer #top-footer .blog .date {
  margin-bottom: 14px;
  color: #67cd69;
  font-size: 14px;
}
footer ul li a {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  margin-bottom: 3px;
  font-size: 14px;
}
footer ul li a:hover {
  text-decoration: none;
  color: #67cd69 !important;
}
footer #bottom-footer {
  margin-top: 10px;
  margin-bottom: 10px;
}
footer #bottom-footer .rights {
  color: #939393;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}
footer #bottom-footer .web-design {
  font-size: 12px;
  color: #e74246;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  margin-top: 10px;
}
footer #bottom-footer .web-design a {
  color: #939393;
  text-decoration: underline;
}

.dropdown-toggle::after {
  display: none;
}

.nopadding {
  padding-left: 0;
  padding-right: 0;
}

.nopadding-left {
  padding-left: 0;
}

@media (min-width: 767px) {
  .nopadding-l {
    padding-left: 0;
  }
}

@media (min-width: 767px) {
  .nopadding-r {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .nopadding-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

.modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}
@media (max-width: 768px) {
  .modal-dialog {
    min-height: calc(100vh - 20px);
  }
}

.modal-backdrop {
  display: none;
}

.modal.fade {
  z-index: 999 !important;
}

.fade {
  background: rgba(0, 0, 0, 0.5);
}

.btn:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.btn:active {
  outline: none;
  box-shadow: none;
  border: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(55, 89, 112)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  border: 1px solid #dfdfdf;
  border-radius: 0;
  margin-right: 2rem;
  padding-right: 2rem;
}

/* facebook comments */
.fb-comments, .fb-comments iframe[style], .fb-like-box, .fb-like-box iframe[style] {
  width: 100% !important;
}

.fb-comments span, .fb-comments iframe span[style], .fb-like-box span, .fb-like-box iframe span[style] {
  width: 100% !important;
  max-height: 500px;
  overflow-y: scroll;
}

.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: 100% !important;
}