body {
  background-color: #f0f5f5;
}

.top-search {
  top: 65px;
  right: 0;
  position: fixed;
  background-color: #f5f5f5;
  z-index: 3;
  padding: 10px 10px;
}

.top-search input {
  width: 138px;
}

.top-search input.form-control {
  color: #777;
}

.top-search .input-group-addon {
  color: #222;
}

.nav_menu {
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0;
  position: fixed;
  z-index: 30;
  background: -webkit-gradient(linear, left bottom, left top, from(#0c8892), to(#0c8892));
  background: linear-gradient(0deg, #0c8892 0%, #0c8892 100%);
  top: -200%;
  bottom: 0%;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav_menu .col-sm-4 {
  position: relative;
}

.nav_menu .col-sm-4:after {
  position: absolute;
  height: 110vh;
  content: "";
  background-color: #4569a7;
  left: 0;
  width: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav_menu .col-sm-4:first-child:after {
  display: none;
}

.nav_menu a {
  text-decoration: none;
}

.nav_menu .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav_menu .center_box {
  text-align: center;
}

.nav_menu h3 {
  -webkit-transition: .4s;
  transition: .4s;
  font-size: 32px;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
}

.nav_menu h3:hover {
  color: rgba(255, 255, 255, 0.7);
}

.nav_menu ul {
  display: inline-block;
}

.nav_menu ul a:first-child li:before {
  display: none;
}

.nav_menu ul a:first-child li:hover {
  padding-left: 5px;
}

.nav_menu ul li {
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  padding: 5px;
  text-align: left;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
}

.nav_menu ul li:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  left: 0;
  top: 50%;
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0;
}

.nav_menu ul li:hover {
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.nav_menu ul li:hover:before {
  opacity: 1;
  width: 10px;
}

.nav_menu ul li h3 {
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 1;
  color: #fff;
}

.nav_menu ul li h3:before {
  display: none;
}

.nav_menu ul li h3:hover {
  color: rgba(255, 255, 255, 0.7);
}

.nav_top {
  position: fixed;
  z-index: 999;
  white-space: nowrap;
  right: 0;
  top: 0;
  left: 0;
}

.nav_top .nav_logo {
  padding: 5px;
  display: inline-block;
}

.nav_top .cart_btn {
  width: 65px;
  height: 65px;
  background-color: #00b8e9;
  float: right;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
}

.nav_top .cart_btn span.badge {
  font-size: 12px;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
}

.nav_top .cart_btn:hover {
  background-color: #e25a00;
}

.nav_top .cart_btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
}

.nav_top .search_btn {
  width: 65px;
  height: 65px;
  background-color: #f5f5f5;
  float: right;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
  cursor: pointer;
}

.nav_top .search_btn:hover {
  background-color: #ccc;
}

.nav_top .search_btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #222;
  font-size: 20px;
}

.nav_top .menu_btn {
  width: 65px;
  height: 65px;
  background-color: #114AB2;
  float: right;
  position: relative;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
}

.nav_top .menu_btn:hover {
  background-color: #0a3d96;
}

.nav_top .menu_btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
}

.nav_top .menu_btn .fa-times {
  display: none;
  font-size: 20px;
}

.nav_menu.nav_menu_open {
  opacity: 1;
  top: 0;
}

.cart_btn.nav_menu_open,
.nav_logo.nav_menu_open,
.search_btn.nav_menu_open {
  display: none;
}

.menu_btn.nav_menu_open .fa-bars {
  display: none;
}

.menu_btn.nav_menu_open .fa-times {
  display: block;
}

@media (max-width: 500px) {
  .nav_top .nav_logo img {
    width: 200px;
  }

  .nav_top .cart_btn,
  .nav_top .menu_btn,
  .nav_top .search_btn {
    width: 50px;
    height: 50px;
  }

  .nav_top .cart_btn i,
  .nav_top .menu_btn i,
  .nav_top .search_btn i {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .nav_menu .col-sm-4:after {
    display: none;
  }

  .nav_top .nav_logo .logo-sm {
    width: 60px;
  }

  .top-search {
    top: 50px;
    right: 0;
    position: fixed;
    background-color: #f5f5f5;
    z-index: 3;
    padding: 10px 10px;
  }

  .top-search input {
    width: 93px;
  }

  .top-search input.form-control {
    color: #777;
  }

  .top-search .input-group-addon {
    color: #222;
  }
}

.section_products {
  background-color: #e8f3f3;
  padding: 50px 0;
  background-image: url("../../images/product_bg.jpg");
  background-repeat: no-repeat;
}

.section_products .container {
  padding: 45px;
  background-color: #fff;
}

.section_products .title {
  display: inline-block;
}

.section_products .title h2 {
  font-weight: 600;
  color: #0c8892;
  font-size: 48px;
  letter-spacing: 3px;
  display: block;
  margin-top: 0;
}

.section_products .title h5 {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 1.5px;
  background-color: #0c8892;
  color: #fff;
  font-weight: 300;
  padding: 5px 30px;
  margin-bottom: 40px;
}

.section_products .nav-tabs {
  float: right;
  padding: 25px 0;
  border: 0px solid #000;
}

.section_products .nav-tabs li a {
  background-color: #80DCF4;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 0;
  font-size: 16px;
  margin-left: 15px;
  border: 0px solid #000;
  padding: 15px 25px;
  -webkit-transition: .4s;
  transition: .4s;
}

.section_products .nav-tabs li a:hover,
.section_products .nav-tabs li a:focus {
  background-color: #00b8e9;
  border: 0px solid #000;
  color: #fff;
}

.section_products .nav-tabs li.active a {
  background-color: #00b8e9;
}

.section_products img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: .4s;
  transition: .4s;
}

.section_products a {
  text-decoration: none;
  color: #fff;
}

.section_products .pro_box {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.section_products .pro_box .mask {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(20, 109, 118, 0.8)), to(rgba(6, 173, 182, 0.8)));
  background: linear-gradient(0deg, rgba(20, 109, 118, 0.8) 0%, rgba(6, 173, 182, 0.8) 100%);
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: .4s;
  transition: .4s;
}

.section_products .pro_box h3 {
  opacity: 0;
  position: absolute;
  -webkit-transition: .6s;
  transition: .6s;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

.section_products .pro_box:hover .mask {
  top: 0;
}

.section_products .pro_box:hover h3 {
  opacity: 1;
  top: 50%;
}

.section_products .pro_box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .section_products .container {
    padding: 100px 45px;
    background-color: #fff;
    text-align: center;
  }

  .section_products .title {
    text-align: center;
  }

  .section_products .title h2 {
    font-size: 42px;
  }

  .section_products .title h5 {
    margin-bottom: 10px;
  }

  .section_products .nav-tabs {
    float: none;
    text-align: center;
    padding: 25px 0;
    border: 0px solid #000;
    text-align: center;
    display: inline-block;
  }

  .section_products .nav-tabs li a {
    padding: 15px 10px;
    font-size: 14px;
    margin-bottom: 5px;
    margin-right: 5px;
    margin-left: 0;
  }
}

.section_brands {
  padding-bottom: 80px;
  background-color: #e8f3f3;
}

.section_brands hr {
  border-top: 1px solid #C8E5E2;
  margin-top: 40px;
}

.section_brands .title {
  text-align: center;
}

.section_brands .title h2 {
  font-weight: 600;
  color: #0c8892;
  font-size: 48px;
  letter-spacing: 3px;
  display: inline-block;
}

.section_brands .title h5 {
  vertical-align: middle;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 1.5px;
  background-color: #0c8892;
  color: #fff;
  font-weight: 300;
  padding: 5px 30px;
  margin-bottom: 40px;
  margin-left: 15px;
}

.section_brands .owl-dots {
  display: none;
}

.section_brands .item {
  overflow: hidden;
}

.section_brands .item img {
  width: 100%;
  -webkit-transition: .4s;
  transition: .4s;
}

.section_brands .item a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.section_brands .owl-carousel {
  margin-top: 0;
  position: relative;
}

.section_brands .owl-carousel .owl-nav button {
  position: absolute;
  top: 35%;
  font-size: 120px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000000;
  -webkit-transition: .4s;
  transition: .4s;
}

.section_brands .owl-carousel .owl-nav button.owl-prev {
  left: -4%;
}

.section_brands .owl-carousel .owl-nav button.owl-next {
  right: -4%;
}

.section_brands .owl-carousel .owl-nav button:hover {
  outline: none;
  color: #666666;
  background-color: transparent;
}

.section_brands .owl-carousel .owl-nav button:focus,
.section_brands .owl-carousel .owl-nav button:visited {
  outline: none;
}

@media (max-width: 767px) {
  .section_brands hr {
    margin-bottom: 10px;
    margin-top: 30px;
  }

  .section_brands .title h2 {
    font-size: 42px;
    display: block;
  }

  .section_brands .title h5 {
    margin-bottom: 10px;
    margin-left: 0px;
  }

  .section_brands .owl-carousel {
    margin-top: 0;
    position: relative;
  }

  .section_brands .owl-carousel .owl-nav button {
    position: relative;
    font-size: 80px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #000;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .section_brands .owl-carousel .owl-nav button.owl-prev {
    left: auto;
  }

  .section_brands .owl-carousel .owl-nav button.owl-next {
    right: auto;
  }
}

.section_news {
  background-color: #e8f3f3;
  padding: 0px 0 120px 0;
}

.section_news .more_btn {
  color: #00b8e9;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 600;
  float: right;
  margin-top: 50px;
  -webkit-transition: .4s;
  transition: .4s;
}

.section_news .more_btn:hover {
  text-decoration: none;
  color: #009dd4;
}

.section_news .title {
  text-align: center;
  margin-bottom: 40px;
}

.section_news .title h2 {
  font-weight: 600;
  color: #0c8892;
  font-size: 48px;
  letter-spacing: 3px;
  display: block;
  position: relative;
  right: 30px;
}

.section_news .title h5 {
  vertical-align: middle;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 1.5px;
  background-color: #0c8892;
  color: #fff;
  font-weight: 300;
  padding: 5px 30px;
  position: relative;
  left: 30px;
}

.section_news .pic {
  display: none;
}

.section_news .newscontent {
  padding: 10px 20px;
  border-bottom: 1px solid #C8E5E2;
  -webkit-transition: .4s;
  transition: .4s;
}

.section_news .newscontent:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.section_news .newscontent .card-category {
  display: none;
}

.section_news .newscontent span {
  display: inline-block;
  margin-right: 30px;
  letter-spacing: 1px;
  color: #0c8892;
  font-weight: 600;
  font-size: 15px;
}

.section_news .newscontent p {
  display: none;
}

.section_news .newscontent h4 {
  line-height: 1.5;
  display: inline-block;
  letter-spacing: 1px;
  font-size: 16px;
}

.section_news .newscontent h4 a {
  color: #000;
}

.section_news .newscontent h4 a:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .section_news {
    padding: 0px 0 120px 0;
  }

  .section_news .newscontent span {
    display: block;
  }

  .section_news .title {
    text-align: center;
    margin-bottom: 20px;
  }

  .section_news .title h2 {
    font-size: 42px;
    right: auto;
  }

  .section_news .title h5 {
    left: auto;
  }
}

