<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––&gt;&gt;&gt; Components  &lt;&lt;&lt;–––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width:1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
      max-width: 1180px
  }
}

@media (min-width:1300px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
      max-width: 1280px
  }
}

@media (min-width:1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
      max-width: 1380px
  }
}

@media (min-width: 992px) and (max-width: 1200px)  {
  .container, .container-lg, .container-md, .container-sm {
      max-width: 1080px;
  }
}

.inline {
  display: inline-block;
}
.lnr {
  font-weight: bold;
}
.border-solid-ee {
  border: 1px solid #eee;
}
.border-solid-d2 {
  border: 1px solid #d2d2d2;
}
.border-solid-f1 {
  border: 1px solid #f1f1f1;
}
.border-solid-f6 {
  border: 1px solid #f6f6f6;
}
.bt1-solid-ee {
  border-top: 1px solid #eee;
}
.bb1-solid-ee {
  border-bottom: 1px solid #eee;
}
.bl1-solid-ee {
  border-left: 1px solid #eee;
}
.br1-solid-ee {
  border-right: 1px solid #eee;
}
.bb1-solid-f1 {
  border-bottom: 1px solid #f1f1f1;
}
.bb1-solid {
  border-bottom: 1px solid #f6f6f6;
}
.bl1-solid {
  border-left: 1px solid #f6f6f6;
}
.br1-solid {
  border-right: 1px solid #f6f6f6;
}
.bt1-solid {
  border-top: 1px solid #f6f6f6;
}
.border-none {
  border: none;
}
.color-999{
  color:#999;
}
.color-666{
  color:#666;
}
.color-333{
  color:#333;
}
.clearfix{
  zoom: 1;
}
.curp{
  cursor: pointer;
}
.clear,.clr {
  display: block;
  overflow: hidden;
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}
.boder-radius-0 {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
}
.block-quote {
  position: relative;
  font-size: 15px;
  background-color: #e6fff1;
  border-left-color: #2d96de;
  margin: 20px 0 30px 20px;
  padding: 30px 30px 40px 30px;
}
.block-quote:after {
  font-size: 20px;
  bottom: 10px;
  color: #2d96de;
  content: "\f10e";
  font-family: fontawesome;
  position: absolute;
  right: 30px;
}
.title-bar {
  height: 20px;
  line-height: 20px;
  border-left: 3px solid #55a3f8;
  text-indent: 15px!important;
}

/* List Styles */
.list-styled {
  list-style-type: disc;
  padding-left: 10px;
  list-style-position: inside;
}
/* Custom Checkbox / Radio */
.custom-checkbox,
.custom-radio {
  position: relative;
  padding-left: 24px;
}
.custom-checkbox input[type="checkbox"],
.custom-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: 1;
}
.custom-checkbox label,
.custom-radio label {
  display: inline-block;
  line-height: 24px;
  vertical-align: middle;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox label::after,
.custom-radio label::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  margin-left: -24px;
  background-color: white;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  cursor: pointer;
}
.custom-radio label::after {
  border-radius: 999px;
}
.custom-checkbox label::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 8px;
  top: 6px;
  left: 0px;
  margin-left: -18px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  background: transparent;
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.custom-radio label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
  margin-left: -24px;
  border-radius: 999px;
  opacity: 0;
  z-index: 1;
  border: 4px solid #fff;
}
.custom-checkbox input[type="checkbox"]:checked + label::after,
.custom-radio input[type="radio"]:checked + label::after {
  border-color: #2d96de;
  background-color: #2d96de;
}
.custom-checkbox input[type="checkbox"]:checked + label::before,
.custom-radio input[type="radio"]:checked + label::before {
  opacity: 1;
}
.bok-logo {
  width:200px;
}
.login-dialog-form-box{
  display: none;
}

.border-bottom-line-10{
  border-bottom: 1px solid #f1f1f1;
  padding-bottom:10px;
}

.border-bottom-line-20{
  border-bottom: 1px solid #f1f1f1;
  padding-bottom:20px;
}

.hr {
  border-bottom: 1px solid #f0f0f0;
  height: 0;
}

.no-data-info {
  height: 200px;
  padding-top: 90px;
}

.console-box-border {
  border: 1px solid #f1f1f1;
}

.no-data-info .icon-info-sign {
  color: #2d96de;
  font-size: 18px;
}
.no-data-info .icon-info-sign:before{
  font-family: fontAwesome;
  content: "\f05a";
}

.btn-toinstlist {
  border: 1px solid #DDD;
  color: #999;
  text-shadow: none;
  vertical-align: middle;
  margin-left: 10px;
  background-color: #fff;
  border-radius: 0px;
}

.btn-toinstlist:hover{
  background-color: #2d96de;
  border:1px solid #2d96de;
}

.btn-xs-i {
  font-size: 12px;
  padding: 2px 8px;
  height: 20px;
  line-height: 16px;
  min-width: 80px;
}

.btn-xs-i-s {
  font-size: 12px;
  border: 1px solid #DDD;
  color: #999;
  text-shadow: none;
  vertical-align: middle;
  background-color: #fff;
  padding: 2px 8px;
  height: 20px;
  line-height: 14px;
  min-width: 80px;
}