.section_about {
  background-color: #e8f3f3;
  padding: 100px 0;
  position: relative;
}

.section_about img {
  width: 100%;
}

.section_about:before {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 20%;
  position: absolute;
  bottom: 0;
}

.section_about:after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/about_bg.jpg");
  background-repeat: no-repeat;
  background-position: 100% 0;
}

.section_about .row {
  position: relative;
  z-index: 2;
}

.section_about .title h2 {
  font-weight: 600;
  color: #fff;
  font-size: 48px;
  letter-spacing: 3px;
  display: inline-block;
}

.section_about .title h5 {
  vertical-align: middle;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 1.5px;
  background-color: #fff;
  color: #0c8892;
  font-weight: 300;
  padding: 5px 30px;
  margin-bottom: 40px;
  margin-left: 15px;
}

.section_about p {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #e5eeff;
  line-height: 1.8;
  text-align: justify;
}

.section_about .more_btn {
  color: #e5eeff;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 600;
  float: right;
  margin-top: 40px;
  -webkit-transition: .4s;
  transition: .4s;
}

.section_about .more_btn:hover {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 767px) {
  .section_about {
    padding: 100px 0 150px 0;
  }

  .section_about .more_btn {
    margin-bottom: 40px;
    margin-top: 10px;
  }

  .section_about .col-sm-5:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }

  .section_about:after {
    background-size: cover;
  }

  .section_about .title {
    text-align: center;
  }

  .section_about .title h2 {
    font-weight: 600;
    color: #fff;
    font-size: 42px;
    letter-spacing: 3px;
    display: block;
  }

  .section_about .title h5 {
    vertical-align: middle;
    display: inline-block;
    font-size: 18px;
    letter-spacing: 1.5px;
    background-color: #fff;
    color: #0c8892;
    font-weight: 300;
    padding: 5px 30px;
    margin-bottom: 40px;
    margin-left: 0px;
  }
}

footer {
  background-color: #fff;
  padding: 60px 0 40px 0;
  color: #000;
}

footer .footer_top {
  position: relative;
}

footer .footer_top ul {
  display: inline-block;
  margin-top: 30px;
  margin-right: 20px;
  vertical-align: top;
}

footer .footer_top ul li:first-child {
  font-size: 16px;
  color: #222;
}

footer .footer_top ul li {
  font-size: 14px;
  color: #666;
  letter-spacing: 1px;
  padding: 5px 0;
}

/* footer .footer_top ul:nth-of-type(2) {
  margin-left: 30px;
} */

footer .footer_btm {
  text-align: center;
}

footer .footer_btm ul li {
  display: inline-block;
  padding: 15px 10px;
  font-weight: 600;
}

footer .footer_btm ul li a {
  background-color: transparent;
  font-size: 16px;
  color: #000;
  letter-spacing: 1.5px;
  -webkit-transition: .4s;
  transition: .4s;
}

footer .footer_btm ul li a:hover {
  color: #666;
  background-color: transparent;
}

footer .footer_copy {
  color: #aaa;
  letter-spacing: .5px;
  font-size: 14px;
}

footer hr {
  margin-top: 40px;
}

footer h5 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 600;
}

footer p {
  line-height: 1.5;
  font-size: 14px;
  letter-spacing: 1px;
}