/*|------Mine Checkbox--START--|*/
.mine-icon,.mine-unselect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mine-icon {
  font-family: layui-icon!important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.mine-form-checkbox {
  position: relative;
  cursor: pointer;
  font-size: 0;
  border-radius: 2px;
  -webkit-transition: .1s linear;
  transition: .1s linear;
  box-sizing: border-box;
  height: auto!important;
  line-height: normal!important;
  border: none!important;
  margin-right: 0;
  padding-right: 0;
  background: 0 0
}

.mine-form-checkbox,.mine-form-checkbox * {
  display: inline-block;
  vertical-align: middle
}

.mine-form-checkbox:hover {
  border: 1px solid #c2c2c2
}

.mine-form-checkbox span {
  padding: 0 10px;
  font-size: 12px;
  color: #999;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: right;
  background: 0 0;
}

.mine-form-checkbox i {
  right: 0;
  color: #fff;
  text-align: center;
  position: relative;
  top: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border: 1px solid #d2d2d2;
  font-size: 12px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: .1s linear;
  transition: .1s linear
}

.mine-form-checkbox:hover i {
  border-color: #2d96de;
  color: #fff
}

.mine-form-checked i {
  border-color: #2d96de;
  background-color: #2d96de;
  color: #fff
}

.mine-checkbox-disbaled i {
  background-color: #fafafa;
  color: #fafafa
}

.mine-checkbox-disbaled:hover i {
  border-color: #d2d2d2;
  cursor: not-allowed;
}

.mine-form-item .mine-form-checkbox {
  margin-top: 10px
}
/*|------Mine Checkbox--END--|*/
/* Fix Bootstrap Media */
.media-object {
  max-width: none;
}
/* Styled Title */
.h-title {
  position: relative;
  padding-bottom: 0.85em;
}
.h-title:before {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #f1f1f1;
}
.h-title:after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 40px;
  height: 2px;
  background: #2d96de;
}
/* Alert Error */
.alert-error {
  background-color: #ea4335;
  color: #fff;
  padding: 20px;
}
/* Rating Stars */
.rating {
  color: #ff3100;
}
.rating .rating-stars {
  unicode-bidi: bidi-override;
  direction: rtl;
  white-space: nowrap;
  display: inline-table;
}
.rating .rating-stars.rate-allow {
  cursor: pointer;
}
.rating .fa {
  display: table-cell;
  font-size: 16px;
  padding: 2px;
}
.rating .rate-allow .fa:hover:before,
.rating .rate-allow .fa:hover ~ .fa:before,
.rating .rating-stars .fa.star-active:before,
.rating .rating-stars .fa.star-active ~ .fa:before {
  content: "\f005";
}
.rating .rating-reviews {
  color: #717f86;
  margin-left: 6px;
}
/* Social Icons */
.social-icons__item .fa {
  font-size: 15px;
  margin: 0;
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 3px;
  color: #F5F5F5;
  background-color: rgba(49, 69, 85, 0.25);
}
.social-icons__item .fa:hover {
  background-color: rgba(49, 69, 85, 0.4);
}
.social-icons--colored .social-icons__item i.fa-facebook {
  background-color: #3b5998;
}
.social-icons--colored .social-icons__item i.fa-facebook:hover {
  background-color: #344e86;
}
.social-icons--colored .social-icons__item i.fa-twitter {
  background-color: #1da1f2;
}
.social-icons--colored .social-icons__item i.fa-twitter:hover {
  background-color: #0d95e8;
}
.social-icons--colored .social-icons__item i.fa-google-plus {
  background-color: #dd4b39;
}
.social-icons--colored .social-icons__item i.fa-google-plus:hover {
  background-color: #d73925;
}
.social-icons--colored .social-icons__item i.fa-linkedin {
  background-color: #0077b5;
}
.social-icons--colored .social-icons__item i.fa-linkedin:hover {
  background-color: #00669c;
}
.social-icons--colored .social-icons__item i.fa-pinterest {
  background-color: #cc2222;
}
.social-icons--colored .social-icons__item i.fa-pinterest:hover {
  background-color: #b61e1e;
}
.label {
  font-size: 12px;
  font-weight: normal;
  padding: 5px 10px;
}
.label-success {
  background-color: #2d96de;
}
.panel {
  border-radius: 0;
  overflow: hidden;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
}
.label-discount {
  color: #fff;
  font-size: 15px;
  height: 50px;
  width: 50px;
  line-height: 48px;
  text-align: center;
  display: block;
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  background-color: #ff3100;
  border: 1px dashed #fff;
  -webkit-box-shadow: 0 0 0 2px #ff3100;
  box-shadow: 0 0 0 2px #ff3100;
}
/* Pagination */
.page-pagination {
  font-size: 13px;
  margin: 20px auto;
  text-align: center;
}
.page-pagination li {
  display: inline;
}
.page-pagination .page-numbers,
.page-pagination .page-numbers.current {
  display: inline-block;
  margin: 0 2px;
  padding: 0 13px;
  line-height: 32px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.page-pagination a.page-numbers {
  border-color: #d3d9dd;
  color: #576366;
}
.page-pagination .page-numbers.current,
.page-pagination a.page-numbers:hover {
  border-color: #2d96de;
  background-color: #2d96de;
  color: #fff;
}
/* Flex Slider */
.flexslider {
  margin: 0;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.flexslider.flexslider-nav {
  -webkit-box-shadow: 0px -5px 8px 0px rgba(0,0,0,.3);
  box-shadow: 0px -3px 8px 0px rgba(0,0,0,.3);
}
.flex-control-thumbs {
  margin: 0;
}
.flex-direction-nav a:before {
  font-size: 25px;
}
/* Page Control */
.page-control {
  overflow: visible;
}
.page-control .dropdown .btn {
  background-color: transparent;
  color: #999;
  padding: 0;
  height: auto;
}
.page-control .list-control-view .fa {
  font-size: 18px;
  padding-top: 6px;
  color: #555;
}
.page-control select.input-sm {
  padding: 0 30px 0 10px;
}
.page-control .dropdown-menu {
  top: 130%;
  left: -6px;
  border-radius: 0;
  border-color: #eee;
}
.page-control .dropdown-menu &gt; li &gt; a {
  padding: 5px 20px;
}
/* Js Tabs */
.nav-tabs {
  border-bottom: 0;
}
.nav-tabs &gt; li {
  margin-bottom: 0;
}
.nav-tabs &gt; li.active &gt; a,
.nav-tabs &gt; li.active &gt; a:hover,
.nav-tabs &gt; li.active &gt; a:focus {
  border: 0;
  box-shadow: none;
  color: #2d96de;
}
.nav-tabs &gt; li &gt; a {
  padding: 15px 20px;
  border: 0;
}
.nav-tabs &gt; li &gt; a:hover,
.nav-tabs &gt; li &gt; a:focus {
  background-color: transparent;
}

/* Flag Icons*/
[class*="fa-flag"] {
  width: 16px;
  height: 11px;
  background-image: url("../images/icons/flags.png");
}
.fa-flag-usa {
  background-position: 0 0;
}
.fa-flag-fra {
  background-position: 0 11px;
}
.fa-flag-ger {
  background-position: 0 22px;
}
.fa-flag-rus {
  background-position: 0 33px;
}

/* Owl Carousel */
.owl-theme .owl-nav {
  margin-top: 0;
}
.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  top: 50%;
  font-size: 20px;
  margin: 0;
  padding: 4px 8px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 400ms linear 0ms;
  -ms-transition: all 400ms linear 0ms;
  -o-transition: all 400ms linear 0ms;
  transition: all 400ms linear 0ms;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: rgba(0, 0, 0, 0.7);
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* ---Common loader----- */
.loading-layer-box .fa-loading-tips{
  display: block;
  margin-top: -10px;
}

.loading-layer-box .loading-layer-block i{
  margin-top: -20px;
  margin-bottom: 0px;
}

.loading-layer-box .loading-layer-block .layui-anim-rotate {
  -webkit-animation-name: layui-rotate;
  animation-name: layui-rotate;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.loading-layer-box .loading-layer-block{
  width:100px;
  height:100px;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top:0;
  color: #fff;
  background-color:#000;
  opacity: 0.5;
  border-radius: 20px;
  z-index: 199999998;
  text-align: center;
  padding-top: 20px;
}

.loading-layer-box .loading-layer-shade{
  width:100%;
  height:100%;
  position: absolute;
  left: 0;
  top:0;
  z-index: 199999997;
  opacity: 0.5;
}


/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––&gt;&gt;&gt; Preloader  &lt;&lt;&lt;––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.loader-cube {
  left: 50%;
  top: 50%;
  position: absolute;
  margin-top: -30px;
  margin-left: -30px;
  width: 40px;
  height: 40px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.loader-cube .loader-cube__item {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.loader-cube .loader-cube__item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2d96de;
  -webkit-animation: loaderAnim 2.4s infinite linear both;
  animation: loaderAnim 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.loader-cube .loader-cube__item2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}
.loader-cube .loader-cube__item3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}
.loader-cube .loader-cube__item4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}
.loader-cube .loader-cube__item2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loader-cube .loader-cube__item3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.loader-cube .loader-cube__item4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
@-webkit-keyframes loaderAnim {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes loaderAnim {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––&gt;&gt;&gt; Header  &lt;&lt;&lt;–––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* |–––––––––––––––––[ Top bar ]–––––––––––––––| */
.nav-top ul {
  padding: 5px 0;
  opacity: 0;
  display: none;
  visibility: hidden;
  position: absolute;
  /* top: 150%; */
  right: -6px;
  text-align: left;
  background-color: #fefefe;
  border: 1px solid #f1f1f1;
  min-width: 120px;
  width:180px;
  -webkit-box-shadow: 1px 0 2px rgba(0, 0, 2, 0.1);
  box-shadow: 1px 0 2px rgba(0, 0, 2, 0.1);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: -9;
}
.nav-top &gt; li {
  position: relative;
}

.nav-top &gt; li:hover ul {
  display: block;
  visibility: visible;
  z-index: 9999;
  opacity: 1;
  top: 100%;
}
.nav-top &gt; li:hover ul &gt; li{
  border-bottom: 1px dashed #e9ebee;
}
.nav-top &gt; li:hover ul &gt; li:last-child{
  border-bottom: none;
}
.nav-top a {
  display: block;
  font-size: 12px;
  line-height: 22px;
  color: #333;
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav-top a:hover {
  color: #000;
}

.nav-top .nav-message-num{
  position: absolute;
  top: 80px;
  right: 10px;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
  border-radius: 2px;
  background-color: #fc3c4a;
  color: #fff;
  font-size: 12px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.nav-top .nav-unread-message{
  position: absolute;
  top: 5px;
  left: 45px;
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #fc3c4a;
  border:1px solid #fc3c4a;
  color: #fff;
  text-align: center;
}

.nav-top &gt; li:hover &gt; a {
  color: #000;
}
.nav-top ul a {
  padding: 5px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.nav-top ul a:hover {
  background-color: #2d96de;
  color: #fff!important;
}
.nav-top .fa {
  margin-right: 6px;
  font-size: 14px;
  color: #2d96de;
}

.nav-top .logout-icon{
  color: #2d96de;
}

.nav-top ul::after,.nav-top ul::before{
  content: "";
  border-width: 0 6px 6px;
  border-style: solid;
  border-color: #fff #fff #eee;
  position: absolute;
  top: -7px;
  right: 28px;
}

.avatar-img{
  border: 2px solid #ddd;
  border-radius: 50%;
}

.nav-top .avatar-img{
  width: 50px;
  height: 50px;
}

.nav-top-box{
  height: 42px;
  line-height: 42px;
}
/* |–––––––––––––––––[ Header Header ]–––––––––––––––| */
.header-header {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 3px solid #2d96de;
}
.header-search .search-input {
  border-right: 1px solid #ddd;
}
.header-search .search-select {
  width: 120px !important;
  border-left: 0;
  border-radius: 0;
}
.header-search .btn-lg {
  padding-left: 20px;
  padding-right: 20px;
}
.header-search .form-control {
  font-size: 12px;
}
.header-search .form-control:focus {
  border-color: #ddd;
}
.header-cart,
.header-wishlist {
  position: relative;
  display: inline-block;
  padding-left: 40px;
  vertical-align: top;
  text-align: left;
}
.header-cart .icon,
.header-wishlist .icon {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 34px;
  font-weight: normal;
}
.header-cart .title,
.header-wishlist .title {
  display: inline-block;
  width: 35px;
  line-height: 1.6;
}
.header-cart .cart-number,
.header-wishlist .cart-number {
  display: inline-block;
  font-size: 12px;
  height: 16px;
  padding: 0 8px;
  line-height: 16px;
  text-align: center;
  color: #fff;
  background-color: #ff6666;
  border-radius: 16px;
}

.header-shopping-cart-icon {
  display: inline-block;
  width: 38px;
  padding-top: 5px;
  border-radius: 50%;

}

.header-shopping-cart-icon .fa-shopping-cart{
  position: relative;
  top: 4px;
  left: 4px;
}

.header-shopping-cart-icon .shopping-cart-num {
  position: absolute;
  top: 10px;
  left: 40px;
  display: inline-block;
  height: 24px;
  width: 24px;
  line-height: 24px;
  border-radius: 50%;
  background: #ff650b;
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding: 0 2px;
}

.header-shopping-cart-icon .title{
  position: relative;
  font-size: 16px;
  top: -2px;
  left: 6px;
}

/* |-----------[sidebar Menu]----------| */

.sidebar-menu &gt; ul a {
  color: #314555;
  background-color: #fff;
}

.sidebar-menu &gt; ul li.active &gt; a {
  color: #2d96de;
}

.sidebar-menu &gt; ul li:hover &gt; a{
  color: #2d96de;
  background-color: #f3f5f7;
}

.sidebar-menu &gt; ul {
  top: 100%;
  left: 0;
}

.sidebar-menu li {
  display: block;
  position: relative;
}

.sidebar-menu &gt; ul li a {
  height: 40px;
  line-height: 40px;
}

.sidebar-menu &gt; ul a {
  color: #314555;
  background-color: #fff;
}

.sidebar-menu a {
  text-decoration: none;
  display: block;
  padding: 0 20px;
  margin: 0;
  position: relative;
}

.sidebar-menu .sidebar-message-num{
  position: absolute;
  top: 11px;
  left: 120px;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
  border-radius: 2px;
  background-color: #fc3c4a;
  color: #fff;
  font-size: 12px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

/*|----------[User Center]----------|*/
.user-content {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.user-content-box .user-info-item-box{
  background: #f7f8fa;
  margin: 20px 0;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.user-content-box .user-info-item-box .user-info-item{
  font-size: 14px;
  line-height: 30px;
  color: #5e5e5e;
}

.user-content-box .layui-form-radio&gt;i:hover,.user-content-box .layui-form-radioed&gt;i {
  color: #2d96de;
}

.user-content-box .layui-input-block {
  margin-left: 0px;
  min-height: 40p
}

.user-content-box .layui-form-item {
  margin-bottom: 0;
  height: 40px;
  border: 1px solid #81c6ff;
  border-radius: 3px;
}
.user-content-box .layui-form-radio {
  line-height: 28px;
  margin: 6px 50px 0 20px;
  padding-right: 10px;
  cursor: pointer;
  font-size: 0;
}

.user-content-box .col-lg-3-i,.user-content-box .col-md-4-i,.user-content-box .col-lg-6-i,.user-content-box .col-xs-8-i{
  float:left;
  min-height: 1px;
  margin-left:12px;
  margin-right:12px;
  position:relative;
}
.user-content-box .col-xs-8-i{
  width: 40%;
}
@media (min-width: 768px){
  .user-content-box .col-lg-6-i {
    width: 40%;
  }
}

@media (min-width: 992px) {
  .user-content-box .col-md-4-i {
    width: 30%;
  }
}

@media (min-width: 1200px){
  .user-content-box .col-lg-3-i {
    width: 22%;
  }
}

.user-content-box .goods-item-box .item-delete-tip {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #ffffffd9;
  border: 1px solid #eee;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled='true', startColorstr='#D9ffffff', endColorstr='#D9ffffff');
}

.user-content-box .z-delete-tip .item-delete-tip {
  display: block;
}

.user-content-box .item-delete-tip .tip-main {
  display: inline-block;
  padding-left: 50px;
  padding-top: 80px;
  font-size: 0;
}

.user-content-box .item-delete-tip .tip-icon {
    width: 20px;
    height: 50px;
    margin-left: -50px;
    vertical-align: middle;
}

.user-content-box  .item-delete-tip .tip-title {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  vertical-align: middle;
}

.user-content-box .item-delete-tip .tip-btnbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35px;
  overflow: hidden;
}

.user-content-box .item-delete-tip .tip-btnbox .btn-sure {
  background: #e45050;
  color: #fff;
}

.user-content-box .item-delete-tip .tip-btnbox .btn-cancel {
  background: #f6f5f5;
  color: #666;
}

.user-content-box .item-delete-tip .tip-btnbox .btn-cancel, .user-content-box .item-delete-tip .tip-btnbox .btn-sure {
  float: left;
  width: 50%;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

/**--My Orders--***/
.user-content-box .order-list-title .extra-l {
  float: left;
  padding-bottom: 5px;
  margin-right: 30px;
}

.user-content-box .order-list-title .extra-l li {
  position: relative;
  display: block;
  padding: 0;
  float: left;
  padding-right: 5px;
  text-align: center;
  width:96px;
  margin-right: 5px;
  margin-bottom: 2px;
}

.user-content-box .order-list-title .extra-l li a, .user-content-box .order-list-title .extra-l li a:focus, .user-content-box .order-list-title .extra-l li button, .user-content-box .order-list-title .extra-l li button:focus {
  padding: 5px;
  border-radius: 0px;
  border: 1px solid #f1f1f1;
  background-color: #f1f1f1;
  color: #666;
  font-size: 12px;
  line-height: 18px;
  height: 28px;
}

.user-content-box .order-list-title .extra-l li a:hover, .user-content-box .order-list-title .extra-l li a:focus:hover, .user-content-box .order-list-title .extra-l li button:hover, .user-content-box .order-list-title .extra-l li button:focus:hover {
    border: 1px solid #2d96de;
    background-color: #2d96de;
    color: #fff;
}

.user-content-box .order-list-title .extra-l li.active a, .user-content-box .order-list-title .extra-l li.active a:hover, .user-content-box .order-list-title .extra-l li.active a:focus, .user-content-box .order-list-title .extra-l li.active button, .user-content-box .order-list-title .extra-l li.active button:hover, .user-content-box .order-list-title .extra-l li.active button:focus {
    border: 1px solid #2d96de;
    background-color: #2d96de;
    color: #fff;
}

.user-content .search {
  position: relative;
}

.user-content .search .itxt {
  float: right;
  width: 180px;
  height: 30px;
  line-height: 30px;
  padding: 2px 5px 3px 10px;
  border: 1px solid #e5e6e7;
  color: #999;
}
.user-content .search .itxt:focus {
  border-color: #2d96de;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.user-content-box .order-list-content{
  width:100%;
  line-height: 20px;
  overflow: visible;
}

.user-content-box .order-list-content table {
  border-collapse: collapse;
}

.user-content-box .order-list-content .order-tb {
  width: 100%;
}
.user-content-box .order-list-content .order-tb thead th {
  margin-top: 10px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: #f5f5f5;
  color: #666;
  font-weight: 400;
}

.user-content-box .order-list-content .order-tb .sep-row {
  height: 10px;
}
.user-content-box .order-list-content .order-tb .sep-row td {
  border: 0;
}
.user-content-box .order-list-content .order-tb .tr-th {
  background: #f5f5f5;
  height: 30px;
  line-height: 30px;
  color: #aaa;
  overflow: hidden;
}

.user-content-box .order-list-content .order-tb .tr-th td {
  border-bottom-color: #f5f5f5;
}

.user-content-box .order-list-content .order-tb tbody td {
  border: 1px solid #e5e5e5;
}

.user-content-box .order-list-content .order-tb .tr-th td .th-item{
  float: left;
}

.user-content-box .order-list-content .order-tb .tr-th td .th-item{
  padding:0 20px;
}

.user-content-box .order-list-content .order-tb .tr-th td .th-item.order-time{
  width:24%;
}
.user-content-box .order-list-content .order-tb .tr-th td .th-item.order-number{
  width:40%;
}
.user-content-box .order-list-content .order-tb .tr-th td .th-item.tr-operate{
  width:30%;
}

.user-content-box .order-list-content.order-tb .tr-bd {
  text-align: center;
  vertical-align: top;
}

.user-content-box .order-list-content .order-tb .tr-bd td {
  padding:0;
  padding-top: 20px;
  vertical-align: top;
  text-align: center;
}
.user-content-box .order-list-content .order-tb .tr-bd td:first-child{
  padding-top: 10px;
}
.user-content-box .order-list-content .order-tb .tr-bd td:last-child{
  padding-top: 10px;
}
.user-content-box .order-list-content .order-tb .goods-item-box {
  float: left;
  margin-bottom :10px;
  width: 100%;
}

.user-content-box .order-list-content .order-tb .goods-item {
  width: 82%;
  display: block;
  float: left;
}

.user-content-box .order-list-content .order-tb .goods-item .p-img {
  float: left;
  width:28%;
  height: 62px;
  border: 1px solid #eee;
  margin: 0 10px;
  overflow: hidden;
}

.user-content-box .order-list-content .order-tb .goods-item .p-img img{
  height: 60px;
}

.user-content-box .order-list-content .order-tb .goods-item .p-msg {
  width: 62%;
  float: left;
}

.user-content-box .order-list-content .order-tb .goods-item .p-name {
  word-wrap: break-word;
  height: 54px;
  line-height: 18px;
  overflow: hidden;
  color: #333;
  text-align: left;
}

.user-content-box .order-list-content .order-tb .goods-item .p-name a {
  color: #666;
}

.user-content-box .order-list-content .order-tb .goods-item .p-name a:hover, .user-content-box .order-list-content .order-tb .goods-item .p-name a:focus {
  color: #2d96de;
}

.user-content-box .order-list-content .order-tb .goods-item:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.user-content-box .order-list-content .order-tb .goods-number {
  width: 18%;
  float: left;
  text-align: center;
  color: #aaa;
}

.user-content-box .order-list-content  .order-tb .tool-tip {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    cursor: pointer;
    text-align: center;
}

.user-content-box .order-list-content .order-tb .tool-tip .prompt-01 {
  position: absolute;
  z-index: 1;
  width: 360px;
  right: 96px;
  top: -52px;
  padding: 15px 20px;
  display: none;
  color: #666;
  line-height: 22px;
  cursor: auto;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 0 2px 2px #eee;
  border-radius: 1px;
}

.prompt-01 .p-arrow {
  position: absolute;
  background: url(../images/arrow-gray.png) no-repeat;
}

.user-content-box .order-list-content .order-tb .prompt-01 .p-arrow-left {
  right: -8px;
  top: 54px;
  width: 8px;
  height: 16px;
  background-position: -7px 0;
}

.user-content-box .order-list-content .order-tb .consignee .txt {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  max-width: 120px;
  text-overflow: ellipsis;
  vertical-align: middle;
  color:#666;
}

.user-content-box .order-list-content .order-tb .prompt-01 .pc {
  background: #fff;
  padding: 0;
  color: #666;
  text-align: left;
  overflow: hidden;
}

.user-content-box .order-list-content .order-tb .amount {
    color: #999;
}

.user-content-box .order-list-content .order-tb .order-status.ftx-03 {
  color: #999;
}

.user-content-box .order-detail-thead {
  margin-top: 10px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #666;
}
.user-content-box .title-bar {
  border-left: 3px solid #55a3f8;
}
.user-content-box .order-detail-tbody .item-title{
  color: #666;
  height: 40px;
  line-height: 40px;
  font-size:13px;
}

.user-content-box .order-detail-thead .item-h-detail, .order-detail-tbody .item-b-detail{
  float: left;
  width: 75%;
  font-size: 12px;
}
.user-content-box .order-detail-thead .item-h-status, .order-detail-tbody .item-b-status{
  float: left;
  width: 11%;
}
.user-content-box .order-detail-thead .item-h-operation, .order-detail-tbody .item-b-operation{
  float: left;
  width: 120px;
}

.user-content-box .order-detail-tbody  .pcb-goods .pro-title {
  padding-left: 10px;
  background: #fafafa;
  line-height: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #666;
  font-size: 13px;
}

.user-content-box .order-detail-tbody  .pcb-goods .pro-content {
  color: #6c6c6c;
  font-size: 12px;
}

.user-content-box .order-detail-tbody .p-img img{
  width: 100px;
  height: 80px;
  margin-right: 10px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.user-content .h-title .search .search-btn {
  float: left;
  width: 20%;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  border: 1px solid #e5e6e7;
  text-align: center;
  background-color: #f7f7f7;

}

.user-content .h-title .search .search-btn i {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  overflow: hidden;
  color:#999;
  margin:0 auto;
  display: block;
  top: 25%;
}


.user-content .h-title .search .search-text {
  float: left;
  width: 70%;
  height: 30px;
  line-height: 30px;
  padding: 2px 5px 3px 10px;
  border-top: 1px solid #e5e6e7;
  border-bottom: 1px solid #e5e6e7;
  border-left: 1px solid #e5e6e7;
  border-right: none;
  color: #999;
}

.user-content .h-title .search .cancel-btn-box{
  float: left;
  width: 10%;
  height: 30px;
  line-height: 30px;
  border: none;
  border-top: 1px solid #e5e6e7;
  border-bottom: 1px solid #e5e6e7;
}

.user-content .h-title .search .cancel-btn-box .search-cancel-btn {
  position: relative;
  font-size: 16px;
  width: 16px;
  height: 16px;
  display: block;
  line-height: 16px;
  text-align: center;
  color: #d8d8d8;
  border-radius: 50%;
  margin:0 auto;
  top: 25%;
}

.user-content-box .order-track-box .track-list {
  position: relative;
  overflow-y: auto;
  margin: 20px;
  margin-right: 10px;
  padding-left: 5px;
  max-height: 216px
}

.user-content-box .order-track-box .track-list::-webkit-scrollbar-thumb {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #bcbdbc
}

.user-content-box .order-track-box .track-list::-webkit-scrollbar {
  width: 7px;
  height: 9px
}

.user-content-box .order-track-box .track-list::-webkit-scrollbar-track-piece {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #ebebeb
}

.user-content-box .order-track-box .track-list ol,.user-content-box .order-track-box .track-list ul {
  list-style: none
}

.user-content-box .order-track-box .track-list li {
  position: relative;
  display: list-item;
  padding: 9px 0 0 15px;
  border-left: 1px solid #d9d9d9;
  color: #666;
  text-align: -webkit-match-parent;
  line-height: 22px
}

.user-content-box .order-track-box li .node-icon {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 11px;
  height: 11px;
  background: url(../images/order-icons.png) -21px -8px #fff no-repeat
}

.user-content-box .order-track-box .track-list li .date {
  display: inline-block;
  width: 75pt;
  border-radius: 14px;
  color: #666;
  text-align: left;
  font-size: 9pt
}

.user-content-box .order-track-box .track-list li .time,.user-content-box .order-track-box .track-list li .txt {
  position: relative;
  display: inline-block
}

.user-content-box .order-track-box .track-list li .txt {
  max-width: 505px;
  vertical-align: top
}

.user-content-box .order-track-box .track-list li .time {
  margin-right: 20px;
  width: 50px
}

.user-content-box .order-track-box .track-list li.first {
  padding-top: 0
}

.user-content-box .order-track-box .track-list li.first .node-icon {
  top: 0;
  height: 20px;
  background-position: 0
}

.user-content-box .order-track-box .track-list-date {
  margin-top: 20px
}

.user-content-box .order-track-box .track-list-date li {
  font-size: 0;
  line-height: 22px
}

.user-content-box .order-track-box .track-list-date li .date {
  display: inline-block
}

.user-content-box .order-track-box .track-list-date li .time {
  margin-left: 102px;
  vertical-align: top;
  font-size: 12px;
}

.user-content-box .order-track-box .track-list-date li .txt {
  position: relative;
  display: inline-block;
  max-width: 520px;
  vertical-align: top;
  font-size: 12px;
  width: 400px;
}

.user-content-box .order-track-box .track-list-date li .node-icon {
  top: 15px
}

.user-content-box .order-track-box .track-list-date .first .date {
  border-left-color: #fff
}

.user-content-box .order-track-box .track-list-date .afterdate .time,.user-content-box .order-track-box .track-list-date .first .time {
  margin-left: 2px
}


.user-content-box .title-box&gt;div .title-info {
  background-color: #f9f9f9;
}

.user-content-box .chat-discussion {
    background: #f9f9f9;
    padding: 15px;
    min-height: 200px;
    overflow-y: auto;
    max-height: 300px;
}

.chat-message {
    padding: 10px 20px;
}
.message-avatar {
    height: 48px;
    width: 48px;
    border: 1px solid #e7eaec;
    border-radius: 50%;
    margin-top: 1px;
}

.message {
    background-color: #fff;
    border: 1px solid #e7eaec;
    text-align: left;
    display: block;
    padding: 10px 20px;
    position: relative;
    border-radius: 4px;
}

.chat-discussion .float-right .message {
  text-align: right;
  margin-right: 60px;
}
.chat-discussion .float-left .message {
    text-align: left;
    margin-left: 60px;
}

.message-date {
    font-size: 10px;
    color: #888;
}

.chat-discussion .float-right .message-date {
  float: left;
}
.chat-discussion .float-left .message-date {
  float: right;
}

.chat-discussion .float-right .message-avatar {
  float: right;
  margin-left: 10px;
}

.chat-discussion .float-left .message-avatar {
  float: left;
  margin-right: 10px;
}

.chat-discussion .question-content {
    word-wrap: break-word;
}

.message-content {
  display: block;
}

.chat-message-form .form-group {
  margin-bottom: 0;
}

.message-input {
  height: 50px!important;
}

.form-control, .single-line {
  background-color: #FFF;
  background-image: none;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: inherit;
  display: block;
  padding: 6px 12px;
  -webkit-transition: border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;
  transition: border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;
  width: 100%;
  font-size: 12px;
}

.send-msg-btn {
  border-radius: 0px;
  width: 100%;
  height: 50px;
  text-align: center;
  font-size:14px;
  line-height: 30px;
}

.user-content-box .chat-discussion .message-author {
  color:#888;
}
.user-content-box .chat-discussion .prompt-01 .p-arrow-left {
  left: 73px;
  top: 20px;
  width: 8px;
  height: 16px;
  background-position: 0px 0px;
}
.user-content-box .chat-discussion .prompt-01 .p-arrow-right {
  right: 73px;
  top: 20px;
  width: 8px;
  height: 16px;
  background-position: -8px 0px;
}

.user-content-box .f-textarea{
    padding: 10px 10px 0;
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    overflow: hidden;
}

.user-content-box .f-textarea textarea {
  width: 100%;
  height: 54px;
  max-width: 100%;
  max-height: 54px;
  min-height: 54px;
  line-height: 18px;
  border: medium none;
  color: #333;
  resize: vertical;
  resize: none;
  font-size: 12px;
}

.user-content-box .f-textarea .textarea-ext {
  height: 30px;
  line-height: 30px;
  text-align: right;
  color: #999;
}

.user-content-box .product-reviews-box .f-item {
  border-bottom: 1px solid #f1f1f1;
  margin-top: -1px;
  margin-bottom: 1px;
  overflow: hidden;
  background: #fff;
}

.user-content-box .product-reviews-box .fi-info {
  float: left;
  border-right: 1px solid #f5f5f5;
}

.user-content-box .product-reviews-box .comment-goods .p-img {
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}

.user-content-box .product-reviews-box .comment-goods .p-name,.user-content-box .product-reviews-box .comment-goods .p-price {
    width: 100%;
    line-height: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.user-content-box .product-reviews-box .comment-goods .p-img img {
  width: 120px;
}

.user-content-box .product-reviews-box .comment-goods .p-attr {
  width: 100%;
  line-height: 20px;
  text-align: center;
  color: #999;
}

.user-content-box .product-reviews-box .fi-operate {
  overflow: hidden;
  zoom: 1;
  /*padding: 30px 10px 0;*/
  padding-bottom: 4000px;
  margin-bottom: -4000px;
  position: relative;
  z-index: 1;
}

.user-content-box .f-textarea textarat{
  word-wrap:break-word;
}

.mycomment-form .f-goods .z-tip-warn {
  padding-top: 70px;
}

.user-avatar-item-box{
  width: 100%;
}

.user-avatar{
  position: relative;
  box-sizing: border-box;
  border: 4px solid #d9dde1;
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  border-radius: 50%;
}
.user-avatar .update-avator {
  font-size: 12px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -40px;
  transition: bottom .3s;
  -moz-transition: bottom .3s;
  -webkit-transition: bottom .3s;
  -o-transition: bottom .3s;
}

.user-avatar .update-avator div {
  background: #0009;
  color: #fff;
  line-height: 40px;
}

.user-avatar .update-avator a {
  color: inherit
}
.user-avatar:hover .update-avator{
  bottom: 0px;
}
.user-avatar .layui-upload-file{
  display: none;
}

.user-info-form {
  display: none;
}

.user-info-form .layui-input-block {
  min-height: 36px;
  width: 60%;
  margin-left: 0;
  float:left;
}
.user-info-form .layui-form-item{
  padding-right: 30px;
}

.user-info-form .layui-form-label {
  float: left;
  display: block;
  padding: 9px 15px;
  width: 35%;
  font-weight: 400;
  line-height: 20px;
  text-align: right;
}

.user-info-form .layui-input:focus {
  border-color: #81c6ff!important
}

.user-info-form .layui-form-radio&gt;i:hover, .layui-form-radioed&gt;i {
  color: #2d96de;
}
.user-info-form .layui-form-radioed&gt;i {
  margin-right: 8px;
  font-size: 22px;
  color: #2d96de;
}
.user-info-form .layui-form-radio&gt;div{
  font-size: 13px;
}

.user-info-form  .layui-anim-upbit {
  -webkit-animation-name: none;
  animation-name: none;
}
.user-info-form  .layui-form-select dl {
  max-height: 110px;
}
.user-info-form .layui-form-select dl dd.layui-this {
  background-color: #2d96de;
}

/*-----address----*/
.address-box .list-box {
  margin-top: 20px;
}

.address-box .list-box .add-address {
  text-align: center;
}

.address-box .list-box li {
  position: relative;
  margin-bottom: 20px;
  padding: 20px 20px 0px 30px;
  height: 280px;
  border: 1px solid #eee;
  box-sizing: border-box;
}
.address-box .list-box .add-address .add-btn {
  width: 50px;
  height: 50px;
  margin: 70px auto 0;
  text-align: center;
  color: #fff;
  background: #d9dde1;
  font-size: 24px;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 50%;
  cursor: pointer;
}
.icon-plus:before {
  content: "\f067";
  font-family: fontAwesome;
}

.address-box .list-box .add-address .add-text {
  text-align: center;
  font-size: 14px;
  color: #4d555d;
  margin-top: 18px;
}

.address-box .list-box li .normal-icon {
  display: none;
  position: absolute;
  top: 46px;
  right: -1px;
}

.address-box .list-box .hide {
  display: none!important
}

.address-box .list-box .show {
  display: block!important;
}

.address-box .list-box li .normal-icon .triangle-topright {
  width: 0;
  height: 0;
  border-top: 50px solid #2d96de;
  border-left: 50px solid #0000;
}

.address-box .list-box li .normal-icon i {
  position: absolute;
  top: -37px;
  right: -4px;
  transform: rotate(45deg);
  color: #fff;
  font-style: normal;
  font-size: 12px;
}

.address-box .list-box li h3 {
  margin-bottom: 5px;
  font-size: 16px;
  color: #07111b;
  font-weight: 500;
  line-height: 32px;
}

.address-box .list-box li .company-text,.address-box .list-box li .phone-text,.address-box .list-box li .email-text, .address-box .list-box li .tax-id-text, .address-box .list-box li .detail-text {
  font-size: 12px;
}

.address-box .list-box li .detail-key{
  width: 22%;
}
.address-box .list-box li .detail-value{
  width: 78%;
}

.address-box .list-box li .modify-box {
  display: none;
  position: absolute;
  font-size: 12px;
  color: #2d96de;
  bottom: -2px;
  right: 20px
}

.address-box .list-box li .modify-box .normal-btn {
  display: none
}

.address-box .list-box li .modify-box .modify-btn {
  margin-right: 22px;
  margin-left: 80px
}

.address-box .list-box li:hover{
  background: #fafafa;
}
.address-box .list-box li:hover .modify-box {
  display: block;
}

.address-info .layui-input-block {
  min-height: 36px;
  width: 60%;
  margin-left: 0;
  float:left;
  padding-bottom: 10px;
}
.address-info .layui-form-item{
  padding-right: 30px;
  margin-bottom: 0px;
}
.address-info .layui-form-label {
  float: left;
  display: block;
  padding: 9px 15px;
  width: 40%;
  font-weight: 400;
  line-height: 20px;
  text-align: right;
  padding-bottom: 15px;
}

.address-info .layui-form-checked i, .layui-form-checked:hover i {
  color: #2d96de;
}

.address-info .layui-form-checked,.address-info .layui-form-checked:hover {
  border-color: #2d96de;
}

.address-info .layui-input:focus,.layui-textarea:focus {
  border-color: #81c6ff!important
}

.address-info .layui-form-checked[lay-skin=primary] i {
  border-color: #5FB878;
  background-color: #2d96de;
  color: #fff;
}

.address-info  .layui-form-checkbox[lay-skin=primary]:hover i {
  border-color: #2d96de;
  color: #fff;
}

.address-info .layui-form-select dl dd.layui-this {
  background-color: #2d96de;
  color: #fff;
}

.address-info{
  display: none;
}


.address-info .layui-form-select dl{
  height: 180px;
}

.address-info .layui-anim-upbit {
  -webkit-animation-name: none;
  animation-name: none;
}


/*|------[Cart]------|*/
.cart-box .cart-form-checkbox :hover i {
  border-color: #2d96de;
  background-color: #2d96de;
  color: #fff;
}

.cart-box .cart-tbody .item-single .cell {
  float: left;
  padding: 15px 0 10px;
}

.cart-box .cart-tbody .item-single .p-checkbox {
  width: 5%;
}

.cart-box .cart-tbody .item-single .p-ops {
  width: 5%;
}
.cart-box .cart-tbody .item-single .p-ops a {
  color: #999;
  display: block;
}

/**pcb cart - start**/
.cart-box .cart-tbody .item-single .pcb-item {
  width: 90%;
}
.cart-box .cart-tbody .item-single .pcb-item .pcb-goods {
  width: 71.1111111%;
}
.cart-box .cart-tbody .item-single .pcb-item .pcb-goods .pro-title {
  padding-left: 10px;
  background: #fafafa;
  line-height: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}
.cart-box .cart-tbody .item-single .pcb-item .pcb-quantity {
  width: 14.4444444%;
}
.cart-box .cart-tbody .item-single .pcb-item .pcb-sum {
  width: 14.4444444%;
  text-align: center;
}
.cart-box .cart-tbody .item-single .pcb-item .pcb-detail {
  color:#6c6c6c;
  font-size: 12px;
}
/**pcb cart - end**/

/**product cart - start**/
.cart-box .cart-tbody .item-single .p-goods {
  width: 64%;
}

.cart-box .cart-tbody .item-single .goods-item {
  padding-right:10px;
  padding-left:0px;
  padding-bottom:10px;
}
.cart-box .cart-tbody .item-single .p-props {
  padding:0;
}

.cart-box .cart-tbody .item-single .goods-item .p-img {
  float: left;
  width: 80px;
  height: 60px;
  border: 1px solid #eee;
  margin-right: 10px;
  background: #fff;
  padding: 0;
  text-align: center;
  overflow: hidden;
}
.cart-box .cart-tbody .item-single .goods-item .p-img img{
  height: 60px;
}

.cart-box .cart-tbody .item-single .goods-item .p-name {
  height: 60px;
  line-height: 20px;
  overflow: hidden;
  word-wrap: break-word;
  padding-right: 30px;
}

.cart-box .cart-tbody .item-single .p-props .props-txt {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: default;
  color: #999;
  line-height: 20px;
  font-size:12px;
}

.cart-box .cart-tbody .item-single .p-quantity {
  width: 13%;
}

.cart-box .cart-tbody .item-single .p-quantity .quantity-form {
  position: relative;
  overflow: hidden;
  height: 22px;
  width: 86px;
  margin: 0 auto;
  z-index: 1;

}

.cart-box .cart-tbody .item-single .p-quantity .decrement {
  float: left;
}

.cart-box .cart-tbody .item-single .p-quantity .decrement,.cart-box .cart-tbody .item-single .p-quantity .increment {
  border: 1px solid #cacbcb;
  border-right: 0;
  height: 18px;
  line-height: 14px;
  padding: 1px 0;
  width: 18px;
  text-align: center;
  color: #666;
  margin: 0;
  background: #fff;
}

.cart-box .cart-tbody .item-single .p-quantity .itxt {
  position: absolute;
  left: 18px;
  top: 0;
  border: 1px solid #cacbcb;
  width: 50px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  padding: 1px;
  margin: 0;
  font-size: 12px;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cart-box .cart-tbody .item-single .p-quantity .decrement.disabled, .cart-tbody .item-single .p-quantity .increment.disabled {
  cursor: default;
  color: #e9e9e9;
}

.cart-box .cart-tbody .item-single .p-quantity .increment {
  float: right;
  border: 1px solid #cacbcb;
  border-left: 0;
  color: #666;
}

.cart-box .cart-tbody .item-single .p-quantity .quantity-txt {
  position: relative;
}

.cart-box .cart-tbody .item-single .p-sum {
  width: 13%;
  text-align: center;
}


/**product cart - end **/

.cart-box .cart-tbody .item-single .item-form:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.cart-box .cart-tfoot{
  height: 40px;
  line-height: 40px;
  border:1px solid #f1f1f1;
  margin-top: 10px;
}

/* .cart-box .cart-tfoot .column {
  float: left;
  text-align: center;
} */
.cart-box .cart-tfoot{
  color: #999;
  font-size: 12px;
}
.cart-box .cart-tfoot .t-checkbox {
  width: 5%;
}

.cart-box .cart-tfoot .t-select-all {
  width: 15%;
  line-height: 42px;
}
.cart-box .cart-tfoot .t-total-quantity {
  width: 20%;
  text-align: center;
}
.cart-box .cart-tfoot .t-total-weight {
  width: 25%;
  text-align: center;
}
.cart-box .cart-tfoot .t-total-price {
  width: 35%;
  text-align: center;
}

.cart-box .t-total-quantity span,.cart-box .t-total-weight span ,.cart-box .t-total-price span{
  font-size: 18px;
  font-weight:700;
  color: #FF5A0F;
}


.cart-box .cart-tfoot-bar  {
  margin-top: 30px;
}

.cart-box .cart-tfoot-bar .t-checkout {
  float: right;
}

.cart-empty{
  height: 100px;
  padding: 80px 0 160px;
  text-align: center;
  font-size: 16px;
  color: #666;
}

.cart-empty .cart-empty-icon{
  padding-bottom: 30px;
}

.cart-out-stock-box{
  display: none;
}

.pcb-detail .pcba-list-table {
  border-collapse: collapse;
  text-align: center;
  font-size: 12px;
  border-spacing: 0;
  width: 100%;
}
.pcb-detail .pcba-list-table th {
  padding: 5px 0;
  border-right: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  line-height: 20px;
  text-align: center;
}

.pcb-detail .pcba-list-table td {
  padding: 5px;
  border-right: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  word-wrap: break-word;
  word-break: break-all;
}
.pcb-detail .pcba-list-table th:last-child, .pcb-detail .pcba-list-table td:last-child {
  border-right: none;
}

.pcb-detail .pcba-list-table td:first-child {
  width: 6.1%;
}

.pcb-detail .pcba-list-table td:nth-child(2) {
  width: 19.207317%;
}

.pcb-detail .pcba-list-table td:nth-child(3), .pcb-detail .pcba-list-table td:nth-child(4) {
  width: 21.341463%;
}

.pcb-detail .pcba-list-table td:nth-child(5),.pcb-detail .pcba-list-table td:nth-child(6),.pcb-detail .pcba-list-table td:last-child  {
  width: 10.670732%;
}

/* |-----[order confirm]------| */
.confirm-box{
  padding: 10px 10px 0;
  border: 1px solid #f0f0f0;
}

.confirm-cart-box .cart-tbody .item-single .cell {
  float: left;
  padding: 15px 0 10px;
}

/**pcb cart start**/
.confirm-cart-box .cart-tbody .item-single .pcb-item {
  width: 100%;
}
.confirm-cart-box .cart-tbody .item-single .pcb-item .pcb-goods {

  width: 75%;
}
.confirm-cart-box .cart-tbody .item-single .pcb-item .pcb-goods .pro-title {
  padding-left: 10px;
  background: #fafafa;
  line-height: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}
.confirm-cart-box .cart-tbody .item-single .pcb-item .pcb-quantity {
  width: 10%;
  text-align: right;
}
.confirm-cart-box .cart-tbody .item-single .pcb-item .pcb-sum {
  width: 15%;
  text-align: right;
}
.confirm-cart-box .cart-tbody .item-single .pcb-item .pcb-detail {
  color: #6c6c6c;
  font-size: 12px;
}

/**pcb cart end**/

.confirm-cart-box .cart-tbody .item-single .p-goods {
  width: 75%;
}

.confirm-cart-box .cart-tbody .item-single  .p-img img {
  width: 100px;
  height: 80px;
  margin-right: 10px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.confirm-cart-box .cart-tbody .item-single .p-goods .p-name {
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
}

.confirm-cart-box .cart-tbody .item-single .p-props .props-txt {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: default;
  color: #999;
  font-size: 12px;
}


.confirm-cart-box .cart-tbody .clear,.cart-box .cart-tbody .clr {
  display: block;
  overflow: hidden;
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.confirm-cart-box .cart-tbody .item-single .p-quantity {
  width: 10%;
  text-align: right;
}

.confirm-cart-box .cart-tbody .item-single .p-quantity .quantity-form {
  position: relative;
  overflow: hidden;
  height: 22px;
}

.confirm-cart-box .cart-tbody .item-single .p-sum {
  width: 15%;
  text-align: right;
}

.confirm-cart-box .cart-tbody .item-single .item-form:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.confirm-box .confirm-address-box .address-list .show-more-btn b{
  display: inline-block;
  vertical-align: middle;
  height: 10px;
  line-height: 10px;
  width: 9px;
  margin-left: 5px;
}
.confirm-box .confirm-address-box .address-list .show-more-btn.switch-off b{
  background : url(../images/addr-i.png) no-repeat 0 -10px;
}
.confirm-box .confirm-address-box .address-list .show-more-btn.switch-on b{
  background : url(../images/addr-i.png) no-repeat 0 0;
}
.confirm-box .confirm-address-box .address-list-line{
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
}
.confirm-box .confirm-address-box .address-list-line .set-default-btn{
  height: auto;
  padding: 0;
}
.confirm-box .confirm-address-box .address-checkbox {
  padding-top: 9px;
}
.confirm-box .confirm-address-box .address-detail {
  width: 75%;
  word-wrap:break-word;
  display: inline-block;
}
.confirm-box .confirm-address-box .address-ops {
  width: 20%;
  display: inline-block;
}

.confirm-box .confirm-address-box .address-ops .def{
  color: #ccc;
}

.confirm-box .shipment-method-list .shipment-method-checkbox {
  padding-top: 9px;
}

.confirm-box .shipment-method-list .shipment-method-detail img{
  float:left;
  margin:4px 12px 4px 0px;
  width: 80px;
  height: 16px;
}

.confirm-box .shipment-method-list .shipment-method-line
{
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
}

.confirm-box .shipment-method-tips .shipment-method-line {
  padding-bottom: 10px;
  width: 100%;
}

.confirm-box .confirm-payment-box .payment-method-detail img{
  float:left;
  margin:4px 12px 4px 0px;
  width: 60px;
  height: 15px;
}
.confirm-box .confirm-payment-box .payment-checkbox {
  padding-top: 8px;
}
.confirm-box .confirm-payment-box .payment-method-line,.confirm-box .confirm-payment-box .coupon-code-line{
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
}

.confirm-box .confirm-payment-box .coupon-code-input{
  padding:3px 8px;
  height: 30px;
  line-height: 30px;
}

.confirm-box .confirm-payment-box .coupon-code-input-disabled {
  background-color: #66666629;
  border: none;
  height: 33px;
  width: 166px;
}

.confirm-box .confirm-payment-box .coupon-code-add-btn,.confirm-box .confirm-payment-box .coupon-code-cancel-btn{
  height: 30px;
  line-height: 28px;
  text-decoration: underline;
}

.cart-summary .statistic {
  margin-right: 20px;
  margin-bottom: 10px;
  width: 540px;
}
.cart-summary .statistic .list {
  overflow: hidden;
  margin-bottom: 5px;
  height: 24px;
  line-height: 24px;
  zoom: 1;
  width: 100%;
}
.cart-summary .statistic .list .ftx-01{
  color:#ff650b;
}
.cart-summary .statistic span {
  float: left;
  text-align: right;
}
.cart-summary .statistic span:first-child{
  width: 370px;
  /* padding-right: 30px; */
}
.cart-summary .statistic span:nth-child(2){
  width: 170px;
}
.trade-foot .trade-foot-detail {
  padding: 15px 10px 15px 0;
  background-color: #f9f9f9;
  text-align: right;
  float: right;
  width: 100%;
}
.trade-foot .trade-foot-detail .fc-consignee-info, .trade-foot .trade-foot-detail .fc-price-info{
  line-height: 25px;
}
.trade-foot .trade-foot-detail .fc-price-info .price-num {
  float: right;
  min-width: 140px;
  color: #ff650b;
  text-align: right;
  font-weight: 700;
  font-size: 18px;
}
.trade-foot .fc-consignee-info span{
  color:#999;
}

/* |–––––––––––––––––[ Header Menu ]–––––––––––––––| */
.nav-menu &gt; li &gt; a,
.nav-menu-fixed &gt; a {
  color: #fff;
}
.nav-menu-fixed &gt; a,
.nav-menu &gt; li:hover &gt; a,
.nav-menu &gt; li.active &gt; a {
  background-color: #2d96de;
}
.nav-menu &gt; li &gt; ul a {
  color: #314555;
  background-color: #fff;
}
.nav-menu &gt; li &gt; ul li:hover &gt; a,
.nav-menu &gt; li &gt; ul li.active &gt; a {
  color: #2d96de;
  background-color: #f1f1f1;
}
.nav-bar {
  position: relative;
}
.nav-header {
  position: relative;
  display: none;
}
.nav-menu &gt; li a .indicator {
  margin-left: 10px;
}
.nav-menu &gt; li &gt; ul li a .indicator {
  position: absolute;
  top: 0;
  right: 15px;
}
.nav-toggle {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 40px;
  padding: 10px 4px;
  left: 0;
}
.nav-toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.nav-toggle i + i {
  margin-top: 7px;
}
.nav-menu {
  margin: 0 auto;
  list-style: none;
  padding: 0;
  position: relative;
}
.nav-menu:before,
.nav-menu:after {
  content: "";
  display: table;
}
.nav-menu:after {
  clear: both;
}
.nav-menu.nav-menu-fixed {
  position: absolute;
  top: 0;
  right: 0;
}
.nav-menu.nav-menu-fixed a {
  display: inline-block;
}
.nav-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu &gt; li &gt; ul,
.nav-menu &gt; li &gt; ul &gt; li ul,
.nav-menu .mega-menu {
  background: #fff;
  margin: 0;
  display: none;
  min-width: 200px;
  position: absolute;
  z-index: 99;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.nav-menu &gt; li &gt; ul {
  top: 100%;
  left: 0;
}
.nav-menu &gt; li:last-child &gt; ul {
  right: 0;
}
.nav-menu &gt; li &gt; ul &gt; li ul {
  top: 0;
  left: 100%;
}
.nav-menu &gt; li:last-child &gt; ul &gt; li ul {
  right: 100%;
}
.nav-menu .mega-menu {
  width: 100%;
  top: 100%;
  left: 0;
  padding: 15px 20px;
}
.nav-menu li {
  display: block;
  position: relative;
}
.nav-menu .dropdown-mega-menu {
  position: static;
}
.nav-menu &gt; li {
  float: left;
}
.nav-menu a {
  text-decoration: none;
  display: block;
  padding: 0 20px;
  margin: 0;
  position: relative;
}
.nav-menu .mega-menu a {
  padding: 0;
}
.nav-menu &gt; li &gt; a,
.nav-menu &gt; a {
  height: 40px;
  line-height: 40px;
}
.nav-menu &gt; li ul li a {
  height: 35px;
  line-height: 35px;
}
.nav-menu .mega-menu li a {
  height: 30px;
  line-height: 30px;
}
.nav-menu .mega-menu .mega-title {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  font-size: 14px;
}
@media only screen and (max-width: 959px) {
  .nav-menu {
    background-color: #fff;
  }
  .nav-menu li &gt; a,
  .nav-menu li.active a {
    color: #314555;
    background-color: #fff;
  }
  .nav-menu li:hover &gt; a,
  .nav-menu li.active-mobile &gt; a {
    color: #2d96de;
    background-color: #f1f1f1;
  }
  .nav-header {
    display: block;
  }
  .nav-collapse {
    display: none;
    padding-bottom: 10px;
  }
  .nav-header,
  .nav-menu.nav-menu-fixed a {
    height: 60px;
    line-height: 60px;
  }
  .nav-menu &gt; li a .indicator {
    position: absolute;
    top: 0;
    right: 20px;
  }
  .nav-menu ul {
    padding-left: 20px;
  }
  .nav-menu .mega-menu,
  .nav-menu &gt; li &gt; ul,
  .nav-menu &gt; li &gt; ul &gt; li ul {
    width: 100%;
    position: static;
  }
  .nav-menu .mega-menu {
    padding: 0 20px;
  }
  .nav-menu li {
    width: 100%;
    float: none;
    border-bottom: 1px solid #eee;
  }
  .nav-menu li:last-child {
    border-bottom: 0;
  }
  .nav-menu &gt; li &gt; a {
    height: 40px;
    line-height: 40px;
  }
  .nav-menu &gt; li ul li a {
    height: 40px;
    line-height: 40px;
  }
}

.nav-menu .topbar-dropdown {
  transition: height .2s cubic-bezier(0,0,.2,1) 0ms;
  background: #fff;
  color: #fff;
  position: absolute;
  z-index: 998;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.13);
  border: 1px solid #bbb;
  width: 500px;
  margin: 0 auto;
  -webkit-border-radius: 0px 0px 3px 3px;
  -moz-border-radius: 0px 0px 3px 3px;
  left: 50%;
  /* margin-left: -200px; */
  border-radius: 0px 0px 3px 3px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––&gt;&gt;&gt; Footer  &lt;&lt;&lt;–––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.footer-top-area h2 {
  font-size: 16px;
  line-height: 26px;
  color: #eee;
  margin: 0 0 40px 0;
  text-transform: uppercase;
}
.footer-top-area .twitter-list a,
.footer-top-area .twitter-list .ico {
  color: #2d96de;
}
.footer-top-area .twitter-list .ico {
  font-size: 18px;
  margin-right: 8px;
}
.footer-top-area .footer-links ul li a {
  display: block;
  position: relative;
  color: #bbbec1;
  height: 25px;
  line-height: 25px;
  padding-left: 20px;
  text-transform: capitalize;
}
.footer-top-area .footer-links ul li a:before {
  content: "\f105";
  font-family: fontAwesome;
  font-size: 15px;
  position: absolute;
  left: 0;
  top: 0;
  height: inherit;
  line-height: inherit;
  color: #2d96de;
}
.main-footer {
  text-align: center;
  background: #1e2b35;
  height: 60px;
}
.main-footer p {
  font-size: 15px;
  line-height: 26px;
  color: #647d89;
  margin: 17px 0 0 0;
}
.payment-methods {
  opacity: 0.8;
}
.payment-methods img {
  border-radius: 2px;
  width: 55px;
}
.payment-methods span {
  padding: 0 2px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––––&gt;&gt;&gt; Back to Top  &lt;&lt;&lt;–––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––––[ Back Top Styles ]––––––––––––– */
.back-top {
  z-index: 9999;
  position: fixed;
  right: 20px;
  bottom: -10px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 400ms linear 0ms;
  -ms-transition: all 400ms linear 0ms;
  -o-transition: all 400ms linear 0ms;
  transition: all 400ms linear 0ms;
  background-color: #00000050;
  font-size: 20px;
}
.back-top:hover {
  background-color: #6c6c6c;
}
.back-top.show {
  opacity: 1;
  bottom: 30px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––&gt;&gt;&gt; Coupons Header  &lt;&lt;&lt;–––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.nav-coupon-category li a {
  display: block;
  position: relative;
  text-transform: uppercase;
  line-height: 43px;
  height: 43px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #717f86;
  padding-left: 5px;
  font-size: 12px;
  -webkit-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media only screen and (min-width: 1200px) {
  .nav-coupon-category li a {
    line-height: 46px;
    height: 46px;
  }
}
.nav-coupon-category .all-cat a {
  padding-right: 20px;
  padding-left: 20px;
  height: 50px;
  line-height: 50px;
}
.nav-coupon-category li a .fa {
  font-size: 15px;
  width: 40px;
  margin-right: 20px;
  color: #2d96de;
  border-right: 1px solid #ddd;
  text-align: center;
}
.nav-coupon-category li a &gt; span {
  margin-left: 8px;
  color: #bfbfbf;
  padding: 1px 7px;
  border-radius: 2px;
  font-size: 11px;
  -webkit-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.nav-coupon-category li a:hover {
  padding-left: 12px;
}
.nav-coupon-category li a:hover &gt; span {
  margin-left: 10px;
  color: #fff;
  background-color: #2d96de;
}
.nav-coupon-category li + li {
  border-top: 1px solid #eee;
}
.price {
  color: #e4393c;
  margin-bottom: 0;
}
.price-sale {
  color: #999;
  font-size: 50%;
  text-decoration: line-through;
  margin-left: 1em;
}

.deal-thumbnail:before {
  cursor:pointer;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…B3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=);
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.2)), color-stop(30%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.5)), color-stop(100%, rgba(0, 0, 0, 0.95)));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.95) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.95) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 0;
  opacity: 0.5;
}
.deals-header-area {
  /* max-width: 1370px; */
  margin:0 auto;
}

.deals-header-area .deal-single {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.deals-header-area .deal-thumbnail {
  height: 450px;
  font-family: 'monL', sans-serif;
  font-weight: 100;
}
@media (max-width: 991px) {
  .deals-header-area .deal-thumbnail {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .deals-header-area .deal-thumbnail {
    height: 250px;
  }
}
.deal-single.goods-item{
  border: 1px solid #eee;
}
.deal-single .time-left {
  font-size: 13px;
  position: absolute;
  color: #fff;
  z-index: 10;
}
.deal-single .deal-store-logo {
  z-index: 10;
  width: 50px;
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.deal-single .deal-store-logo img {
  border-radius: 3px;
}
.deal-actions {
  position: absolute;
  z-index: 10;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.deal-actions li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  color: #fff;
  cursor: pointer;
}
.deal-actions li &gt; span {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 4px;
  background-color: #000;
  opacity: 0.6;
  filter: alpha(opacity=60);
  text-align: center;
}
.deal-actions li .share-tooltip {
  position: absolute;
  right: -48px;
  top: 35px;
  background-color: #2d96de;
  white-space: nowrap;
  display: block;
  padding: 0 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.deal-actions li .share-tooltip:after {
  border: solid transparent;
  content: ' ';
  height: 0;
  position: absolute;
  right: 30%;
  top: -12px;
  left: inherit;
  z-index: 2;
  width: 0;
  border-width: 7px;
  border-bottom-color: #2d96de;
}
.deal-actions li .share-tooltip a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  padding: 0 6px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.deal-actions li.like-deal.favorite .fa-heart {
  color: red;
}
.deal-single .deal-price{
  width: 100%;
}
.deal-single .deal-title a{
  display: block;
  width: 100%;
  height: 40px;
  overflow: hidden;
  word-wrap: break-word;
}
.deal-single .label {
  text-transform: uppercase;
}
.deal-single .label-featured {
  position: absolute;
  z-index: 2;
}
.deal-single .panel-body {
  position: relative;
}
.deal-single p {
  font-size: 12px;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––&gt;&gt;&gt; Stores Area  &lt;&lt;&lt;–––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.stores-area-v1 .store-logo {
  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%);
}
.stores-area-v1 .store-name {
  padding: 6px 0;
  border-top: 1px solid #f1f1f1;
  background-color: #f7f8f9;
}
.stores-area-v2 .letters-toolbar span a {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}
.stores-area-v2 .letters-toolbar span + span a {
  border-left: 1px solid #eee;
}
.stores-area-v2 .letters-toolbar .all-stores a {
  width: auto;
  padding: 0 12px;
}
.stores-area-v2 .stores-cat {
  display: inline-block;
  width: 100%;
}
.stores-area-v2 .stores-cat .stores-cat-header {
  color: #2d96de;
  padding: 0 30px;
  line-height: 48px;
  margin: 0px;
  display: inline-block;
  width: 100%;
  background-color: #f7f8f9;
}
.stores-area-v2 .stores-cat .stores-cat-body {
  padding: 30px;
}
.stores-area-v2 .stores-cat li a {
  line-height: 36px;
  color: #777;
  display: inline-block;
  width: 100%;
}
.stores-area-v2 .stores-cat li a:hover {
  color: #333;
}
.stores-area-v2 .stores-cat ul li ul {
  padding: 0px;
  border-right: 1px dashed #cccccc;
}
.stores-area-v2 .stores-cat ul li:last-child ul {
  border-right: none;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––––&gt;&gt;&gt; Store Page  &lt;&lt;&lt;–––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.store-page .store-splitter-left {
  border-left: 1px dashed #ddd;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––&gt;&gt;&gt; Posted Review  &lt;&lt;&lt;––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.review-wrapper {
  border: 2px solid #e5ecf4;
  background-color: #fbfbfb;
  border-radius: 4px;
  padding: 10px 20px;
  position: relative;
  overflow: visible;
}
.review-wrapper:before,
.review-wrapper:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  z-index: 10;
}
.review-date {
  font-size: 13px;
  color: #9e9e9e;
  margin-top: 5px;
}
.review-avatar img {
  width: 80px;
  border-radius: 4px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––&gt;&gt;&gt; Deals Area  &lt;&lt;&lt;–––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.deals-area header.panel {
  overflow: visible;
  z-index: 11;
}

.deals-area header .layui-form-select dl dd.layui-this {
  background-color: #2d96de;
  color: #fff;
}
.deals-area header .layui-breadcrumb a:hover{
  color:#2d96de!important
}
.deals-area header .layui-form-label{
  width: auto;
  padding: 8px 15px 0px;
}

.deals-area header .layui-anim-upbit {
  -webkit-animation-name: none;
  animation-name: none;
}

.deals-area header .layui-input, .layui-select, .layui-textarea {
  height: 30px;
}
.deals-area header .layui-input-block{
  padding-top:3px;
}
.deals-area header .layui-form-select dl {
  top:36px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––&gt;&gt;&gt; Coupons Area  &lt;&lt;&lt;–––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.coupon-single {
  position: relative;
}
.showcode {
  position: relative;
  z-index: 1;
}
.coupon-hide {
  display: block;
  width: 100%;
  height: 34px;
  line-height: 34px;
  padding: 0 15px;
  font-size: 15px;
  color: #F50;
  border-radius: 3px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, #eee 10px, #eee 20px), linear-gradient(to bottom, #c2ead4, #c2ead4);
}
.show-code {
  position: absolute;
  top: 0;
  left: 0;
}
.showcode:hover .show-code {
  width: 80%;
}
.coupon-showen .coupon-hide {
  text-align: center;
  border: 2px dashed #2d96de;
  line-height: 28px;
}
.coupon-showen .show-code {
  display: none;
}
@media only screen and (min-width: 768px) {
  .coupons-area-list .showcode {
    width: 50%;
    float: right;
  }
}
.coupon-single .ribbon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  width: 80px;
  height: 85px;
}
.ribbon {
  font-size: 10px;
  position: relative;
  top: 17px;
  left: -8px;
  width: 120px;
  padding: 1px;
  color: #fff;
  text-align: center;
  background-color: #ff3100;
  text-transform: uppercase;
  z-index: 2;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––&gt;&gt;&gt; Subscribe Area  &lt;&lt;&lt;–––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.newsletter-form {
  max-width: 480px;
  margin: 25px auto 0;
}
.newsletter-form .form-control {
  border-color: #2d96de;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––&gt;&gt;&gt; Get Coupon Area  &lt;&lt;&lt;–––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.get-coupon-area {
  text-align: center;
}
.get-coupon-area .coupon-code {
  display: inline-block;
  font-size: 21px;
  position: relative;
  margin: 20px auto;
  padding: 5px 30px;
  text-align: center;
  border: 2px dashed azure;
  background-color: #d9edf7;
  color: #F50;
}
.get-coupon-area .about-coupon p {
  margin-bottom: 15px;
}
.get-coupon-area .like-report {
  color: #7b8b8e;
}
.get-coupon-area .like-report .link-vote {
  font-size: 16px;
  padding: 5px 8px;
}
.get-coupon-area .like-report .link-vote.like {
  color: #649127;
}
.get-coupon-area .like-report .link-vote.dislike {
  color: #d70954;
}
.get-coupon-area .modal-footer {
  background-color: #f5fdf9;
}
.get-coupon-area .social-icons .fa {
  height: 28px;
  width: 28px;
  line-height: 28px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––&gt;&gt;&gt; Sign In / Up Area  &lt;&lt;&lt;–––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.sign-area .sign-area-box {
  width: 500px;
  margin: 0 auto;
}
.sign-area .sign-title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.sign-area .col-left {
  border-right: 1px solid #eee;
}
.sign-area label {
  font-weight: normal;
}
.sign-area .or {
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  margin-right: -20px;
  margin-top: -20px;
  color: #97a4ad;
  text-transform: uppercase;
}
.btn-social {
  text-transform: capitalize;
  position: relative;
  letter-spacing: 0.5px;
  border: 0;
}
.btn-social .fa {
  font-size: 20px;
  position: absolute;
  top: 13px;
  left: 18px;
}
.btn-facebook {
  background-color: #3b5999;
}
.btn-facebook:hover,
.btn-facebook:focus {
  background-color: #344e87;
}
.btn-twitter {
  background-color: #00aced;
}
.btn-twitter:hover,
.btn-twitter:focus {
  background-color: #0099d4;
}
.btn-google-plus {
  background-color: #dd4b39;
}
.btn-google-plus:hover,
.btn-google-plus:focus {
  background-color: #d73925;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––––&gt;&gt;&gt; Contact Area  &lt;&lt;&lt;––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.contact-area .contact-list {
  padding-top: 20px;
}
.contact-area .contact-list li {
  position: relative;
  padding: 0 0 0 46px;
  margin-bottom: 20px;
}
.contact-area .contact-list li h5 {
  margin-bottom: 6px;
}
.contact-area .contact-list li .icon {
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 25px;
  color: #fff;
  background-color: #2d96de;
  border-radius: 3px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 2px #2d96de;
  box-shadow: 0 0 0 2px #2d96de;
}
.contact-area-v1 {
  border-top: 4px solid #2d96de;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––&gt;&gt;&gt; Error Page Area  &lt;&lt;&lt;–––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.error-page-header {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 250px;
  line-height: 1;
}
.error-page-header span {
  margin: -20px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––––––&gt;&gt;&gt; Faq Area  &lt;&lt;&lt;––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.faq-area .panel-default &gt; .panel-heading {
  border: 0;
  padding: 0;
  position: relative;
}
.faq-area .panel-title {
  font-size: 15px;
}
.faq-area .panel-title &gt; a {
  display: block;
  padding: 15px;
  background-color: #2d96de;
  color: #fff;
  -webkit-transition: all 0s linear;
  -ms-transition: all 0s linear;
  -o-transition: all 0s linear;
  transition: all 0s linear;
}
.faq-area .panel-title &gt; a.collapsed {
  background-color: #f9f9f9;
  color: #222;
}
.faq-area .panel-default &gt; .panel-heading + .panel-collapse &gt; .panel-body {
  border-top: 0;
}
.faq-area .panel-title a:before {
  font-family: 'FontAwesome';
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 999px;
  position: absolute;
  right: 10px;
  top: 13px;
  font-size: 13px;
  display: inline-block;
  text-align: center;
}
.faq-area .panel-title .collapsed:before {
  content: "\f067";
  color: #222;
}
.faq-area .panel-title a:before {
  content: "\f068";
  color: #fff;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––––––––&gt;&gt;&gt; Cart  &lt;&lt;&lt;––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.cart-list {
  width: 100%;
}
.cart-list thead {
  border-bottom: 15px solid #e9ebee;
}
.cart-list thead th {
  padding: 15px;
}
.cart-list thead th:nth-child(1) {
  width: 50%;
}
.cart-list thead th:nth-child(2),
.cart-list thead th:nth-child(3),
.cart-list thead th:nth-child(4) {
  width: 15%;
}
.cart-list thead th:nth-child(5) {
  width: 5%;
}
.cart-list tbody tr {
  border-bottom: 10px solid #e9ebee;
}
.cart-list tbody tr:last-child {
  border-bottom: 0;
}
.cart-list tbody tr td {
  padding: 15px;
  vertical-align: middle;
  color: #555;
}
.cart-list .product-thumb {
  width: 120px;
  margin-right: 10px;
}
.cart-list .media-body .type span {
  color: #222;
}
.cart-list .quantity-label {
  width: 45px;
  border: 0;
  background: transparent;
  outline: none !important;
}
.cart-list .sub-total {
  color: #2d96de;
}
.cart-list i.fa-trash-o {
  font-size: 18px;
  color: #F00;
}
.cart-list tbody tr td .close {
  float: left;
  opacity: 1;
}
.cart-price ul {
  padding: 15px 30px;
}
.cart-price ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 10px;
}
.cart-price ul li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.cart-price ul li .item-name {
  float: left;
  color: #8b8b8b;
}
.cart-price ul li .price {
  text-align: right;
  color: #999;
}
.cart-price ul li .item-name strong {
  color: #222222;
  font-size: 14px;
}
.cart-price ul li .price span {
  color: #2d96de;
  font-size: 15px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––––––&gt;&gt;&gt; Wishlist  &lt;&lt;&lt;––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.wishlist {
  width: 100%;
}
.wishlist tbody tr {
  border-bottom: 20px solid #e9ebee;
}
.wishlist tbody tr:last-child {
  border-bottom: 0;
}
.wishlist tbody tr td {
  padding: 15px;
  vertical-align: middle;
  color: #555;
}
.wishlist .product-thumb {
  width: 120px;
  margin-right: 10px;
}
.wishlist .media-body .type span {
  color: #222;
}
.wishlist tbody tr td .close {
  opacity: 1;
}
.wishlist i.fa-trash-o {
  font-size: 18px;
  color: #F00;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––&gt;&gt;&gt; Blog Area  &lt;&lt;&lt;––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.post-thumbnail {
  position: relative;
}
.post-thumbnail:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.entry {
  position: relative;
}
.entry .entry-date {
  top: 15px;
  left: 15px;
  position: absolute;
  z-index: 10;
  width: 60px;
}
.entry .entry-date &gt; h4,
.entry .entry-date &gt; h6 {
  color: #fcfcfc;
  font-size: 22px;
  background: #2d96de;
  text-align: center;
  padding: 5px;
  border-radius: 3px 3px 0 0;
  margin-bottom: 0;
}
.entry .entry-date &gt; h6 {
  font-size: 14px;
  background: #314555;
  border-radius: 0 0 3px 3px;
}
.entry-meta .icon {
  font-size: 14px;
  margin-right: 8px;
}
.entry-meta,
.entry-meta a {
  color: #b2bac2;
}
.entry-meta a:hover {
  color: #2d96de;
}
.entry .soundcloud-embed iframe {
  width: 100%;
}
/* Latest News Area */
.latest-news-area.blog-grid .entry .entry-content {
  height: 5.6em;
}
/* Blog Grid */
.blog-grid .entry .entry-content {
  height: 7.2em;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Blog Single Post */
.blog-quote-section {
  font-size: 16px;
  background-color: #03b6e7;
  border-left: 0;
  padding: 60px 80px;
  position: relative;
  margin: 0;
}
.blog-quote-section:before,
.blog-quote-section:after {
  font-family: "FontAwesome";
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  position: absolute;
}
.blog-quote-section:before {
  content: '\f10d';
  left: 30px;
  top: 20px;
}
.blog-quote-section:after {
  content: '\f10e';
  bottom: 15px;
  right: 45px;
}
.blog-quote-section p {
  color: #fff;
}
.blog-post-tags li {
  display: inline-block;
}
.blog-post-tags a {
  color: #717f86;
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #ddd;
  background-color: #F5F5F5;
}
.blog-post-tags a:hover {
  color: #2d96de;
}
.blog-post-tags li + li {
  margin-left: 5px;
}
.share-buttons li {
  display: inline-block;
  margin: 0 6px 8px 0;
}
.share-buttons li a {
  background: #fff;
  border: 2px solid #666;
  border-radius: 3px;
  font-size: 14px;
  padding: 8px 20px;
  display: inline-block;
  line-height: 15px;
  -webkit-transition: all 400ms linear 0ms;
  -ms-transition: all 400ms linear 0ms;
  -o-transition: all 400ms linear 0ms;
  transition: all 400ms linear 0ms;
}
.share-buttons li a.fb-share {
  border-color: #3b5998;
  color: #3b5998;
}
.share-buttons li a.fb-share:hover {
  background-color: #3b5998;
  color: #fff;
}
.share-buttons li a.twitter-share {
  border-color: #1da1f2;
  color: #1da1f2;
}
.share-buttons li a.twitter-share:hover {
  background-color: #1da1f2;
  color: #fff;
}
.share-buttons li a.gplus-share {
  border-color: #dd4b39;
  color: #dd4b39;
}
.share-buttons li a.gplus-share:hover {
  background-color: #dd4b39;
  color: #fff;
}
.share-buttons li a.pinterest-share {
  border-color: #bd081c;
  color: #bd081c;
}
.share-buttons li a.pinterest-share:hover {
  background-color: #bd081c;
  color: #fff;
}
.posts-nav {
  width: 100%;
  position: relative;
  display: inline-block;
  min-height: 60px;
}
.posts-nav li {
  position: absolute;
  font-size: 17px;
  font-weight: 500;
  width: 50%;
}
.posts-nav li span {
  display: block;
  color: #999;
  font-size: 13px;
  margin-bottom: 1px;
  font-weight: 500;
}
.posts-nav li.next-post {
  right: 0;
  text-align: right;
}
.posts-nav li.next-post a {
  padding-right: 50px;
}
.posts-nav li.next-post a .fa {
  right: 10px;
}
.posts-nav li.prev-post {
  left: 0;
}
.posts-nav li.prev-post a {
  padding-left: 50px;
}
.posts-nav li.prev-post a .fa {
  left: 10px;
}
.posts-nav li a {
  color: #888;
  display: inline-block;
}
.posts-nav li a .fa {
  font-size: 40px;
  position: absolute;
  color: inherit;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.post-author-area .media-body {
  padding-left: 15px;
}
.post-author-area .media-body h3 {
  margin-bottom: 0.15em;
  text-transform: uppercase;
}
.post-author-area .media-body h5 {
  font-size: 0.9em;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-bottom: 1em;
}
.post-author-area .social-icons .fa {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––––––&gt;&gt;&gt; Comments  &lt;&lt;&lt;––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.comments-area .posted-comments {
  padding: 20px;
}
.comments-area .posted-comments .comment-meta {
  position: relative;
}
.comments-area .posted-comments .comment-reply-link {
  position: absolute;
  right: 0;
  top: 0;
}
.posted-comments .comment-author-thumb img {
  width: 100px;
  height: 100px;
  border-radius: 3px;
}
.posted-comments .media {
  margin-top: 0;
}
.posted-comments .comment-list li {
  margin-bottom: 40px;
}
.posted-comments .comment-replays li:last-child {
  margin-bottom: 0;
}
.posted-comments .comment-list &gt; li:last-child {
  margin-bottom: 0;
}
.posted-comments ol ol {
  padding-left: 100px;
  margin-top: 20px;
}
.comment-respond {
  padding: 20px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––&gt;&gt;&gt; Sidebar Widgets  &lt;&lt;&lt;–––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––– */
.widget-title {
  font-size: 18px;
}
/* Recent Posts */
.recent-posts .recent-post .post-meta {
  font-size: 12px;
  color: #717f86;
}
.recent-posts .recent-post .media-left img {
  width: 80px;
  height: 80px;
}
/* Categories / Archive Widget */
.categories-widget ul &gt; li,
.archive-widget ul &gt; li {
  padding: 12px 0 5px;
}
.categories-widget ul &gt; li + li,
.archive-widget ul &gt; li + li {
  border-top: 1px solid #f2f2f2;
}
.categories-widget li a,
.archive-widget li a {
  display: block;
  font-weight: 300;
  padding-left: 15px;
  position: relative;
}
.categories-widget li a:after,
.archive-widget li a:after {
  content: "\f0da";
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 17px;
  position: absolute;
  left: 0;
  top: 3px;
}
.categories-widget li span {
  float: right;
}
/* popular-tags sidebar */
.tags .badge {
  margin-right: 8px;
  padding: 0 12px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  font-weight: normal;
  border-radius: 3px;
  color: #fff;
  background-color: #b3bfc5;
  margin-bottom: 12px;
  -webkit-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.tags .badge:hover {
  color: #fff;
  background-color: #2d96de;
}
/* Instagram Widget */
.instagram-widget .instagram-widget__item img {
  display: block;
  width: 100%;
}
/* Twitter Widget */
.twitter-list__item a {
  color: #2d96de;
}
.twitter-list__item .twitter-icon {
  color: #2d96de;
  font-size: 18px;
  margin-right: 6px;
}
/* Checkout Widget */
.checkout-widget .table td {
  border: none;
  padding: 12px 0;
}
.checkout-widget .table tr + tr &gt; td {
  border-top: 1px solid #eee;
}

.error-info{
  color:#FF5B5B;text-align:left;
}

.com-banner {
  z-index: 1;
  padding-top: 40px;
  width: 100%;
  height: 150px;
  background: url(../images/banner-bg-01.jpg) repeat center;
  color: #fff;
  text-align: center;
}

.support-list .support-title {
  padding-left: 20px;
  width: 100%;
  height: 30px;
  background: #f5f5f5;
  color: #666;
  line-height: 30px;
}
.support-list ul {
  margin: auto;
  width: 90%;
}
.support-list li {
  width: 100%;
  height: 40px;
  border-bottom: 1px dashed #999;
  color: #666;
  line-height: 40px;
}
.support-list li a{
  color: #666;
}

.webuploader-element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px,1px,1px,1px);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}

/**--Article-start-**/
.article-title a {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  word-wrap: break-word;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article-intro {
  height: 46px;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
}
.tips-box {
  color:#999;
  font-size: 12px;
  line-height: 28px;
  height: 28px;
}
.tips-box .tag-tips,.tips-box .keyword-tips{
  border-radius: 4px;
  background-color: #f1f1f1f1;
  padding-left: 10px;
  padding-right: 10px;
  float: left;

}
.tips-box .cancel-btn-box{
  margin-left: 20px;
  float: right;
  height: 22px;
  border: none;
}

.cancel-btn-box .cancel-btn {
  position: relative;
  font-size: 16px;
  width: 16px;
  height: 16px;
  display: block;
  line-height: 16px;
  text-align: center;
  color: #d8d8d8;
  border-radius: 50%;
  margin:0 auto;
  top: 25%;
}
/**--Article-end-**/
/**--Home Page order list-Start-**/

.order-records .list-dynamic {
  height: 40px;
  line-height: 40px;
}

.order-records .list-dynamic .total-box {
  overflow: hidden;
  height: 36px;
}

.order-records .list-dynamic .total-box li {
  text-align: right;
  display: block;
  height: 36px;
  overflow: hidden;
}
.order-record-list-box .order-list-header {
  height: 36px;
  line-height: 36px;
}
.order-record-list-content {
  height: 170px;
  overflow: hidden;
}
.order-record-list-content li {
  margin: 2px 0;
}

.section .head-title {
  height: 40px;
  line-height: 40px;
}
.section .head-title .t-bar {
  width: 5px;
  height: 18px;
  top: 10px;
  left: -20px;
  position: absolute;
  background:#2d96de;
}

.panel-box {
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  background-color: #fefefe;
}
.order-country-flag-img {
  width: 20px;
  height: 15px;
}
/**--Home Page order list-End-**/


.order-process-step li{
  line-height: 45px;
  float: left;
}

.order-process-step li .order-step {
  width: 50px;
  height: 50px;
  float: left;
  line-height: 40px;
  text-align: center;
}
.order-process-step li.step-to-step {
  height: 50px;
  float: left;
}
.order-process-step li.step-to-step div {
  height: 2px;
  background-color: #999999;
  width: 40px;
  margin: 25px 0;
  float: left;
}

.order-process-step .order-step-1 img{
  width:90%;
  padding-top: 5px;
  padding-left:5px;
  margin: 0 auto;
}
.order-process-step .order-step-2 img{
  width:85%;
  padding-top: 3px;
  margin: 0 auto;
}
.order-process-step .order-step-3 img{
  width:90%;
  padding-top: 3px;
  margin: 0 auto;
}
.order-process-step .order-step-4 img{
  width:80%;
  padding-top: 6px;
  margin: 0 auto;
}
.order-process-step .order-step-5 img{
  width:75%;
  padding-top: 5px;
  margin: 0 auto;
}
.order-process-step .order-step-6 img{
  width:80%;
  padding-top: 5px;
  margin: 0 auto;
}
.step-tip-box  li {
  float: left;
  width: 16%;
  height:22px;
  text-align: center;
  color: #999;
  font-size: 12px;
}
.order-now-btn {
  display: inline-block;
  padding: 0 15px;
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  background-color: #2d96de;
}
.order-now-btn:hover {
  color: #fff;
  background-color: #1f82c4;
}
.price-tbd {
  color: #ff650b;
  font-weight: bold;
}</pre></body></html>