footer .footer_address {
  font-size: 14px;
  color: #0c8892;
  letter-spacing: 1px;
}

footer .gotop_btn {
  position: absolute;
  right: 0;
  top: 10px;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
}

footer .gotop_btn:hover {
  top: 0;
}

.gotop_sm {
  text-align: center;
  background-color: #00b8e9;
  padding: 10px 0;
}

.gotop_sm p {
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767px) {
  footer {
    padding: 80px 0 60px 0;
  }

  footer .footer_top {
    text-align: center;
  }

  footer .gotop_btn {
    display: none;
  }

  footer ul li {
    padding: 10px 0px;
    font-size: 14px;
  }

  footer .footer_copy {
    font-size: 12px;
    margin-top: 10px;
  }
}

.page_banner {
  height: 330px;
  background-image: url("/hipershop/rwd1387/store/f1/page_banner.jpg");
  background-size: cover;
  margin: 110px 0 0;
  position: relative;
}

.page_banner h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 2.5px;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.member-wrapper,
.contact-wrapper,
.category-wrapper,
.search-wrapper,
.product-wrapper,
.news-wrapper,
.ProfileBody,
.ServiceBody,
.HotSaleBody {
  padding: 80px 0;
}

.section_breadcrumb {
  background-color: #0c8892;
}

.section_breadcrumb ol.breadcrumb {
  background-color: #0c8892;
  padding: 15px 0;
  margin-bottom: 0;
}

.section_breadcrumb ol.breadcrumb li a {
  color: #ffffff;
  letter-spacing: 1px;
}

.text-content {
  padding: 0 !important;
}

.li-item {
  border: 1px solid #b7e1e1;
  padding: 15px;
  -webkit-transition: .4s;
  transition: .4s;
  opacity: .9;
}

.li-item:hover {
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #3c9090;
  opacity: 1;
}

.li-item .features-box a h4 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #0c8892;
}

.li-item .features-box p.prd_info {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  letter-spacing: 1px;
}

.li-item .features-box a.btn-default {
  border-radius: 0;
  background-color: #00b8e9;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 0;
  font-size: 14px;
  border: 0px solid #000;
  padding: 10px 15px;
  -webkit-transition: .4s;
  transition: .4s;
  margin-top: 30px;
}

.li-item .features-box a.btn-default:hover {
  color: #fff;
  background-color: #009dd4;
}

aside {
  margin-bottom: 30px;
}

#prod_intro h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

.descri-none {
  letter-spacing: 1px;
  line-height: 1.7;
  color: #666;
  font-size: 16px;
}

.intro-none hr {
  border-color: #cedde9;
}

.goback_btn {
  text-align: center;
  background-color: #00b8e9;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  padding: 10px 30px;
  margin-top: 50px;
  -webkit-transition: .4s;
  transition: .4s;
  color: #fff;
}

.goback_btn:hover {
  color: #fff;
  background-color: #009dd4;
  text-decoration: none;
}

.news_aside {
  font-size: 24px;
  font-weight: bold;
  color: #146d76;
  left: 12px;
  line-height: 1.5;
  letter-spacing: 2px;
  padding: 12px 5px;
  margin: 0;
}

.NEWS_type li span {
  background-color: #00b8e9;
}

.NEWS_type li a {
  background-color: #e3f3f3;
  position: relative;
  display: block;
  font-size: 15px;
  color: #777;
  text-decoration: none;
  padding: 12px 15px;
  padding-left: 35px;
  letter-spacing: 1px;
  -webkit-transition: .4;
  transition: .4;
  border-bottom: 1px solid #6ec4c4;
  border-top: 1px solid #6ec4c4;
}

.NEWS_type li a:hover {
  background-color: #fff;
  color: #222;
}

.newslist {
  border: 1px solid #b7e1e1;
  padding: 15px;
  -webkit-transition: .4s;
  transition: .4s;
  opacity: .9;
}

.newslist:hover {
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #3c9090;
  opacity: 1;
}

.newslist .news_date,
.newslist .news_sort,
.newslist .news_author {
  color: #777;
}

.newslist .news_title {
  font-size: 20px;
  letter-spacing: 1px;
  color: #0c8892;
  line-height: 1.5;
}

.newslist a.btn-default {
  border-radius: 0;
  background-color: #00b8e9;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 0;
  font-size: 14px;
  border: 0px solid #000;
  padding: 10px 15px;
  -webkit-transition: .4s;
  transition: .4s;
  margin-top: 30px;
}

.newslist a.btn-default:hover {
  color: #fff;
  background-color: #009dd4;
}

.contact-wrapper .btn-info {
  border-radius: 0;
  background-color: #00b8e9;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 0;
  font-size: 14px;
  border: 0px solid #000;
  padding: 10px 15px;
  -webkit-transition: .4s;
  transition: .4s;
}

.contact-wrapper .btn-info:hover {
  color: #fff;
  background-color: #009dd4;
}

.HotSaleBody a:hover {
  text-decoration: none;
}

.HotSaleBody .page-header {
  display: none;
}

.HotSaleBody .mask {
  display: none;
}

.HotSaleBody .product-price {
  display: none;
}

.HotSaleBody .B_hot_3 .thumbnail-list li {
  padding: 15px;
}

.HotSaleBody .hot_prod_title {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #0c8892;
}

.HotSaleBody .hot_prod_intro {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  letter-spacing: 1px;
}

.HotSaleBody a.btn-default {
  border-radius: 0;
  background-color: #00b8e9;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 0;
  font-size: 14px;
  border: 0px solid #000;
  padding: 10px 15px;
  -webkit-transition: .4s;
  transition: .4s;
  margin-top: 30px;
}

.HotSaleBody a.btn-default:hover {
  color: #fff;
  background-color: #009dd4;
}

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