/*@include transition(all 0.2s ease-in-out);
@include box-shadow(0 ,2px ,6px ,rgba(0,0,0,.2));*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* COLOR OPACITY */
/* BORDER COLOR OPACITY */
/* BORDER RADIUS */
/* User-select*/
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/*///////////////////////////////////ANIMATION//////////////////////////////////*/
/*/////////////////////////////////////SCREEN////////////////////////////////////////*/
/*/////////////////////////////////////DIV////////////////////////////////////////*/
/******common******/
body {
  font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif; }
  body .h1, body .h2, body .h3, body .h4, body .h5, body .h6, body h1, body h2, body h3, body h4, body h5, body h6, body div, body span, body strong, body b, body p {
    font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif; }

a, a:hover,a:focus {
  color: #5cb85c;
  outline: none;
  }

._hide {
  display: none; }

.lazy-hidden {
  background: #eee url("loading.gif") no-repeat 50% 50%; }

.fade-hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .fade-hover:hover, .fade-hover:active, .fade-hover:focus {
    opacity: 0.6;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }

.fade-hover-1 {
  opacity: 0.7;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .fade-hover-1:hover, .fade-hover-1:active, .fade-hover-1:focus {
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }

.border-hover {
  -webkit-border-radius: 0 0 0 0;
  -khtml-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -ms-border-radius: 0 0 0 0;
  -o-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  -khtml-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }
  .border-hover:hover, .border-hover:active, .border-hover:focus {
    overflow: hidden;
    -webkit-border-radius: 0 0 0 10%;
    -khtml-border-radius: 0 0 0 10%;
    -moz-border-radius: 0 0 0 10%;
    -ms-border-radius: 0 0 0 10%;
    -o-border-radius: 0 0 0 10%;
    border-radius: 0 0 0 10%;
    -webkit-transition: all 0.2s;
    -khtml-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }

.border-hover-50 {
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  -khtml-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }
  .border-hover-50:hover, .border-hover-50:active, .border-hover-50:focus {
    overflow: hidden;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.2s;
    -khtml-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }

.rotate180 {
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  margin-top: 10px;
  height: 20px; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1; }

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #ccc;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #158200; }

.mg0 {
  margin: 0 !important; }

.mgt-0 {
  margin-top: 0px !important; }

.mgt-5 {
  margin-top: 5px !important; }

.mgt-10 {
  margin-top: 10px !important; }

.mgt-15 {
  margin-top: 15px !important; }

.mgt-20 {
  margin-top: 20px !important; }

.mgr-0 {
  margin-right: 0px !important; }

.mgr-5 {
  margin-right: 5px !important; }

.mgr-10 {
  margin-right: 10px !important; }

.mgr-15 {
  margin-right: 15px !important; }

.mgr-20 {
  margin-right: 20px !important; }

.mgb-0 {
  margin-bottom: 0px !important; }

.mgb-5 {
  margin-bottom: 5px !important; }

.mgb-10 {
  margin-bottom: 10px !important; }

.mgb-15 {
  margin-bottom: 15px !important; }

.mgb-20 {
  margin-bottom: 20px !important; }

.mgl-0 {
  margin-left: 0px !important; }

.mgl-5 {
  margin-left: 5px !important; }

.mgl-10 {
  margin-left: 10px !important; }

.mgl-15 {
  margin-left: 15px !important; }

.mgl-20 {
  margin-left: 20px !important; }

.pdl-0 {
  padding-left: 0px !important; }

.pdl-15 {
  padding-left: 15px !important; }

.pdl-40 {
  padding-left: 40px !important; }

.pdl-50 {
  padding-left: 50px !important; }

.pd0 {
  padding: 0 !important; }

.color-red {
  color: #bf0000; }

ul {
  list-style: none;
  padding: 0;
  margin: 0; }

body, p {
  font-family: Roboto ,sans-serif;
  font-size: 14px;
  line-height: 21px; }

img {
  max-width: 100%; }

input[type="text"]:disabled, button:disabled, input[type="button"]:disabled, input:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  user-select: none; }

@keyframes ringing {
  0% {
    transform: rotate(-15deg); }
  2% {
    transform: rotate(15deg); }
  12%, 4% {
    transform: rotate(-18deg); }
  14%, 6% {
    transform: rotate(18deg); }
  8% {
    transform: rotate(-22deg); }
  10% {
    transform: rotate(22deg); }
  16% {
    transform: rotate(-12deg); }
  18% {
    transform: rotate(12deg); }
  20% {
    transform: rotate(0); } }
.icon-animated-bell {
  display: inline-block;
  -moz-animation: ringing 2s 5 ease 1s;
  -webkit-animation: ringing 2s 5 ease 1s;
  -o-animation: ringing 2s 5 ease 1s;
  -ms-animation: ringing 2s 5 ease 1s;
  animation: ringing 2s 5 ease 1s;
  -moz-transform-origin: 50% 0;
  -webkit-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  animation-iteration-count: infinite; }

/*************/
.border-circle {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden; }

.hidden {
  visibility: hidden;
  height: 0px;
  width: 0px;
  position: absolute; }

._container {
  max-width: 1340px;
  min-width: 1000px;
  margin: 0 auto;
  width: 96%;
  display: block; }

._required {
  border: 1px solid #ddd;
  color: #e74c3c;
  background-color: #eee;
  font-weight: bold;
  font-size: 12px;
  padding: 3px 10px;
  margin-left: 5px;
  margin-right: 5px; }

.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  user-select: none; }

.checkbox label:after,
.radio label:after {
  content: '';
  display: table;
  clear: both; }

.checkbox p {
  display: inline-block; }

.checkbox .cr,
.radio .cr {
  position: relative;
  display: inline-block;
  border: 1px solid #a9a9a9;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  float: left;
  margin-right: 10px; }

.radio .cr {
  border-radius: 50%; }

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
  position: absolute;
  font-size: .8em;
  line-height: 0;
  top: 50%;
  left: 20%; }

.radio .cr .cr-icon {
  margin-left: 0.04em; }

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
  display: none; }

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
  transform: scale(3) rotateZ(-20deg);
  opacity: 0;
  transition: all .3s ease-in; }

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
  transform: scale(1) rotateZ(0deg);
  opacity: 1; }

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
  opacity: .5; }

@media (max-width: 767px) {
  .mgb-10-xs {
    margin-bottom: 10px; } }
.help-block {
  margin: 0; }

.text_intro {
  color: #ed1c24;
  font-size: 13px;
  margin-bottom: 0px; }

.icon_bg {
  display: block;
  margin: auto;
  width: 32px;
  height: 32px;
  background: url("../images/icons/icon-bg.png") no-repeat 0 0;
  font-size: 3.2rem;
  color: #158200;
  }

.icon_search {
  background-position: 0 0; }

.icon_login {
  background-image: none;
  }

.icon_user {
  background-position: -32px -256px;
  background-image: none;
  }

.icon_cart {
  background-image: none;
  }

.icon_cart_1 {
  background-position: -32px -352px; }

.icon_logout {
  background-position: -32px -128px; }

.icon_fav {
  background-position: 0px -352px; }

.icon_fav1 {
  background-position: 0px -256px;
  background-image: none;
  }

.icon_register {
  background-position: -32px -224px; }

.icon_facebook {
  background-position: 0px -384px; }

.icon_fav_w {
  background-position: 0px -384px; }

.icon_line {
  background-position: 0px -416px; }

.icon_crow_1 {
  background-position: 0px -288px; }

.icon_crow_2 {
  background-position: -32px -288px; }

.icon_crow_3 {
  background-position: 0px -320px; }

.icon_crow_4 {
  background-position: -32px -320px; }

/************/
.s-header .header-top {
  height: 40px;
  background-color: #232f3e; }
  .s-header .header-top .group-link .group-header-text {
    font-size: 12px; }
    .s-header .header-top .group-link .group-header-text li {
      float: left; }
      .s-header .header-top .group-link .group-header-text li:nth-child(2) a {
        border-bottom: solid 3px #ef4f00; }
      .s-header .header-top .group-link .group-header-text li:nth-child(3) a {
        border-bottom: solid 3px #158200; }
      .s-header .header-top .group-link .group-header-text li:nth-child(4) a {
        border-bottom: solid 3px #ffcc00; }
      .s-header .header-top .group-link .group-header-text li:nth-child(5) a {
        border-bottom: solid 3px #9fcc48; }
      .s-header .header-top .group-link .group-header-text li:nth-child(6) a {
        border-bottom: solid 3px #008020; }
      .s-header .header-top .group-link .group-header-text li:nth-child(7) a {
        border-bottom: solid 3px #00a3e7; }
      .s-header .header-top .group-link .group-header-text li:nth-child(8) a {
        border-bottom: solid 3px #ed1818; }
      .s-header .header-top .group-link .group-header-text li:nth-child(9) a {
        border-bottom: solid 3px #ef4f00; }
      .s-header .header-top .group-link .group-header-text li:nth-child(10) a {
        border-bottom: solid 3px #158200; }
      .s-header .header-top .group-link .group-header-text li:nth-child(11) a {
        border-bottom: solid 3px #ffcc00; }
      .s-header .header-top .group-link .group-header-text li:nth-child(12) a {
        border-bottom: solid 3px #9fcc48; }
      .s-header .header-top .group-link .group-header-text li:nth-child(13) a {
        border-bottom: solid 3px #008020; }
      .s-header .header-top .group-link .group-header-text li:nth-child(14) a {
        border-bottom: solid 3px #00a3e7; }
      .s-header .header-top .group-link .group-header-text li:nth-child(15) a {
        border-bottom: solid 3px #ed1818; }
      .s-header .header-top .group-link .group-header-text li a {
        color: #fff;
        line-height: 15px;
        padding: 11px;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        border-bottom: solid 3px #bf0000;
        background-color: #232f3e; }
        .s-header .header-top .group-link .group-header-text li a:hover {
          border-bottom: solid 3px #fff; }
  .s-header .header-top .group-language {
    margin-left: 30px;
    display: inline-block;
    position: relative;
    float: right; }
    .s-header .header-top .group-language > a {
      text-decoration: none;
      padding: 10px 15px;
      padding-left: 20px;
      display: inline-block;
      font-size: 14px;
      line-height: 20px;
      color: #fff;
      background-color: #232f3e; }
      .s-header .header-top .group-language > a i {
        margin-left: 5px; }
      .s-header .header-top .group-language > a img {
        margin-right: 10px; }
    .s-header .header-top .group-language .language-drop {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 2;
      padding: 10px 0px 10px 20px;
      border: 1px solid #232f3e;
      background-color: #232f3e;
      -webkit-box-shadow: 3px 3px 0px #ccc;
      -khtml-box-shadow: 3px 3px 0px #ccc;
      -moz-box-shadow: 3px 3px 0px #ccc;
      -ms-box-shadow: 3px 3px 0px #ccc;
      -o-box-shadow: 3px 3px 0px #ccc;
      box-shadow: 3px 3px 0px #ccc; }
      .s-header .header-top .group-language .language-drop li {
        display: inline-block;
        padding: 5px 0;
        width: 100%; }
        .s-header .header-top .group-language .language-drop li a {
          font-size: 13px;
          color: #fff;
          text-decoration: none; }
          .s-header .header-top .group-language .language-drop li a img {
            margin-right: 4px; }
          .s-header .header-top .group-language .language-drop li a:hover {
            color: #bf0000; }
    .s-header .header-top .group-language:hover .language-drop {
      display: inline-block; }
.s-header .header-menu {
  background-color: #fff;
  padding: 15px 0px 15px 0px;
  display: inline-block;
  width: 100%;
  border-bottom: 2px solid #dbdbdb; }
  .s-header .header-menu ._container {
    position: relative; }
  .s-header .header-menu .hmenu-left {
    text-align: center;
    width: 200px;
    float: left;
    display: inline-block; }
    .s-header .header-menu .hmenu-left .nav-logo {
      margin-top: 5px; }
      .s-header .header-menu .hmenu-left .nav-logo img {
        height: 75px; }
  .s-header .header-menu .hmenu-center {
    margin-top: 5px;
    display: inline-block;
    float: left;
    padding-left: 20px; }
    .s-header .header-menu .hmenu-center .search-header {
      max-width: 650px;
      margin: auto;
      position: relative; }
      .s-header .header-menu .hmenu-center .search-header .input-seacrh-group {
        height: 40px; }
        .s-header .header-menu .hmenu-center .search-header .input-seacrh-group input {
          height: 40px;
          -webkit-border-radius: 3px 0 0 3px;
          -khtml-border-radius: 3px 0 0 3px;
          -moz-border-radius: 3px 0 0 3px;
          -ms-border-radius: 3px 0 0 3px;
          -o-border-radius: 3px 0 0 3px;
          border-radius: 3px 0 0 3px;
          border: 2px solid #158200;
          display: inline-block;
          float: left;
          outline: none;
          padding: 0 15px;
          width: calc(100% - 40px); }
        .s-header .header-menu .hmenu-center .search-header .input-seacrh-group button {
          background-color: #158200;
          height: 40px;
          width: 40px;
          padding: 4px;
          border: none;
          box-shadow: none;
          -webkit-border-radius: 0 3px 3px 0;
          -khtml-border-radius: 0 3px 3px 0;
          -moz-border-radius: 0 3px 3px 0;
          -ms-border-radius: 0 3px 3px 0;
          -o-border-radius: 0 3px 3px 0;
          border-radius: 0 3px 3px 0; }
  .s-header .header-menu .list-tags {
    padding-left: 20px;
    display: inline-block;
    width: calc(100% - 200px);
    vertical-align: middle; }
    .s-header .header-menu .list-tags span {
      float: left;
      display: inline-block;
      margin-top: 10px; }
    .s-header .header-menu .list-tags ul {
      list-style: none; }
      .s-header .header-menu .list-tags ul li {
        display: inline-block;
        float: left;
        margin-right: 10px;
        margin-top: 5px; }
        .s-header .header-menu .list-tags ul li a {
          display: block;
          padding: 2px 4px;
          background-color: #fff;
          -webkit-border-radius: 4px;
          -khtml-border-radius: 4px;
          -moz-border-radius: 4px;
          -ms-border-radius: 4px;
          -o-border-radius: 4px;
          border-radius: 4px;
          font-size: 12px;
          text-decoration: none;
          border: 1px solid #ccc;
          color: #666;
          -webkit-transition: all 0.2s ease-in-out;
          -khtml-transition: all 0.2s ease-in-out;
          -moz-transition: all 0.2s ease-in-out;
          -ms-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
          .s-header .header-menu .list-tags ul li a:hover {
            background-color: #ccc;
            color: #fff;
            -webkit-transition: all 0.2s ease-in-out;
            -khtml-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out; }
  .s-header .header-menu .hmenu-right {
    height: 53px;
    float: right;
    width: auto; }
    .s-header .header-menu .hmenu-right ul {
      display: inline-block;
      float: right; }
      .s-header .header-menu .hmenu-right ul li {
        position: relative;
        display: inherit;
        float: left;
        margin-left: 10px;
        padding-left: 10px;
        border-left: 1px solid #ccc;
        text-align: center; }
        .s-header .header-menu .hmenu-right ul li a {
          display: inline-block;
          text-align: center;
          color: #666;
          text-decoration: none;
          font-size: 12px; }
          .s-header .header-menu .hmenu-right ul li a:hover {
            color: #158200; }
        .s-header .header-menu .hmenu-right ul li .number {
          background-color: #ff0000;
          color: #fff;
          width: 20px;
          height: 20px;
          display: block;
          line-height: 20px;
          font-size: 10px;
          position: absolute;
          border-radius: 50%;
          top: 0;
          right: 0;
          border: 1px solid #fff; }
      .s-header .header-menu .hmenu-right ul .user-menu {
        position: relative; }
        .s-header .header-menu .hmenu-right ul .user-menu .dropdown-user {
          display: none;
          position: absolute;
          background-color: #fff;
          min-width: 200px;
          padding: 10px;
          right: 0px;
          box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.3);
          z-index: 9;
          border-radius: 5px; }
          .s-header .header-menu .hmenu-right ul .user-menu .dropdown-user ul li {
            display: block;
            width: 100%;
            border-left: none;
            margin-left: 0px;
            padding: 5px 10px;
            text-align: left; }
            .s-header .header-menu .hmenu-right ul .user-menu .dropdown-user ul li a.button_gray {
              color: #fff;
              width: 100%;
              height: 35px;
              line-height: 35px; }
        .s-header .header-menu .hmenu-right ul .user-menu:hover .dropdown-user {
          display: block; }

.wrapper {
  background-color: #F4F3F1;
  min-height: 100vh; }

.s-main-content {
  min-height: calc(100vh - 395px);
  padding-top: 20px; }
  .s-main-content .sidebar-left {
    width: 200px;
    display: inline-block;
    float: left; }
  .s-main-content .sidebar-right {
    width: 200px;
    display: inline-block;
    float: right; }
    .s-main-content .sidebar-right .sidebar-right-item {
      border-top: none;
      margin-bottom: 15px; }
      .s-main-content .sidebar-right .sidebar-right-item .sri-content {
        padding: 15px; }
      .s-main-content .sidebar-right .sidebar-right-item:last-child {
        margin-bottom: 0px; }
  .s-main-content .main-content-center {
    display: inline-block;
    width: calc(100% - 400px);
    padding: 0 15px;
    padding-bottom: 20px;
    background-color: #fff; }

._content {
  display: inline-block;
  width: 100%;
  background-color: #FCFBFB; }

.guide-container {
  margin-left: -5px;
  margin-right: -5px;
  display: inline-block;
  width: calc(100% + 10px); }
  .guide-container .guide-section {
    width: calc(33.33% - 10px);
    height: 250px;
    overflow: hidden;
    display: inline-block;
    float: left;
    margin: 0 5px;
    border: solid 1px #dAdAd9;
    -webkit-box-shadow: 0 2px 2px #e1e1e1;
    -khtml-box-shadow: 0 2px 2px #e1e1e1;
    -moz-box-shadow: 0 2px 2px #e1e1e1;
    -ms-box-shadow: 0 2px 2px #e1e1e1;
    -o-box-shadow: 0 2px 2px #e1e1e1;
    box-shadow: 0 2px 2px #e1e1e1;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 150px; }
    .guide-container .guide-section h2 {
      font-size: 20px;
      margin-top: 0px;
      font-weight: 600;
      color: #158200; }
    .guide-container .guide-section ul li a {
      color: #333; }
      .guide-container .guide-section ul li a:hover {
        color: #158200; }
    .guide-container .guide-section .app-container .app-list li {
      width: 50%;
      padding: 0 10px;
      float: left;
      display: inline-block;
      text-align: center; }
  .guide-container #intro_shopping {
    background-image: url("/images/shopping-cart.png"); }
  .guide-container #intro_shoplier {
    background-image: url("/images/shop.png"); }

.shop-recommened {
  border: solid 1px #dAdAd9;
  background: #fff;
  margin-bottom: 20px;
  margin-top: 20px;
  -webkit-box-shadow: 0 2px 2px #e1e1e1;
  -khtml-box-shadow: 0 2px 2px #e1e1e1;
  -moz-box-shadow: 0 2px 2px #e1e1e1;
  -ms-box-shadow: 0 2px 2px #e1e1e1;
  -o-box-shadow: 0 2px 2px #e1e1e1;
  box-shadow: 0 2px 2px #e1e1e1; }
  .shop-recommened h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    margin-left: 15px;
    color: #333; }
  .shop-recommened .shop-recommened-content {
    padding: 15px 30px; }
    .shop-recommened .shop-recommened-content #slider-recommened .item a {
      color: #333; }
      .shop-recommened .shop-recommened-content #slider-recommened .item a p {
        font-size: 15px;
        line-height: 20px;
        max-height: 40px;
        overflow: hidden;
        margin-top: 10px;
        margin-bottom: 0; }
      .shop-recommened .shop-recommened-content #slider-recommened .item a:hover {
        color: #158200; }
    .shop-recommened .shop-recommened-content #slider-recommened .owl-nav .owl-prev,
    .shop-recommened .shop-recommened-content #slider-recommened .owl-nav .owl-next {
      position: absolute;
      top: calc(50% - 35px);
      width: 20px;
      height: 30px;
      color: #666;
      text-align: center; }
      .shop-recommened .shop-recommened-content #slider-recommened .owl-nav .owl-prev i,
      .shop-recommened .shop-recommened-content #slider-recommened .owl-nav .owl-next i {
        font-weight: 400;
        line-height: 30px;
        font-size: 25px; }
    .shop-recommened .shop-recommened-content #slider-recommened .owl-nav .disabled {
      cursor: not-allowed; }
      .shop-recommened .shop-recommened-content #slider-recommened .owl-nav .disabled i {
        color: #ccc; }
    .shop-recommened .shop-recommened-content #slider-recommened .owl-nav .owl-prev {
      left: -25px; }
    .shop-recommened .shop-recommened-content #slider-recommened .owl-nav .owl-next {
      right: -25px; }

.cat-title {
  display: inline-block;
  width: 100%;
  background-color: #666; }
  .cat-title a, .cat-title h3 {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    padding: 5px 10px;
    display: inline-block;
    width: 100%;
    margin: 0;
    line-height: 20px; }

.category {
  background-color: #FCFBFB; }
  .category .cat-list > li {
    padding: 10px 10px;
    position: relative;
    border-bottom: 1px solid #ddd; }
    .category .cat-list > li a {
      text-decoration: none;
      color: #333;
      font-size: 11px; }
      .category .cat-list > li a i {
        font-size: 20px;
        color: #dedede; }
    .category .cat-list > li:hover {
      background-color: #fff; }
      .category .cat-list > li:hover a:hover {
        color: #158200; }
        .category .cat-list > li:hover a:hover i {
          color: #158200; }
    .category .cat-list > li:last-child {
      border-bottom: none; }
    .category .cat-list > li .s-tooltip-hover {
      position: absolute;
      left: 25%; }
    .category .cat-list > li .list-hoverDiv {
      display: none;
      position: absolute;
      left: 133px;
      z-index: 99;
      top: 0px;
      width: 700px; }
    .category .cat-list > li .list-hover {
      display: inline-block;
      width: 100%;
      margin-left: 45px;
      background-color: white;
      padding: 10px 0 0 0;
      border: 1px solid #ccc;
      -webkit-box-shadow: 4px 4px 0px #ccc;
      -khtml-box-shadow: 4px 4px 0px #ccc;
      -moz-box-shadow: 4px 4px 0px #ccc;
      -ms-box-shadow: 4px 4px 0px #ccc;
      -o-box-shadow: 4px 4px 0px #ccc;
      box-shadow: 4px 4px 0px #ccc; }
      .category .cat-list > li .list-hover i {
        position: absolute;
        top: 8px;
        left: 27px;
        font-size: 26px;
        color: #ccc; }
      .category .cat-list > li .list-hover p {
        margin: 0;
        font-weight: bold;
        border-bottom: 2px solid #666;
        padding-left: 15px;
        padding-bottom: 5px; }
        .category .cat-list > li .list-hover p a {
          margin-left: 10px; }
      .category .cat-list > li .list-hover .list-hoverBottom {
        width: 65%;
        float: left;
        padding-bottom: 20px;
        padding-left: 10px;
        margin-bottom: -5px; }
      .category .cat-list > li .list-hover .list-hoverBackground {
        display: inline-block;
        background-repeat: no-repeat;
        background-position: 100% 100%;
        background-size: 40%;
        margin-bottom: -6px;
        padding: 10px 15px;
        width: 100%; }
        .category .cat-list > li .list-hover .list-hoverBackground ul li {
          display: inline-block;
          width: 47%;
          margin-right: 3%;
          float: left;
          list-style: lower-alpha; }
          .category .cat-list > li .list-hover .list-hoverBackground ul li h3 {
            margin-top: 0px;
            font-size: 14px; }
            .category .cat-list > li .list-hover .list-hoverBackground ul li h3 a {
              color: #333; }
              .category .cat-list > li .list-hover .list-hoverBackground ul li h3 a:hover {
                color: #158200;
                text-decoration: underline; }
          .category .cat-list > li .list-hover .list-hoverBackground ul li ul li {
            width: 100%;
            margin: 0;
            margin-bottom: 3px; }
            .category .cat-list > li .list-hover .list-hoverBackground ul li ul li a {
              font-size: 12px;
              color: #333; }
              .category .cat-list > li .list-hover .list-hoverBackground ul li ul li a:hover {
                color: #158200;
                text-decoration: underline; }
  .category .cat-list li:hover .list-hoverDiv {
    display: inherit; }

.slider-right .item a {
  color: #333;
  font-size: 13px; }
  .slider-right .item a:hover {
    color: #158200; }
.slider-right .item .item-content {
  margin-top: 10px; }
.slider-right .owl-nav .owl-prev,
.slider-right .owl-nav .owl-next {
  position: absolute;
  top: 72.5px;
  width: 25px;
  height: 25px;
  background: #158200;
  color: #fff;
  text-align: center; }
  .slider-right .owl-nav .owl-prev i,
  .slider-right .owl-nav .owl-next i {
    font-weight: 400;
    line-height: 25px; }
.slider-right .owl-nav .disabled {
  opacity: 0.7;
  cursor: not-allowed; }
.slider-right .owl-nav .owl-prev {
  left: -15px; }
.slider-right .owl-nav .owl-next {
  right: -15px; }

.list-ranking .ranking-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  width: 100%; }
  .list-ranking .ranking-item .ranking-item-img {
    display: inline-block;
    width: 100%; }
    .list-ranking .ranking-item .ranking-item-img .ranking-number {
      position: relative;
      width: 50px;
      text-align: left;
      float: left;
      display: inline-block; }
      .list-ranking .ranking-item .ranking-item-img .ranking-number .icon_ranking {
        background: transparent;
        width: 32px;
        height: 32px;
        margin-left: 0px;
        margin-bottom: 5px;
        display: inline-block;
        background: url(../images/icons/icon-bg.png) no-repeat 0 0;
        background-position: -32px -320px; }
      .list-ranking .ranking-item .ranking-item-img .ranking-number p {
        color: #158200;
        font-size: 16px;
        font-weight: 600; }
        .list-ranking .ranking-item .ranking-item-img .ranking-number p span {
          font-size: 30px; }
        .list-ranking .ranking-item .ranking-item-img .ranking-number p span.ranking_label,
        .ranking-mobile .owl-item .ranking-item .ranking-item-img .ranking-number p span.ranking_label{
          display: inline-block;
          background: #158200;
          width: 1.6em;
          height: 1.6em;
          line-height: 1.7em;
          font-size: 18px;
          border-radius: 50%;
          overflow: hidden;
          padding: 0;
          margin-left: 0;
          color: #fff;
          text-align: center;
        }
    .list-ranking .ranking-item .ranking-item-img .ranking-img {
      display: inline-block;
      float: left;
      width: calc(100% - 50px); }
  .list-ranking .ranking-item .ranking-title a {
    font-size: 13px;
    color: #333; }
    .list-ranking .ranking-item .ranking-title a:hover {
      color: #158200; }
  .list-ranking .ranking-item .ranking-price {
    color: #f00;
    margin-top: 5px; }
    .list-ranking .ranking-item .ranking-price b {
      font-size: 18px;
      font-weight: 500; }
  .list-ranking .ranking-item:nth-child(1) .ranking-item-img .ranking-number .icon_ranking {
    background: url(../images/icons/icon-bg.png) no-repeat 0 0;
    background-position: 0px -288px; }
  .list-ranking .ranking-item:nth-child(2) .ranking-item-img .ranking-number .icon_ranking {
    background: url(../images/icons/icon-bg.png) no-repeat 0 0;
    background-position: -32px -288px; }
  .list-ranking .ranking-item:nth-child(3) .ranking-item-img .ranking-number .icon_ranking {
    background: url(../images/icons/icon-bg.png) no-repeat 0 0;
    background-position: 0px -320px; }
  .list-ranking .ranking-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0; }

.ranking-mobile .owl-item .ranking-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: inline-block;
  width: 100%; }
  .ranking-mobile .owl-item .ranking-item .ranking-item-img {
    display: inline-block;
    width: 100%; }
    .ranking-mobile .owl-item .ranking-item .ranking-item-img .ranking-number {
      position: relative;
      width: 50px;
      text-align: left;
      float: left;
      display: inline-block; }
      .ranking-mobile .owl-item .ranking-item .ranking-item-img .ranking-number .icon_ranking {
        background: transparent;
        width: 32px;
        height: 32px;
        margin-left: 0px;
        margin-bottom: 5px;
        display: inline-block;
        background: url(../images/icons/icon-bg.png) no-repeat 0 0;
        background-position: -32px -320px; }
      .ranking-mobile .owl-item .ranking-item .ranking-item-img .ranking-number p {
        color: #158200;
        font-size: 16px;
        font-weight: 600; }
        .ranking-mobile .owl-item .ranking-item .ranking-item-img .ranking-number p span {
          font-size: 30px; }
    .ranking-mobile .owl-item .ranking-item .ranking-item-img .ranking-img {
      display: inline-block;
      float: left;
      width: calc(100% - 50px); }
  .ranking-mobile .owl-item .ranking-item .ranking-title {
    max-height: 66px;
    overflow: hidden; }
    .ranking-mobile .owl-item .ranking-item .ranking-title a {
      font-size: 13px;
      color: #333; }
      .ranking-mobile .owl-item .ranking-item .ranking-title a:hover {
        color: #158200; }
.ranking-mobile .owl-item:nth-child(1) .ranking-item .ranking-item-img .ranking-number .icon_ranking {
  background: url(../images/icons/icon-bg.png) no-repeat 0 0;
  background-position: 0px -288px; }
.ranking-mobile .owl-item:nth-child(2) .ranking-item .ranking-item-img .ranking-number .icon_ranking {
  background: url(../images/icons/icon-bg.png) no-repeat 0 0;
  background-position: -32px -288px; }
.ranking-mobile .owl-item:nth-child(3) .ranking-item .ranking-item-img .ranking-number .icon_ranking {
  background: url(../images/icons/icon-bg.png) no-repeat 0 0;
  background-position: 0px -320px; }

.banner-sale {
  padding: 20px 0 0 0; }
  .banner-sale .owl-nav .owl-prev,
  .banner-sale .owl-nav .owl-next {
    position: absolute;
    top: calc(50% - 30px);
    width: 30px;
    background-color: #666;
    height: 40px;
    color: #fff;
    text-align: center; }
    .banner-sale .owl-nav .owl-prev i,
    .banner-sale .owl-nav .owl-next i {
      font-weight: 400;
      line-height: 40px;
      font-size: 20px; }
  .banner-sale .owl-nav .disabled {
    cursor: not-allowed;
    opacity: 0.8; }
    .banner-sale .owl-nav .disabled i {
      color: #fff; }
  .banner-sale .owl-nav .owl-prev {
    left: 0px; }
  .banner-sale .owl-nav .owl-next {
    right: 0px; }

.category-box .category-box-title {
  border-left: 3px solid #158200;
  padding-left: 10px;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 15px; }
  .category-box .category-box-title h3 {
    margin: 0;
    line-height: 20px;
    font-size: 18px;
    display: inline-block;
    float: left;
    font-weight: 500; }
  .category-box .category-box-title .link-readmore {
    font-size: 13px;
    font-weight: 500;
    color: #158200; }

.product-item .product-img {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  max-height: 160px;
  overflow: hidden; }
.product-item .product-content .product-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  max-height: 40px;
  height: 40px;
  overflow: hidden;
  color: #666;
  display: inline-block;
  width: 100%;
  margin-top: 10px; }
  .product-item .product-content .product-name:hover {
    color: #158200; }
.product-item .product-content .product-price {
  display: block;
  width: 100%;
  margin-top: 3px;
  text-align: center;
  color: #f1a5a5;
  font-size: 11px;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
  overflow: hidden; }
  .product-item .product-content .product-price b {
    color: #e74c3c;
    font-weight: 500;
    font-size: 16px; }
.product-item .product-content .product-discount {
  text-align: center;
  color: #666;
  font-size: 13px; }

.category-box {
  padding: 10px 25px; }
  .category-box .owl-nav .owl-prev,
  .category-box .owl-nav .owl-next {
    position: absolute;
    top: calc(50% - 60px);
    width: 20px;
    height: 30px;
    color: #666;
    text-align: center; }
    .category-box .owl-nav .owl-prev i,
    .category-box .owl-nav .owl-next i {
      font-weight: 400;
      line-height: 30px;
      font-size: 25px; }
  .category-box .owl-nav .disabled {
    cursor: not-allowed; }
    .category-box .owl-nav .disabled i {
      color: #ccc; }
  .category-box .owl-nav .owl-prev {
    left: -25px; }
  .category-box .owl-nav .owl-next {
    right: -25px; }

.s-footer {
  border-top: 3px solid #158200;
  padding: 20px 0;
  background-color: #fff; }
  .s-footer .s-footer-contents .sfc-item h3 {
    margin-top: 0px;
    font-size: 20px;
    font-weight: 600; }
  .s-footer .s-footer-contents .sfc-item ul {
    padding-left: 20px;
    border-left: 1px dotted #ccc; }
    .s-footer .s-footer-contents .sfc-item ul li a {
      color: #333; }
      .s-footer .s-footer-contents .sfc-item ul li a:hover {
        color: #158200; }
  .s-footer .s-footer-contents .app-list li img {
    height: 60px; }

.s-footer-copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f5f5f5; }
  .s-footer-copyright p {
    margin-bottom: 0; }

._product_wrapper {
  width: calc(100% - 200px);
  display: inline-block;
  padding: 15px 15px 30px;
  background-color: #fff; }
  ._product_wrapper .breadcrumb {
    margin-bottom: 0px; }
  ._product_wrapper .logo-branch {
    display: inline-block;
    width: 100%;
    padding-left: 15px;
    margin-bottom: 15px; }
    ._product_wrapper .logo-branch img {
      max-height: 60px; }
    ._product_wrapper .logo-branch h3 {
      max-width: calc(100% - 300px);
      font-weight: 600;
      line-height: 25px;
      font-size: 18px;
      margin-top: 0px;
      margin-bottom: 0;
      margin-left: 15px; }
  ._product_wrapper .product_image_left .slider_img_product {
    overflow: hidden;
    height: auto;
    width: 432px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc; }
    ._product_wrapper .product_image_left .slider_img_product img {
      max-width: 100%;
      max-height: 100%; }
  ._product_wrapper .product_image_left .gallery_img_product {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-flow:row wrap;
      justify-content:flex-start;
    margin-top: 10px;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    }
    ._product_wrapper .product_image_left .gallery_img_product a {
      width: 20%;
      float: left;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2px solid transparent;
      margin: 5px 0;
      }
      ._product_wrapper .product_image_left .gallery_img_product a img {
        max-width: 100%;
        max-height: 100%; }
      ._product_wrapper .product_image_left .gallery_img_product a.active {
        border: 2px solid #333; }
  ._product_wrapper .product_detail_right .p_info_text .p_info_name {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: 25px;
    font-weight: 600; }
  ._product_wrapper .product_detail_right .p_info_text .p_info_desc {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px; }
  ._product_wrapper .product_detail_right .p_info_price {
    color: #de3d2c;
    font-size: 16px;
    margin-bottom: 15px; }
    ._product_wrapper .product_detail_right .p_info_price strong {
      font-size: 20px;
      font-weight: 600; }
  ._product_wrapper .product_detail_right .p_info_price.remove_price{
      color: #333;
      position:relative;
      display: inline-block;
      display: inline-flex;
  }
  ._product_wrapper .product_detail_right .p_info_price.remove_price:before{
    content: '';
    display: block;
    position: absolute;
    top: 0.7em;
    left: 0;
    right: 0;
    border-top: 1px solid;
  }
  ._product_wrapper .product_detail_right .p_info_cost {
    color: #de3d2c;
    font-size: 18px;
    margin-bottom: 15px; }
    ._product_wrapper .product_detail_right .p_info_cost strong {
      font-size: 30px;
      font-weight: 600;
      text-decoration: line-through; }
    ._product_wrapper .product_detail_right .p_info_cost .lbsale {
      padding: 5px 10px;
      background: #df4130;
      margin-left: 10px;
      color: #fff;
      border-radius: 5px;
      margin: 10px; }
  ._product_wrapper .product_detail_right .select_group {
    margin-bottom: 10px; }
    ._product_wrapper .product_detail_right .select_group span {
      line-height: 30px; }
    ._product_wrapper .product_detail_right .select_group select {
      height: 30px;
      min-width: 100px;
      border: 1px solid #ccc;
      padding: 0 5px;
      background: linear-gradient(to bottom, #f4f4f4, #eee); }
    ._product_wrapper .product_detail_right .select_group input {
      height: 30px;
      min-width: 100px;
      border: 1px solid #ccc;
      padding: 0 5px 0 15px;
      width: 100px; }
    ._product_wrapper .product_detail_right .select_group td {
      padding: 8px 15px; }
    ._product_wrapper .product_detail_right .select_group td:first-child {
      background-color: #fafafa; }
  ._product_wrapper .product_detail_right .p_info_button {
    width: calc(100% + 10px);
    margin: 0 -5px; }
    ._product_wrapper .product_detail_right .p_info_button .button_area {
      width: 50%;
      float: left;
      padding: 0 5px; }
  ._product_wrapper .product_detail_right .p_info_social strong {
    float: left;
    line-height: 40px;
    font-size: 16px; }
  ._product_wrapper .product_detail_right .p_info_social ul {
    float: left;
    margin-left: 10px; }
    ._product_wrapper .product_detail_right .p_info_social ul li {
      display: inline-block;
      margin: 0px 5px 10px 5px; }
      ._product_wrapper .product_detail_right .p_info_social ul li img {
        width: 40px;
        height: 40px;
        border-radius: 4px; }
  ._product_wrapper ._product_box {
    display: inline-block;
    width: 100%; }
  ._product_wrapper .product_related ._title {
    position: relative;
    height: 22px;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: bold; }
    ._product_wrapper .product_related ._title span {
      color: #333;
      position: absolute;
      z-index: 2;
      top: 0;
      left: 0;
      padding-right: 20px;
      background-color: #fff; }
    ._product_wrapper .product_related ._title:after {
      position: absolute;
      z-index: 1;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      background-color: #e5e5e5; }
  ._product_wrapper .product_related_slider .owl-nav .owl-prev,
  ._product_wrapper .product_related_slider .owl-nav .owl-next {
    position: absolute;
    top: calc(50% - 75px);
    width: 30px;
    height: 60px;
    color: #fff;
    background-color: #999;
    text-align: center; }
    ._product_wrapper .product_related_slider .owl-nav .owl-prev i,
    ._product_wrapper .product_related_slider .owl-nav .owl-next i {
      font-weight: 400;
      line-height: 60px;
      font-size: 20px; }
  ._product_wrapper .product_related_slider .owl-nav .disabled {
    cursor: not-allowed;
    opacity: 0.7; }
    ._product_wrapper .product_related_slider .owl-nav .disabled i {
      color: #fff; }
  ._product_wrapper .product_related_slider .owl-nav .owl-prev {
    left: 0px; }
  ._product_wrapper .product_related_slider .owl-nav .owl-next {
    right: 0px; }

.button_blue {
  border-radius: 25px;
  color: #fff;
  background-color: #158200;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  width: 100%;
  max-width: 260px;
  margin: 10px auto;
  border: 1px solid #158200;
  outline: none;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  position: relative; }
  .button_blue i {
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    left: 30px;
    top: 13px; }
  .button_blue:hover, .button_blue:focus, .button_blue:active {
    text-decoration: none;
    color: #fff; }

.button_gray {
  border-radius: 5px;
  background-color: #999;
  font-size: 13px;
  font-weight: 600;
  height: 40px;
  width: 100%;
  max-width: 200px;
  border: 1px solid #999;
  outline: none;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  color: #fff; }

.button_yellow {
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  height: 40px;
  width: 100%;
  border: 1px solid #f39c12;
  background-color: #f39c12;
  outline: none;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  color: #fff; }

.button_medium {
  height: 45px;
  line-height: 45px;
  max-width: 250px;
  font-size: 15px;
  font-weight: 500; }

.button_small {
  height: 40px;
  line-height: 40px;
  max-width: 200px;
  min-width: 150px;
  font-size: 14px;
  font-weight: 500;
  margin: 0; }

.button_blue_border {
  border-radius: 5px;
  color: #158200;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  padding: 0 15px;
  width: 100%;
  max-width: 200px;
  border: 1px solid #158200;
  outline: none;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  text-decoration: none; }
  .button_blue_border:hover, .button_blue_border:active, .button_blue_border:focus {
    text-decoration: none; }

.button_around {
  border-radius: 40px; }

.button_addcart {
  border-radius: 25px;
  color: #fff;
  background-color: #158200;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  width: 100%;
  max-width: 300px;
  margin: 10px auto;
  border: 1px solid #158200;
  outline: none;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  position: relative;
  padding-left: 30px; }
  .button_addcart i {
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    left: 30px;
    top: 8px; }
  .button_addcart:hover, .button_addcart:focus, .button_addcart:active {
    text-decoration: none; }

.button_favorite {
  border-radius: 25px;
  color: #158200;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  width: 100%;
  max-width: 300px;
  margin: 10px auto;
  border: 1px solid #158200;
  outline: none;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  position: relative; }
  .button_favorite:hover, .button_favorite:focus, .button_favorite:active {
    text-decoration: none;
    color: #158200;
    background-color: #e9f5e9; }
  .button_favorite i {
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    left: 30px;
    top: 8px; }

.button_unfavorite {
  border-radius: 25px;
  color: #fff;
  background-color: #158200;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border: 1px solid #158200;
  outline: none;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  position: relative; }
  .button_unfavorite:hover, .button_unfavorite:focus, .button_unfavorite:active {
    text-decoration: none;
    color: #fff;
    background-color: #158200; }
  .button_unfavorite i {
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    left: 30px;
    top: 8px; }

.item-ranking .product-img {
  position: relative;
  max-height: 160px;
  overflow: hidden; }
  .item-ranking .product-img .ranking_icon {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    border: 1px solid #158200;
    height: 50px;
    width: 50px;
    display: inline-block;
    text-align: center; }
    .item-ranking .product-img .ranking_icon img {
      width: 20px;
      margin: 3px auto; }
    .item-ranking .product-img .ranking_icon span {
      color: #158200;
      font-weight: 600;
      font-size: 16px; }

.sidebar-left-item {
  margin-top: 20px; }

.p_promotion {
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  border-top: 1px dotted #ccc; }
  .p_promotion .btns-red {
    background-color: #d62525;
    color: #fff; }
  .p_promotion .btns-gray {
    background-color: #999999;
    color: #fff; }

.promotion {
  display: inline-block;
  height: 60px;
  width: 60px;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 15px 8px;
  line-height: 15px;
  font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
  background-image: url("../images/icons/icon_promotion.png");
  background-size: 100%;
  float: left; }

.p_shipping {
  display: inline-block;
  width: 100%;
  margin: 5px 0;
  padding: 5px 0;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc; }

.btn_shipping {
  display: inline-block;
  margin: 5px 5px;
  height: 35px;
  padding: 7.5px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
  float: left;
  background-color: #fff;
  border: 1px solid #ccc; }

.btns-red {
  border-color: #d62525;
  color: #d62525; }

.btns-gray {
  border-color: #999999;
  color: #999999; }

.btns-yellow {
  border-color: #f1c40f;
  color: #f1c40f; }

.btns-orange {
  border-color: #e67e22;
  color: #e67e22; }

.btns-green {
  border-color: #009600;
  color: #009600; }

.btns-blue {
  border-color: #04a3d7;
  color: #04a3d7; }

.btns-pink {
  border-color: #ffb1bf;
  color: #ffb1bf; }

.btns-violet {
  border-color: #6c1e98;
  color: #6c1e98; }

.btns-brow {
  border-color: #955322;
  color: #955322; }

.animation {
  -webkit-animation: changecolor 8s infinite;
  /* Safari 4.0 - 8.0 */
  animation: changecolor 8s infinite; }

@-webkit-keyframes changecolor {
  0% {
    background-color: #e74c3c; }
  20% {
    background-color: #f1c40f; }
  40% {
    background-color: #e74c3c; }
  60% {
    background-color: #f1c40f; }
  80% {
    background-color: #e74c3c; }
  100% {
    background-color: #f1c40f; } }
/* Standard syntax */
@keyframes changecolor {
  0% {
    background-color: #e74c3c; }
  20% {
    background-color: #f1c40f; }
  40% {
    background-color: #e74c3c; }
  60% {
    background-color: #f1c40f; }
  80% {
    background-color: #e74c3c; }
  100% {
    background-color: #f1c40f; } }
.morecontent span {
  display: none; }

.morelink {
  display: inherit;
  color: #04a3d7;
  font-weight: 600; }
  .morelink:hover {
    color: #158200; }

.about-product-content {
  display: inline-block;
  width: 100%;
  padding-left: 15px;
  margin-top: 20px; }
  .about-product-content .nav-tabs > li > a {
    color: #555;
    border-radius: 0px;
    margin-right: 10px; }
  .about-product-content .nav-tabs > li.active > a, .about-product-content .nav-tabs > li.active > a:focus, .about-product-content .nav-tabs > li.active > a:hover {
    color: #555; }
  .about-product-content .nav-tabs > li > a:hover {
    cursor: pointer;
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent; }
  .about-product-content .tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-top: 0px; }
    .about-product-content .tab-content .table {
      margin-bottom: 0px; }
      .about-product-content .tab-content .table tr:last-child td, .about-product-content .tab-content .table tr:last-child th {
        border-bottom: none; }
    .about-product-content .tab-content .table > tbody > tr > td, .about-product-content .tab-content .table > tbody > tr > th, .about-product-content .tab-content .table > tfoot > tr > td, .about-product-content .tab-content .table > tfoot > tr > th, .about-product-content .tab-content .table > thead > tr > td, .about-product-content .tab-content .table > thead > tr > th {
      border-top: 0px;
      border-bottom: 1px solid #ddd; }

.back-to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  display: none;
  cursor: pointer;
  z-index: 99; }
  .back-to-top i {
    background: #158200;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold; }

.title-header h3 {
  padding-left: 10px;
  border-left: 3px solid #158200;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px; }

.title-header-1 h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0px; }

.no-sidebar-main {
  background-color: #fff; }
  .no-sidebar-main ._container {
    max-width: 1000px; }
  .no-sidebar-main ._content {
    background-color: #fff; }
  .no-sidebar-main .content_nosidebar .step-navbar .nav-pills > li.active > span {
    background-color: #158200;
    color: #fff; }
  .no-sidebar-main .content_nosidebar .step-navbar .nav-step {
    margin: 20px auto 20px auto;
    text-align: center; }
    .no-sidebar-main .content_nosidebar .step-navbar .nav-step li {
      display: inline-flex;
      float: none;
      position: relative;
      overflow: visible;
      border-right: 10px solid transparent;
      border-left: 10px solid transparent;
      text-transform: capitalize;
      margin: 5px 0; }
      .no-sidebar-main .content_nosidebar .step-navbar .nav-step li span {
        border-radius: 0;
        background-color: #eee;
        padding: 10px 25px;
        color: #333;
        font-size: 16px;
        line-height: 20px;
        min-width: 170px; }
        .no-sidebar-main .content_nosidebar .step-navbar .nav-step li span:after {
          position: absolute;
          content: "";
          top: 0px;
          right: -15px;
          width: 0px;
          height: 0px;
          border-style: solid;
          border-width: 20px 0 20px 15px;
          border-color: transparent transparent transparent #eee;
          z-index: 150; }
        .no-sidebar-main .content_nosidebar .step-navbar .nav-step li span:before {
          position: absolute;
          content: "";
          top: 0px;
          left: -15px;
          width: 0px;
          height: 0px;
          border-style: solid;
          border-width: 20px 0 20px 15px;
          border-color: #eee #eee #eee transparent;
          z-index: 150; }
    .no-sidebar-main .content_nosidebar .step-navbar .nav-step > li.active > span,
    .no-sidebar-main .content_nosidebar .step-navbar .nav-step > li.active > span:focus,
    .no-sidebar-main .content_nosidebar .step-navbar .nav-step > li > span:focus {
      background-color: #158200;
      color: #fff; }
      .no-sidebar-main .content_nosidebar .step-navbar .nav-step > li.active > span:after,
      .no-sidebar-main .content_nosidebar .step-navbar .nav-step > li.active > span:focus:after,
      .no-sidebar-main .content_nosidebar .step-navbar .nav-step > li > span:focus:after {
        border-color: transparent transparent transparent #158200; }
      .no-sidebar-main .content_nosidebar .step-navbar .nav-step > li.active > span:before,
      .no-sidebar-main .content_nosidebar .step-navbar .nav-step > li.active > span:focus:before,
      .no-sidebar-main .content_nosidebar .step-navbar .nav-step > li > span:focus:before {
        border-color: #158200 #158200 #158200 transparent; }

.section-block {
  margin-top: 20px;
  margin-bottom: 20px; }
  .section-block .form_block {
    border: 1px solid #ccc;
    display: inline-block;
    width: 100%; }
    .section-block .form_block .form-header {
      padding: 15px 20px;
      display: inline-block;
      width: 100%;
      font-size: 20px;
      background-color: #f5f5f5;
      text-align: center; }
    .section-block .form_block .middle_ttl {
      font-size: 18px; }
    .section-block .form_block .form-left {
      padding: 20px 50px;
      display: inline-block;
      width: 100%; }
      .section-block .form_block .form-left .form-control {
        border-color: #ddd;
        border-radius: 2px;
        height: 40px;
        line-height: 26px;
        margin-bottom: 0; }
        .section-block .form_block .form-left .form-control:hover, .section-block .form_block .form-left .form-control:focus, .section-block .form_block .form-left .form-control:active {
          border-color: #aaa;
          box-shadow: none; }
      .section-block .form_block .form-left textarea.form-control {
        min-height: 120px; }
      .section-block .form_block .form-left .has-error .form-control {
        border-color: #e74c3c; }
    .section-block .form_block .form-right {
      padding: 20px 50px;
      display: inline-block;
      width: 100%; }
      .section-block .form_block .form-right .list-social-register li {
        position: relative;
        color: #313131;
        background-color: #fff;
        border-radius: 2px;
        display: block;
        float: left;
        width: calc(33.33% - 10px);
        margin: 0 5px 10px 5px;
        border: 1px solid #ddd; }
        @media screen and (max-width: 767px) {
          .section-block .form_block .form-right .list-social-register li {
            width: 100%; } }
        .section-block .form_block .form-right .list-social-register li img {
          width: 40px;
          margin-right: 25px; }
        .section-block .form_block .form-right .list-social-register li a {
          color: #313131;
          font-size: 14px;
          text-decoration: none; }
        .section-block .form_block .form-right .list-social-register li.srfb {
          border-color: #455894; }
        .section-block .form_block .form-right .list-social-register li.sryh {
          border-color: #712891; }
        .section-block .form_block .form-right .list-social-register li.srgp {
          border-color: #dd4d3f; }
        .section-block .form_block .form-right .list-social-register li.srtw {
          border-color: #5cb85c; }
        .section-block .form_block .form-right .list-social-register li.srl {
          border-color: #00c300; }
        .section-block .form_block .form-right .list-social-register li.srw {
          border-color: #000099; }
          .section-block .form_block .form-right .list-social-register li.srw img {
            border-right: 1px solid #000099; }

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
  color: #e74c3c; }

.form-control::-webkit-input-placeholder {
  font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
  color: #ccc; }
.form-control::-moz-placeholder {
  font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
  color: #ccc; }
.form-control:-ms-input-placeholder {
  font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
  color: #ccc; }
.form-control:-moz-placeholder {
  font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
  color: #ccc; }

.button-2-area button {
  margin: 10px; }

.text-success {
  color: #158200;
  font-weight: bold; }
  .text-success h3 {
    font-size: 80px;
    font-weight: 700;
    line-height: 100%; }
  .text-success p {
    font-size: 30px;
    line-height: 40px;
    margin-top: 20px; }

.product_cart {
  width: 100%;
  background-color: #fff;
  display: inline-block;
  margin-bottom: 30px;
  border: 2px solid #e7e7e7;
  background-color: #fcfcfc; }
  .product_cart .shop_brand {
    width: 150px;
    margin-top: 15px;
    margin-left: 15px;
    float: left; }
    .product_cart .shop_brand p {
      font-size: 16px;
      margin-top: 10px;
      text-align: center; }
    .product_cart .shop_brand a {
      color: #333; }
  .product_cart .list_product_cart {
    display: inline-block;
    width: calc(100% - 180px);
    float: left;
    border-left: 1px solid #e7e7e7;
    margin-left: 15px;
    min-height: 245px;
    }
    .product_cart .list_product_cart .item_cart {
      display: inline-table;
      width: 100%;
      background-color: #fff;
      padding: 15px;
      border-bottom: 1px solid #e7e7e7; }
      .product_cart .list_product_cart .item_cart:last-child {
        border-bottom: none; }
      .product_cart .list_product_cart .item_cart .item_avatar {
        width: 150px;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        float: left;
        margin-right: 10px; }
        .product_cart .list_product_cart .item_cart .item_avatar img {
          max-width: 100%;
          max-height: 100%; }
      .product_cart .list_product_cart .item_cart .item_brand img {
        max-width: 100px;
        margin-right: 15px; }
      .product_cart .list_product_cart .item_cart .item_brand span {
        font-size: 18px;
        font-weight: 600; }
      .product_cart .list_product_cart .item_cart .item_brand a {
        text-decoration: none;
        color: #333; }
      .product_cart .list_product_cart .item_cart .item_txt {
        display: inline-block;
        float: left;
        width: calc(100% - 160px);
        margin-right: 0px;
        max-height: 100px;
        overflow: hidden; }
        .product_cart .list_product_cart .item_cart .item_name a {
          font-size: 14px;
          display: inline-block;
          margin-top: 0px;
          line-height: 20px;
          max-height: 100px;
          margin-bottom: 0px;
          overflow: hidden;
          color: #333; }

.product_cart .list_product_cart .item_cart .item_name a:hover {
    color: #5cb85c;
}
      .product_cart .list_product_cart .item_cart .note {
        display: inline-block;
        width: calc(100% - 115px); }
        .product_cart .list_product_cart .item_cart .note span {
          width: 45px;
          margin-top: 5px;
          float: left; }
        .product_cart .list_product_cart .item_cart .note input {
          float: left;
          width: calc(100% - 45px);
          height: 30px;
          font-size: 14px;
          line-height: 20px;
          padding: 5px 10px; }
      .product_cart .list_product_cart .item_cart .item_subtotal {
        display: inline-block;
        float: left;
        padding-top: 10px; }
        .product_cart .list_product_cart .item_cart .item_subtotal .price {
          color: #ff4c39;
          font-size: 14px;
          text-align: center;
          line-height: 30px;
          width: 150px;
          overflow: hidden; }
        .product_cart .list_product_cart .item_cart .item_subtotal .item_quan {
          display: inline-block; }
          .product_cart .list_product_cart .item_cart .item_subtotal .item_quan .item_cell_inner span {
            width: 40px;
            text-align: center;
            font-size: 20px;
            line-height: 30px;
            font-weight: bold;
            float: left; }
          .product_cart .list_product_cart .item_cart .item_subtotal .item_quan .item_cell_inner .quantity {
            display: inline-block;
            float: left; }
            .product_cart .list_product_cart .item_cart .item_subtotal .item_quan .item_cell_inner .quantity select {
              min-width: 50px;
              height: 30px; }
        .product_cart .list_product_cart .item_cart .item_subtotal .total {
          color: #de3d2c;
          font-size: 16px;
          text-align: center;
          line-height: 30px; }
      .product_cart .list_product_cart .item_cart .item_delete {
        width: 65px;
        margin-left: 7px;
        padding-top: 8px;
        display: inline-block;
        float: left; }
        .product_cart .list_product_cart .item_cart .item_delete .delete a {
          display: inline-block;
          width: 100%;
          padding: 7px 5px;
          text-align: center;
          border-radius: 5px;
          line-height: 20px;
          color: #fff;
          height: 34px;
          border: 1px solid #ff4c39;
          text-decoration: none;
          background-color: #ff4c39; }
    .product_cart .list_product_cart .two-address .item_avatar {
      width: 150px; }
      .product_cart .list_product_cart .two-address .item_avatar img {
        width: 150px;
        height: 150px; }
  .product_cart .sum_price {
    padding: 20px 15px;
    margin-bottom: 20px;
    background-color: #fff;
    display: inline-block;
    width: 100%; }
    .product_cart .sum_price span {
      font-size: 18px;
      float: right;
      font-weight: 600; }
    .product_cart .sum_price .total {
      float: right;
      display: inline-block;
      width: 200px;
      margin-left: 15px; }
      .product_cart .sum_price .total strong {
        color: #de3d2c;
        font-size: 25px;
        display: inline-block; }

.cart-content {
  background-color: #f6f6f6;
  padding-bottom: 40px;
  position: relative; }
  .cart-content ._content {
    background-color: #f6f6f6; }

.cart_main {
  width: calc(100% - 300px);
  float: left;
  border-right: 1px solid #e7e7e7;
  min-height: 245px;
  background-color: #fff;
  }

.cart_side {
  width: 300px;
  float: right;
  background: #fcfcfc;
  position: relative; }
  .cart_side .cart_side_inner {
    padding: 15px;
    display: inline-block;
    width: 100%;
    }
    .cart_side .cart_side_inner .cart_subtotal_contents {
      padding: 14px;
      display: inline-block;
      width: 100%;
      border: 1px solid #e7e7e7;
      background-color: #fff; }
      .cart_side .cart_side_inner .cart_subtotal_contents p {
        width: 100%;
        display: inline-block;
        margin-bottom: 2px; }
        .cart_side .cart_side_inner .cart_subtotal_contents p:last-child {
          border-bottom: 1px solid #e7e7e7; }
        .cart_side .cart_side_inner .cart_subtotal_contents p.line_price:last-child {
          border-bottom: none; }
      .cart_side .cart_side_inner .cart_subtotal_contents .total {
        padding: 10px 0;
        margin: 10px 0;
        display: inline-block;
        width: 100%;
        border-top: 1px solid #e7e7e7;
        border-bottom: 1px solid #e7e7e7; }
      .cart_side .cart_side_inner .cart_subtotal_contents .button_addcart {
        height: 50px;
        line-height: 50px;
        font-weight: 500;
        margin-top: 10px;
        margin-bottom: 0px; }
        .cart_side .cart_side_inner .cart_subtotal_contents .button_addcart i {
          top: 7px; }
      .cart_side .cart_side_inner .cart_subtotal_contents textarea.form-control {
        height: 70px;
        border-radius: 0px; }
  .cart_side .cart_side_fixed {
    position: fixed;
    z-index: 2;
    top: 20px;
    bottom: 300px;
    width: 300px; }
  .cart_side .cart_side_fixed_2 {
    bottom: 400px;
    top: auto; }

.price {
  color: #ff4c39;
  font-size: 14px; }
.price.black{
  color: #333;
}
  .price b {
    font-size: 16px; }

.form_body {
  padding: 30px 20px;
  background-color: #fff; }

.section-block .form_login {
  border: none;
  padding: 20px;
  background-color: #fff; }
  .section-block .form_login .title-header h3 {
    margin-top: 0px; }
  .section-block .form_login form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto; }
    .section-block .form_login form .form-control {
      border-radius: 0px;
      height: 45px; }
    .section-block .form_login form .form-group label {
      display: -webkit-box; }
    .section-block .form_login form .button-area {
      display: inline-block;
      width: 100%;
      text-align: center; }
    .section-block .form_login form .has-error .form-control {
      border-color: #e74c3c; }
.section-block .form_regiter .form-left {
  padding: 20px 20px; }
.section-block .form_regiter form {
  max-width: 100%; }
  .section-block .form_regiter form .form-group label {
    display: inline-block; }
.section-block .form_regiter .cart-button-area {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc; }
  .section-block .form_regiter .cart-button-area .cart-2button-area {
    text-align: center !important; }
    .section-block .form_regiter .cart-button-area .cart-2button-area button {
      width: calc(50% - 30px);
      max-width: 250px;
      margin: 0 5px; }
      @media screen and (max-width: 767px) {
        .section-block .form_regiter .cart-button-area .cart-2button-area button {
          height: 40px;
          line-height: 40px; } }
.section-block .form_regiter .form_pay .form_cart_inner {
  width: 100%; }
  .section-block .form_regiter .form_pay .form_cart_inner .card_number .form-control {
    width: calc(85% / 4);
    float: left; }
  .section-block .form_regiter .form_pay .form_cart_inner .card_number span {
    line-height: 40px;
    float: left;
    width: 5%;
    text-align: center; }
.section-block .form_cart_inner {
  margin: 0 auto;
  width: 650px; }

.list-sender {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px; }

.sender-address {
  position: relative;
  min-width: 200px;
  width: calc(25% - 10px);
  float: left;
  margin: 0 5px 10px 5px;
  padding: 10px;
  border-radius: 3px;
  border: 1px solid #ccc; }
  .sender-address p {
    border-bottom: 1px dashed #ccc;
    margin-bottom: 7px;
    padding-bottom: 7px;
    word-break: break-all; }
  .sender-address p:first-child{
    padding-right: 20px;
  }
  .sender-address p:last-child {
    margin-bottom: 15px; }
  .sender-address .button-edit-address {
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 0 2px 0 2px;
    width: 30px;
    height: 34px;
    background-color: #158200;
    text-align: center;
    line-height: 31px;
    }

.list-sender .sender-address .button-edit-address {
    background: #51a251;
    height: 40px;
    width: 38px;
    line-height: 37px;
}
    .sender-address .button-edit-address i {
      color: #fff;
      font-size: 16px; }
  .sender-address .button-checkbox {
    width: 100%;
    display: inline-block; }
    .sender-address .button-checkbox .btn {
      width: 100%; }
  .sender-address .radio {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%; }
    .sender-address .radio.active {
      color: #fff;
      background-color: #449d44;
      border-color: #398439; }
      .sender-address .radio.active .cr {
        border-color: #fff; }

.btn-checkbox {
  display: inline-block; }
  .btn-checkbox i {
    color: #333;
    font-size: 16px;
    width: 15px; }
  .btn-checkbox .btn {
    width: 100%;
    outline: none; }
  .btn-checkbox .active {
    color: #fff; }
    .btn-checkbox .active i {
      color: #fff; }

.category-list li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  position: relative; }
  .category-list li a {
    padding-right: 15px;
    display: block;
    width: 100%;
    font-weight: bold;
    color: #333; }
    .category-list li a:hover {
      color: #158200; }
  .category-list li .show-category-child {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
    font-size: 16px; }
    .category-list li .show-category-child:before {
      content: "\f147"; }
    .category-list li .show-category-child.active:before {
      content: "\f196"; }
  .category-list li .category-tree {
    display: none;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -khtml-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    .category-list li .category-tree.active {
      display: inline-block;
      -webkit-transition: all 0.4s ease-in-out;
      -khtml-transition: all 0.4s ease-in-out;
      -moz-transition: all 0.4s ease-in-out;
      -ms-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }
    .category-list li .category-tree li {
      padding: 5px 10px;
      border-bottom: none;
      border: 1px solid transparent; }
      .category-list li .category-tree li:hover {
        border: 1px solid #eaeaea;
        background-color: #fff; }
      .category-list li .category-tree li a {
        font-weight: 400;
        font-size: 13px;
        text-decoration: none; }

.search-title {
  display: inline-block;
  margin-top: -20px;
  font-size: 20px;
  font-weight: 600;
  background-color: #fff;
  margin-bottom: 0px;
  padding: 10px 15px 10px 0;
  position: relative;
  z-index: 2; }

.search-result-number {
  position: absolute;
  border: 1px solid #e5e5e5;
  padding: 6px 15px;
  background-color: #fff;
  right: 15px;
  top: -18px;
  color: #777;
  font-size: 14px; }
  .search-result-number span {
    font-size: 20px;
    color: #158200;
    font-weight: 500;
    float: left;
    margin-right: 3px; }

.form-search-category {
  border: 1px solid #e5e5e5;
  padding: 30px 20px 20px 20px;
  margin-top: -20px;
  z-index: 1;
  position: relative; }
  .form-search-category .form-group {
    margin-bottom: 0px; }
    .form-search-category .form-group .radio-group {
      display: inline-block;
      width: 50%;
      float: left; }
      .form-search-category .form-group .radio-group .input-group {
        display: inline-block;
        width: 100%;
        padding-right: 10px; }
      .form-search-category .form-group .radio-group .btn-group {
        display: inline-block;
        width: 100%; }
        .form-search-category .form-group .radio-group .btn-group .btn {
          background-color: #fff;
          border: 1px solid #666666;
          border-radius: 0px;
          color: #666666;
          padding: 10px 20px;
          width: 25%;
          min-width: 25%;
          display: inline-block; }
        .form-search-category .form-group .radio-group .btn-group .active {
          background-color: #666666;
          color: #fff;
          border: 1px solid #666666; }
    .form-search-category .form-group .check-group {
      display: inline-block;
      width: 50%;
      float: right; }
      .form-search-category .form-group .check-group .btn-checkbox {
        float: left;
        display: inline-block;
        width: 50%;
        float: left; }
        .form-search-category .form-group .check-group .btn-checkbox .btn {
          background-color: #fff;
          border: 1px solid #666666;
          border-radius: 0px;
          color: #666666;
          padding: 10px 20px;
          display: block;
          float: left;
          height: 42px; }
          .form-search-category .form-group .check-group .btn-checkbox .btn i {
            color: #666666; }
        .form-search-category .form-group .check-group .btn-checkbox .active {
          background-color: #666666;
          color: #fff; }
          .form-search-category .form-group .check-group .btn-checkbox .active i {
            color: #fff; }
        .form-search-category .form-group .check-group .btn-checkbox:first-child .btn {
          border-right: 0px; }
    .form-search-category .form-group .group-filter {
      margin-top: 15px;
      display: inline-block;
      width: 50%;
      float: left;
      padding-right: 0px; }
      .form-search-category .form-group .group-filter .sex-status select {
        height: 42px;
        min-width: 180px;
        float: left;
        margin-right: 15px;
        padding-left: 10px;
        border: 1px solid #666666; }
      .form-search-category .form-group .group-filter .price_position {
        height: 42px;
        display: inline-block;
        float: left; }
        .form-search-category .form-group .group-filter .price_position input {
          height: 42px;
          padding-left: 14px;
          padding-right: 5px;
          border: 1px solid #666666; }
    .form-search-category .form-group .search-input {
      margin-top: 15px;
      width: 50%;
      float: right; }
      .form-search-category .form-group .search-input .input-group .form-control {
        height: 42px;
        border-radius: 0px;
        border: 1px solid #666666; }
      .form-search-category .form-group .search-input .input-group .input-group-btn .btn {
        height: 42px;
        border-radius: 0px;
        border: 1px solid #666666;
        background-color: #666666;
        color: #fff; }

.list-product-category {
  margin-top: 20px; }
  .list-product-category .item {
    width: 20%;
    float: left;
    padding: 15px; }
    .list-product-category .item:hover {
      -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
      -khtml-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
      -ms-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
      -o-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3); }
  .list-product-category .product-item a {
    display: inline-block;
    width: 100%; }
  .list-product-category .product-item .product-img {
    text-align: center;
    max-height: 100%;
    margin-bottom: 0px; }
    .list-product-category .product-item .product-img img {
      width: 100%;
      border: solid 1px #ccc; }
  .list-product-category .product-item .product-content a.product-name {
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    max-height: 60px;
    height: 60px; }
  .list-product-category .product-item .product-content .product-price {
    border: none;
    font-size: 11px;
    margin-top: 0px; }
    .list-product-category .product-item .product-content .product-price b {
      font-size: 16px; }
  .list-product-category .product-item .product_note {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px; }
    .list-product-category .product-item .product_note span {
      border: 1px solid #ccc;
      color: #ccc;
      padding: 5px 10px;
      text-transform: uppercase;
      font-size: 12px;
      line-height: 15px; }

.list-product-sale .item {
  width: 25%; }
  .list-product-sale .item .product-item .product-content a.product-name {
    font-weight: 500;
    height: auto; }
  .list-product-sale .item .product-item .product-content .product-price-sale {
    font-weight: 600;
    display: inline-block;
    width: 100%; }
    .list-product-sale .item .product-item .product-content .product-price-sale span {
      color: #ff4c39; }
    .list-product-sale .item .product-item .product-content .product-price-sale .price {
      font-size: 20px; }
    .list-product-sale .item .product-item .product-content .product-price-sale ._product-price-sale {
      float: left;
      margin-right: 10px; }
    .list-product-sale .item .product-item .product-content .product-price-sale .product-origin {
      margin-left: 0px;
      font-size: 14px;
      float: left;
      font-weight: 400; }
      .list-product-sale .item .product-item .product-content .product-price-sale .product-origin .product-origin-price {
        color: #666666;
        margin-right: 5px;
        text-decoration: line-through; }
        .list-product-sale .item .product-item .product-content .product-price-sale .product-origin .product-origin-price span.price {
          color: #666666;
          font-size: 14px; }
        .list-product-sale .item .product-item .product-content .product-price-sale .product-origin .product-origin-price span.currency {
          color: #666666; }
  .list-product-sale .item .product-item .product-content .shop_detail_link {
    color: #1d54a7;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    text-decoration: none; }
    .list-product-sale .item .product-item .product-content .shop_detail_link:hover {
      color: #ff4c39; }

.pagination-product {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 5px;
  width: 100%;
  text-align: center; }
  .pagination-product .sum-text {
    float: left; }
    .pagination-product .sum-text span {
      margin-top: 5px;
      font-size: 15px;
      display: inline-block; }
  .pagination-product nav {
    float: right; }
  .pagination-product .pagination {
    margin-top: 5px;
    margin-bottom: 0px; }
    .pagination-product .pagination li a {
      background-color: #E7E4E0;
      border: 1px solid #ccc;
      color: #222;
      border-radius: 0px;
      padding: 8px 15px;
      margin: 3px; }
  .pagination-product .pagination > .active > a,
  .pagination-product .pagination > .active > a:focus,
  .pagination-product .pagination > .active > a:hover,
  .pagination-product .pagination > .active > span,
  .pagination-product .pagination > .active > span:focus,
  .pagination-product .pagination > .active > span:hover,
  .pagination-product .pagination > li > a:focus,
  .pagination-product .pagination > li > a:hover,
  .pagination-product .pagination > li > span:focus,
  .pagination-product .pagination > li > span:hover {
    background-color: #158200;
    border: 1px solid #158200;
    color: #fff; }

.caution-message button {
  background-color: #ccc;
  box-shadow: none;
  border: 3px solid #ccc;
  padding: 8px 20px;
  border-radius: 5px; }
.caution-message .caution_message {
  margin-top: -3px;
  border-radius: 0 5px 5px 5px;
  background-color: #fff;
  border: 3px solid #ccc;
  padding: 15px 20px; }

.pay_delivery .delivery_truck i {
  font-size: 25px;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.product_detail_radio .radio {
  margin: 5px;
  display: inline-block;
  font-size: 12px; }

.table-cost tbody tr:first-child {
  background-color: #ddd; }
.table-cost tbody tr td {
  border-color: #999;
  vertical-align: middle; }
  .table-cost tbody tr td:first-child {
    background-color: #ddd;
    text-align: center; }

.list-shoplier li {
  width: 100%;
  display: inline-block;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  text-align: center; }
  .list-shoplier li:hover {
    background-color: #fff; }

.section-block .form-login {
  padding: 0; }
  .section-block .form-login .form-left {
    width: 50%;
    padding: 20px 30px;
    display: block;
    float: left;
    border-right: 1px solid #ccc; }
  .section-block .form-login .form-right {
    width: 50%;
    padding: 20px 30px;
    display: block;
    float: left; }

.list-product-favorite {
  margin-top: 0px; }
  .list-product-favorite .title-header {
    margin-left: 15px; }
    .list-product-favorite .title-header h3 {
      margin-top: 0px; }

.data-search {
  position: absolute;
  background-color: #fff;
  border: 2px solid #158200;
  margin-top: -2px;
  width: 100%;
  z-index: 999;
  display: none; }
  .data-search .data-seach-pname {
    border-right: 1px solid #158200;
    width: 40%;
    display: inline-block;
    float: left; }
    .data-search .data-seach-pname li.active > a, .data-search .data-seach-pname li.active > a:focus, .data-search .data-seach-pname li.active > a:hover {
      background-color: #158200;
      border-radius: 0px; }
    .data-search .data-seach-pname > li + li {
      margin: 0; }
    .data-search .data-seach-pname li {
      min-height: 80px;
      max-height: 84px;
      overflow: hidden;
      width: 100%;
      border-bottom: 1px solid #158200; }
      .data-search .data-seach-pname li a {
        border-radius: 0px;
        min-height: 80px;
        line-height: 24px;
        min-height: 80px;
        max-height: 84px;
        overflow: hidden; }
    .data-search .data-seach-pname li:last-child a {
      border-bottom: none; }
  .data-search .data-seach-pdetail {
    width: 60%;
    display: inline-block;
    float: left;
    padding: 15px 15px 0 15px; }
    .data-search .data-seach-pdetail .product-item {
      max-width: 240px;
      margin: auto; }
      .data-search .data-seach-pdetail .product-item .product-img {
        max-height: 240px;
        margin-bottom: 0px;
        border: 1px solid #ccc; }
      .data-search .data-seach-pdetail .product-item .product_note {
        margin-top: 10px;
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px; }
        .data-search .data-seach-pdetail .product-item .product_note span {
          border: 1px solid #ccc;
          color: #ccc;
          padding: 5px 10px;
          text-transform: uppercase;
          font-size: 12px;
          line-height: 15px; }

.list-brand .title-header h3 {
  margin-left: 5px;
  margin-top: 0px; }
.list-brand .list-brand-character {
  display: inline-block;
  margin-bottom: 15px; }
  .list-brand .list-brand-character ul li {
    display: inline-block;
    margin: 5px;
    float: left; }
    .list-brand .list-brand-character ul li a {
      color: #fff;
      display: inline-block;
      line-height: 20px;
      font-size: 16px;
      text-decoration: none;
      padding: 7.5px 12px;
      width: 35px;
      height: 35px;
      background-color: #666; }

.list-shoplier-inner {
  display: inline-block;
  width: 100%; }
  .list-shoplier-inner ul {
    padding: 0 10px;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%; }
    .list-shoplier-inner ul li {
      width: 20%;
      float: left;
      padding: 5px; }
      .list-shoplier-inner ul li .shoplier-item {
        padding: 15px;
        border: 1px solid #ccc; }
        .list-shoplier-inner ul li .shoplier-item .img-wrap {
          display: inline-block;
          width: 100%;
          text-align: center;
          margin-bottom: 20px;
          margin-top: 10px; }
        .list-shoplier-inner ul li .shoplier-item .shoplier-sale {
          display: inline-block;
          width: 100%;
          color: #bf0000;
          font-size: 15px;
          text-align: center; }
        .list-shoplier-inner ul li .shoplier-item .shoplier-copoun {
          display: inline-block;
          width: 100%;
          margin-top: 10px;
          text-align: center;
          font-size: 12px;
          color: #888; }
      .list-shoplier-inner ul li:hover .shoplier-item {
        -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        -khtml-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        -ms-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        -o-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); }

.cart_step_5 {
  display: inline-block;
  width: 100%; }
  .cart_step_5 .cart_step_5_inner {
    display: inline-block;
    width: 100%;
    padding: 0 10px 15px 10px; }
    .cart_step_5 .cart_step_5_inner .title-header {
      padding-left: 5px; }
    .cart_step_5 .cart_step_5_inner .sender-address {
      width: calc(50% - 10px);
      padding: 0;
      border: none; }
      .cart_step_5 .cart_step_5_inner .sender-address .sender-address-inner {
        position: relative;
        border-radius: 3px;
        border: 1px solid #ccc;
        padding: 10px; }
    .cart_step_5 .cart_step_5_inner .info_confirm_box {
      display: inline-block;
      width: 100%;
      margin-bottom: 5px;
      padding-bottom: 15px;
      border-bottom: 1px solid #e7e7e7; }
      .cart_step_5 .cart_step_5_inner .info_confirm_box:last-child {
        border-bottom: none;
        padding-bottom: 0px;
        margin-bottom: 0px; }
      .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart {
        border-left: none;
        width: 100%;
        margin-left: 0;
        padding-left: 15px; }
        .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_avatar {
          width: 150px;
          margin-right: 15px; }
          .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_avatar img {
            width: 150px;
            height: 150px; }
        .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text {
          width: calc(100% - 165px);
          float: right;
          display: inline-block; }
          .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text .item_info p {
            margin-bottom: 0px; }
            .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text .item_info p .red {
              margin-top: 5px;
              display: inline-block;
              color: #ff4c39;
              font-size: 16px; }
          .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text ._address {
            display: inline-block;
            width: 100%;
            margin-top: 10px; }
            .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text ._address b {
              font-size: 15px;
              line-height: 17px;
              margin-bottom: 10px;
              display: inline-block; }
            .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text ._address .item_address {
              position: relative;
              padding-bottom: 10px;
              margin-bottom: 10px;
              border-bottom: 1px dotted #ccc; }
              .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text ._address .item_address p {
                margin: 0; }
              .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text ._address .item_address .item_subtotal {
                padding-top: 0;
                position: absolute;
                top: 0;
                right: 0; }
                .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text ._address .item_address .item_subtotal .fee-ship {
                  padding: 5px 15px;
                  border-radius: 3px;
                  background-color: #ff4c39;
                  float: left;
                  color: #fff;
                  margin-right: 5px; }
    .cart_step_5 .cart_step_5_inner .list_product_cart .item_cart {
      padding: 10px 5px; }
    .cart_step_5 .cart_step_5_inner .feedback_box {
      padding: 0 5px; }

.cart_step_6 {
  display: inline-block;
  width: 100%;
  padding: 30px 20px;
  background-color: #fff; }
  .cart_step_6 img {
    max-width: 80%; }
  .cart_step_6 ._shop_info {
    width: 100%;
    margin: 20px auto;
    padding: 15px;
    max-width: 400px;
    border: 1px solid #ccc; }
    .cart_step_6 ._shop_info img {
      margin-right: 10px;
      width: 25px; }
    .cart_step_6 ._shop_info a {
      font-size: 14px;
      color: #444; }
      .cart_step_6 ._shop_info a:hover {
        color: #158200; }
    .cart_step_6 ._shop_info p {
      margin-bottom: 0;
      font-size: 16px;
      margin-top: 10px;
      color: #e92730; }

.p_point {
  background-color: #ffffa5;
  padding: 10px;
  display: inline-block;
  width: 100%; }

@media (min-width: 768px) {
  .modal-common .modal-dialog {
    width: 700px; } }
.modal-common .modal-dialog .modal-content {
  border-radius: 0px;
  border: none; }
.modal-common .modal-dialog .modal-header {
  background-color: #158200;
  color: #fff; }
.modal-common .modal-dialog .modal-footer {
  text-align: center; }
.modal-common .modal-dialog .modal-body .radio {
  line-height: 25px; }
.modal-common .modal-dialog .modal-body .box {
  padding: 10px 15px;
  border: 1px dotted #ccc;
  margin-bottom: 20px; }
.modal-common .modal-dialog .section-block {
  border-bottom: 1px solid #e5e5e5;
  margin-top: 0px;
  margin-bottom: 0; }
  .modal-common .modal-dialog .section-block .form_block .form_body {
    padding: 0; }
    .modal-common .modal-dialog .section-block .form_block .form_body .list-sender {
      margin-bottom: 0; }
  .modal-common .modal-dialog .section-block .form_cart_inner {
    margin: 0 auto; }
  .modal-common .modal-dialog .section-block .form_regiter .cart-button-area .cart-2button-area {
    text-align: center !important;
    padding: 0; }
    .modal-common .modal-dialog .section-block .form_regiter .cart-button-area .cart-2button-area button, .modal-common .modal-dialog .section-block .form_regiter .cart-button-area .cart-2button-area .button_blue {
      width: calc(50% - 30px);
      max-width: 150px;
      margin: 0 5px; }
      @media screen and (max-width: 767px) {
        .modal-common .modal-dialog .section-block .form_regiter .cart-button-area .cart-2button-area button, .modal-common .modal-dialog .section-block .form_regiter .cart-button-area .cart-2button-area .button_blue {
          height: 40px;
          line-height: 40px; } }
.modal-common .modal-dialog .form-left {
  padding: 0; }

.mypage {
  padding: 15px;
  background-color: #fff;
  display: inline-block;
  width: 100%;
  border: 2px solid #e7e7e7; }
  @media screen and (max-width: 767px) {
    .mypage {
      border: none; } }
  .mypage .button_blue_border {
    max-width: 220px; }
  .mypage .table-responsive {
    margin-bottom: 0px; }
    .mypage .table-responsive .table {
      margin-bottom: 0px; }
  .mypage .title-header h3 {
    margin-top: 0px; }
  .mypage .mypage-info {
    text-align: right;
    padding-right: 10px; }
    .mypage .mypage-info h3 {
      font-size: 20px;
      font-weight: bold;
      margin-top: 10px; }
      @media screen and (max-width: 767px) {
        .mypage .mypage-info h3 {
          font-size: 17px; } }
    .mypage .mypage-info p {
      font-size: 15px; }
      .mypage .mypage-info p b {
        font-size: 18px; }
      @media screen and (max-width: 767px) {
        .mypage .mypage-info p {
          font-size: 14px; }
          .mypage .mypage-info p b {
            font-size: 17px; } }
    @media screen and (max-width: 767px) {
      .mypage .mypage-info {
        margin-bottom: 20px; } }
  .mypage .mypage_list .mypage_item {
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 7px;
    border-bottom: 1px dotted #ccc;
    width: 100%; }
    .mypage .mypage_list .mypage_item .mypage_item_img {
      width: 70px;
      margin-right: 10px;
      margin-left: 10px;
      padding: 12px;
      border-radius: 5px;
      border: 2px solid #158200;
      float: left; }
      @media screen and (max-width: 767px) {
        .mypage .mypage_list .mypage_item .mypage_item_img {
          margin-left: 0px;
          width: 55px; } }
    .mypage .mypage_list .mypage_item .mypage_item_txt {
      width: calc(100% - 90px);
      float: left;
      padding-left: 10px; }
      @media screen and (max-width: 767px) {
        .mypage .mypage_list .mypage_item .mypage_item_txt {
          width: calc(100% - 65px);
          padding-left: 0px; } }
      .mypage .mypage_list .mypage_item .mypage_item_txt h3 {
        margin: 0 0 10px 0;
        padding: 5px 5px 10px 0px;
        border-bottom: 1px solid #ccc;
        line-height: 20px;
        font-size: 18px; }
        @media screen and (max-width: 767px) {
          .mypage .mypage_list .mypage_item .mypage_item_txt h3 {
            font-size: 15px;
            padding: 0 0 5px 0;
            margin-bottom: 5px; } }
        .mypage .mypage_list .mypage_item .mypage_item_txt h3 a {
          color: #333;
          line-height: 20px;
          font-weight: bold;
          text-decoration: none; }
      .mypage .mypage_list .mypage_item .mypage_item_txt p {
        font-size: 16px;
        margin-bottom: 0;
        line-height: 20px; }
        @media screen and (max-width: 767px) {
          .mypage .mypage_list .mypage_item .mypage_item_txt p {
            font-size: 14px;
            line-height: 16px; } }
  .mypage .credit-card-content .credit-card-item .cci-number {
    vertical-align: middle;
    background-color: #f9f9f9;
    padding-left: 20px; }
  .mypage .credit-card-content .credit-card-item td {
    position: relative;
    padding: 0; }
  .mypage .credit-card-content .credit-card-item .cci-content p {
    margin-bottom: 0px;
    line-height: 28px;
    padding: 5px 10px;
    border-bottom: 1px dotted #ddd; }
    .mypage .credit-card-content .credit-card-item .cci-content p:last-child {
      border: none; }
  .mypage .credit-card-content .credit-card-item .cci-edit .button-edit {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #158200;
    padding: 8px 15px;
    color: #fff;
    line-height: 22px;
    text-decoration: none; }
  .mypage .user_contact_content .ucc-item {
    padding: 15px; }
    @media screen and (max-width: 767px) {
      .mypage .user_contact_content .ucc-item {
        padding-top: 0px; } }
    .mypage .user_contact_content .ucc-item .ucc-box {
      background-color: #fff;
      border: 1px solid #ddd;
      -webkit-border-radius: 5px;
      -khtml-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      -webkit-box-shadow: 0 3px 0px #ddd;
      -khtml-box-shadow: 0 3px 0px #ddd;
      -moz-box-shadow: 0 3px 0px #ddd;
      -ms-box-shadow: 0 3px 0px #ddd;
      -o-box-shadow: 0 3px 0px #ddd;
      box-shadow: 0 3px 0px #ddd;
      min-height: 247px;
      overflow: hidden; }
      .mypage .user_contact_content .ucc-item .ucc-box .ucc-header {
        color: #333;
        background-color: #f5f5f5;
        border-bottom: 1px solid #ddd;
        padding: 10px 15px;
        position: relative; }
        .mypage .user_contact_content .ucc-item .ucc-box .ucc-header i {
          position: absolute;
          right: 15px;
          top: 10px;
          font-size: 20px; }
      .mypage .user_contact_content .ucc-item .ucc-box .ucc-content {
        padding: 10px 15px; }
        .mypage .user_contact_content .ucc-item .ucc-box .ucc-content p {
          padding-bottom: 5px;
          margin-bottom: 5px;
          border-bottom: 1px dotted #ccc; }
          .mypage .user_contact_content .ucc-item .ucc-box .ucc-content p:last-child {
            border: none;
            margin-bottom: 0px; }
      .mypage .user_contact_content .ucc-item .ucc-box .ucc-footer {
        border-top: 1px solid #ddd;
        padding: 10px 15px; }
        .mypage .user_contact_content .ucc-item .ucc-box .ucc-footer .btn {
          margin: 3px 0; font-size:0.8em;padding-left: 7px;padding-right: 7px;}
        @media (min-width: 767px) and (max-width: 989px) {
          .mypage .user_contact_content .ucc-item .ucc-box .ucc-footer {
            min-height: 101px; } }
    .mypage .user_contact_content .ucc-item.ucc-item-default .ucc-box {
      border: 1px solid #4cae4c;
      -webkit-box-shadow: 0 3px 0px #4cae4c;
      -khtml-box-shadow: 0 3px 0px #4cae4c;
      -moz-box-shadow: 0 3px 0px #4cae4c;
      -ms-box-shadow: 0 3px 0px #4cae4c;
      -o-box-shadow: 0 3px 0px #4cae4c;
      box-shadow: 0 3px 0px #4cae4c; }
    .mypage .user_contact_content .ucc-item.ucc-item-default .ucc-header {
      background-color: #5cb85c;
      color: #fff;
      border-bottom: 1px solid #4cae4c; }
    .mypage .user_contact_content .ucc-item.ucc-item-default .ucc-footer {
      border-top: 1px solid #4cae4c; }
      @media (min-width: 767px) and (max-width: 989px) {
        .mypage .user_contact_content .ucc-item.ucc-item-default .ucc-footer {
          padding: 30px 15px; } }
    .mypage .user_contact_content .ucc-item .ucc-item-add {
      height: 247px;
      border: 2px dotted #ddd;
      -webkit-border-radius: 5px;
      -khtml-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center; }
      @media (min-width: 767px) and (max-width: 989px) {
        .mypage .user_contact_content .ucc-item .ucc-item-add {
          height: 287px; } }
      .mypage .user_contact_content .ucc-item .ucc-item-add a {
        color: #eee;
        text-decoration: none; }
      .mypage .user_contact_content .ucc-item .ucc-item-add i {
        font-size: 40px; }
      .mypage .user_contact_content .ucc-item .ucc-item-add p {
        font-size: 16px;
        margin-bottom: 0;
        margin-top: 5px;
        color: #555;
        font-weight: 600; }
  .mypage .section-block {
    margin-top: 0px;
    margin-bottom: 0px; }
    .mypage .section-block .form_login {
      padding: 0; }
    .mypage .section-block .form_cart_inner {
      margin: 0 auto; }
  .mypage .history-order-nav {
    margin-bottom: 15px; }
    .mypage .history-order-nav nav ul {
      border-bottom: 1px solid #ddd;
      display: inline-block;
      width: 100%;
      padding: 0 15px; }
      .mypage .history-order-nav nav ul li {
        display: inline-block;
        float: left;
        padding: 5px 10px;
        margin-right: 10px;
        margin-bottom: -1px;
        border-bottom: 2px solid transparent; }
        .mypage .history-order-nav nav ul li a {
          color: #333;
          text-decoration: none;
          font-weight: 500; }
        .mypage .history-order-nav nav ul li.active, .mypage .history-order-nav nav ul li:hover {
          border-bottom: 2px solid #158200; }
          .mypage .history-order-nav nav ul li.active a, .mypage .history-order-nav nav ul li:hover a {
            color: #158200;
            }
  .mypage .history-order-cart .product_cart {
    border: none;
    border: 1px solid #ddd;
    margin-bottom: 0px;
    display: inline-table; }
    .mypage .history-order-cart .product_cart .history-order-item {
      display: inline-block;
      width: 100%;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      margin-bottom: 20px; }
      .mypage .history-order-cart .product_cart .history-order-item:last-child {
        margin-bottom: -1px; }
    .mypage .history-order-cart .product_cart > p {
      margin-bottom: 0px;
      padding: 10px 15px; }
  .mypage .history-order-cart .history-order-search {
    background-color: #fff;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    border-right: none; }
    .mypage .history-order-cart .history-order-search .form-control {
      height: 40px; }
    .mypage .history-order-cart .history-order-search .input-group-btn {
      height: 40px; }
      .mypage .history-order-cart .history-order-search .input-group-btn .btn {
        height: 40px;
        background-color: #666;
        color: #fff; }
  .mypage .history-order-cart .cart_main .cart_main_heading {
    border-bottom: 1px solid #ddd;
    padding-left: 15px; }
    .mypage .history-order-cart .cart_main .cart_main_heading h3 {
      font-size: 17px;
      font-weight: 600; }
  .mypage .history-order-cart .cart_main .list_product_cart .item_cart .item_txt {
    max-height: 100%; }
    .mypage .history-order-cart .cart_main .list_product_cart .item_cart .item_txt a {
      }
    .mypage .history-order-cart .cart_main .list_product_cart .item_cart .item_txt p {
      margin-bottom: 0px; }
  .mypage .history-order-cart .cart_side .btns-yellow {
    width: 100%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-width: 1px;
    border-style: solid;
    text-decoration: none;
    text-align: center;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px; }
    .mypage .history-order-cart .cart_side .btns-yellow:hover {
      color: #f1c40f; }
  .mypage .history-order-cart .cart_side .btns-orange {
    background-color: #e56700;
    color: #fff;
    width: 100%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-width: 1px;
    border-style: solid;
    text-decoration: none;
    text-align: center;
    margin-bottom: 0px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px; }
  .mypage .history-order-cart .cart_side .btns-gray {
    background-color: #666;
    border-color: #666;
    color: #fff;
    width: 100%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-width: 1px;
    border-style: solid;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px; }
  .mypage .history-order-cart .cart_side .p_point {
    background-color: #fff;
    border: 1px dotted #ccc;
    margin-bottom: 10px; }
  .mypage .history-order-cart .cart_side .cart_side_inner .cart_subtotal_contents .button_addcart:hover {
    color: #fff; }
  .mypage .history-order-cart .history-order-item-footer {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    border-top: 1px solid #ddd; }
    .mypage .history-order-cart .history-order-item-footer .delivery_truck {
      width: 340px;
      display: inline-table;
      float: left;
      padding-right: 15px;
      padding-top: 5px; }
      .mypage .history-order-cart .history-order-item-footer .delivery_truck .fa-truck {
        font-size: 25px;
        margin-right: 5px;
        -ms-transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg); }
    .mypage .history-order-cart .history-order-item-footer .hor-total {
      width: 100%;
      padding-top: 5px;
      display: inline-table;
      line-height: 27px;
      float: left; }
      .mypage .history-order-cart .history-order-item-footer .hor-total b {
        font-size: 20px; }
    .mypage .history-order-cart .history-order-item-footer .hor-hidden {
      width: 270px;
      float: right;
      display: inline-table;
      padding: 0 15px; }
      .mypage .history-order-cart .history-order-item-footer .hor-hidden .button_gray {
        max-width: 100%;
        color: #fff;
        text-decoration: none; }

.title-header-my-page h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold; }
.title-header-my-page img {
  width: 40px;
  margin-right: 10px; }

.mypage-section .form_block {
  background-color: #fff;
  position: relative; }
  .mypage-section .form_block .form-header {
    text-transform: uppercase;
    font-size: 16px;
    height: 50px; }
  .mypage-section .form_block .form-left ._form ._button_edit {
    position: absolute;
    right: 0;
    top: 0;
    background: #158200;
    border: none;
    color: #fff;
    font-size: 16px;
    height: 50px;
    padding: 10px 20px; }
  .mypage-section .form_block .form-left ._form .form-group {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px; }
  .mypage-section .form_block .form-left ._form .button-group {
    width: 100%;
    display: none; }
    .mypage-section .form_block .form-left ._form .button-group button {
      margin: 10px;
      border-radius: 20px;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      height: 40px;
      min-width: 150px;
      max-width: 200px;
      padding: 0 25px;
      outline: none;
      display: inline-block;
      text-align: center;
      line-height: 40px;
      position: relative; }
      .mypage-section .form_block .form-left ._form .button-group button.button_cancel {
        background-color: #999999;
        border: 1px solid #999999; }
      .mypage-section .form_block .form-left ._form .button-group button.button_save {
        background-color: #158200;
        border: 1px solid #158200; }
  .mypage-section .form_block .form-left ._form .button_group {
    width: 100%; }
    .mypage-section .form_block .form-left ._form .button_group button {
      margin: 10px;
      border-radius: 20px;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      height: 40px;
      min-width: 150px;
      max-width: 200px;
      padding: 0 25px;
      outline: none;
      display: inline-block;
      text-align: center;
      line-height: 40px;
      position: relative; }
      .mypage-section .form_block .form-left ._form .button_group button.button_cancel {
        background-color: #999999;
        border: 1px solid #999999; }
      .mypage-section .form_block .form-left ._form .button_group button.button_save {
        background-color: #158200;
        border: 1px solid #158200; }

.button-group {
  width: 100%; }
  .button-group button {
    margin: 10px;
    border-radius: 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    height: 40px;
    min-width: 150px;
    max-width: 200px;
    padding: 0 25px;
    outline: none;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    position: relative; }
    .button-group button.button_cancel {
      background-color: #999999;
      border: 1px solid #999999; }
    .button-group button.button_save {
      background-color: #158200;
      border: 1px solid #158200; }

.back_btn {
  display: inline-block;
  padding: 5px;
  background: #158200;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  position: absolute;
  top: 0; }
  .back_btn:hover {
    color: #fff; }
  @media screen and (max-width: 767px) {
    .back_btn {
      top: auto;
      position:fixed;
      bottom:0;
      left:0;
      z-index: 9999;
      }
    }

form .form-control {
  border-color: #ddd;
  border-radius: 2px;
  height: 40px;
  line-height: 26px;
  margin-bottom: 0; }
  form .form-control:hover, form .form-control:focus, form .form-control:active {
    border-color: #aaa;
    box-shadow: none; }
form textarea.form-control {
  height: auto; }
form .has-error .form-control {
  border-color: #e74c3c; }
form .has-error .checkbox span {
  border-color: #e74c3c; }
form .card_number .form-control {
  width: calc(85% / 4);
  float: left; }
form .card_number span {
  line-height: 40px;
  float: left;
  width: 5%;
  text-align: center; }

.shop_list {
  padding-left: 15px;
  padding-right: 15px; }
  @media screen and (max-width: 768px) {
    .shop_list {
      padding-left: 0;
      padding-right: 0; } }
  .shop_list .row {
    margin-left: -5px;
    margin-right: -5px; }
  .shop_list .shop-item {
    padding: 5px; }
    .shop_list .shop-item .shop-item-box {
      border: 1px solid #dcdcdc;
      padding: 5px;
      display: inline-block;
      width: 100%;
      margin-bottom: -6px; }
      .shop_list .shop-item .shop-item-box .shop-logo {
        width: 30%;
        background-color: #fff;
        border: 1px solid #ccc;
        float: left; }
      .shop_list .shop-item .shop-item-box .shop-name {
        display: inline-block;
        width: 70%;
        float: left;
        padding-left: 10px; }
        .shop_list .shop-item .shop-item-box .shop-name h3 {
          font-size: 15px;
          line-height: 20px;
          max-height: 60px;
          color: #212121;
          margin-top: 0;
          margin-bottom: 0;
          font-weight: 500;
          display: inline-block;
          overflow: hidden;
          word-break: break-all; }

.shop_top_content {
  padding: 15px; }
  .shop_top_content .shop_top_slider {
    margin-bottom: 15px; }
  .shop_top_content .shop_top_heading {
    padding: 10px;
    border: 1px solid #ccc;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 2px 3px #ccc;
    -khtml-box-shadow: 0px 2px 3px #ccc;
    -moz-box-shadow: 0px 2px 3px #ccc;
    -ms-box-shadow: 0px 2px 3px #ccc;
    -o-box-shadow: 0px 2px 3px #ccc;
    box-shadow: 0px 2px 3px #ccc; }
    .shop_top_content .shop_top_heading .shop_logo {
      float: left; }
      .shop_top_content .shop_top_heading .shop_logo img {
        float: left;
        max-width: 450px;
        height: 60px;
        object-fit: cover;
        margin-right: 10px; }
      .shop_top_content .shop_top_heading .shop_logo .shop_about_link {
        float: left; }
        .shop_top_content .shop_top_heading .shop_logo .shop_about_link h3 {
          margin: 0;
          color: #333;
          font-size: 18px;
          font-weight: 500;
          text-decoration: none; }
        .shop_top_content .shop_top_heading .shop_logo .shop_about_link a {
          text-decoration: underline;
          color: #0066c0;
          font-size: 14px; }
    .shop_top_content .shop_top_heading .sth_filter {
      float: right;
      margin-top: 10px; }
      .shop_top_content .shop_top_heading .sth_filter .form-group {
        margin-bottom: 0px; }
        .shop_top_content .shop_top_heading .sth_filter .form-group label {
          margin-bottom: 0px;
          margin-right: 10px; }
        .shop_top_content .shop_top_heading .sth_filter .form-group .order-select {
          height: 40px;
          border: 1px solid #ccc;
          padding: 6px 12px;
          font-size: 14px;
          line-height: 1.42857143;
          color: #555;
          background-color: #fff;
          background-image: none;
          border: 1px solid #ccc;
          border-radius: 4px;
          -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
          -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; }
          .shop_top_content .shop_top_heading .sth_filter .form-group .order-select:hover, .shop_top_content .shop_top_heading .sth_filter .form-group .order-select:focus, .shop_top_content .shop_top_heading .sth_filter .form-group .order-select:active {
            border-color: #aaa; }
  .shop_top_content .shop_top_list_product .list-product-category {
    margin-top: 0px; }
    .shop_top_content .shop_top_list_product .list-product-category .list-product-category-inner {
      display: inline-block;
      width: 100%; }
      .shop_top_content .shop_top_list_product .list-product-category .list-product-category-inner .item {
        width: calc(100% / 6); }
        .shop_top_content .shop_top_list_product .list-product-category .list-product-category-inner .item .product-item .product-content a.product-name {
          font-weight: 400;
          height: 80px;
          max-height: 80px;
          font-size: 13px;
          color: #333; }
  .shop_top_content .shop_top_list_product .pagination-product .pagination {
    float: left;
    margin-top: 0;
    margin-bottom: 0; }
  .shop_top_content .shop_top_list_product .pagination-product nav .pull-right p {
    margin-top: 10px; }
  .shop_top_content .shop_top_info .table {
    margin-bottom: 0px; }
    .shop_top_content .shop_top_info .table tr th {
      vertical-align: middle;
      padding-left: 15px;
      background-color: #f5f5f5; }
  .shop_top_content .shop_top_info .panel-group .panel .panel-heading {
    background-color: #e7e4e0; }
    .shop_top_content .shop_top_info .panel-group .panel .panel-heading a {
      color: #333;
      text-decoration: none;
      display: inline-block;
      width: 100%; }
  .shop_top_content .shop_top_info .panel-group .panel .panel-collapse .panel-body .table-responsive {
    margin-bottom: 0px; }
  .shop_top_content .shop_top_info .panel-group .panel .panel-collapse .panel-body .table {
    margin-bottom: 0px; }
    .shop_top_content .shop_top_info .panel-group .panel .panel-collapse .panel-body .table tr th {
      vertical-align: middle;
      padding-left: 15px;
      background-color: #f5f5f5; }

.history-order-status {
  padding: 15px 40px;
  margin-bottom: 20px; }

.history-order-progress .progress-bar-wrapper .progress {
  height: 16px;
  border-radius: 16px;
  position: relative;
  background-color: #e9e9e9;
  overflow: inherit; }
  .history-order-progress .progress-bar-wrapper .progress .progress-bar {
    -webkit-border-radius: 16px;
    -khtml-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    background-color: #2ecc71;
    box-shadow: none; }
  .history-order-progress .progress-bar-wrapper .progress .checkpoint-circle {
    height: 26px;
    width: 26px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    background-color: #e9e9e9;
    top: -5px;
    box-shadow: inset -1px 1px 2px rgba(0, 0, 0, 0.1); }
  .history-order-progress .progress-bar-wrapper .progress .active {
    background-color: #2ecc71;
    box-shadow: none; }
  .history-order-progress .progress-bar-wrapper .progress #checkpoint-1 {
    left: -13px; }
  .history-order-progress .progress-bar-wrapper .progress #checkpoint-2 {
    left: calc(50% - 13px); }
  .history-order-progress .progress-bar-wrapper .progress #checkpoint-3 {
    right: -13px; }
  .history-order-progress .progress-bar-wrapper .progress .goal-names {
    display: inline-block;
    width: 100%;
    position: relative;
    margin-top: 15px; }
    .history-order-progress .progress-bar-wrapper .progress .goal-names .goal-names-item {
      color: #333;
      display: inline-block;
      width: 100px;
      font-size: 12px;
      position: absolute;
      text-align: center; }
    .history-order-progress .progress-bar-wrapper .progress .goal-names #goal-names-item-1 {
      left: -50px; }
    .history-order-progress .progress-bar-wrapper .progress .goal-names #goal-names-item-2 {
      left: calc(50% - 50px);
      text-align: center; }
    .history-order-progress .progress-bar-wrapper .progress .goal-names #goal-names-item-3 {
      right: -50px;
      left: auto; }

.history-order-page .history-order-cart .cart_main .list_product_cart {
  min-height: 290px;
  display: block;
  }
  .history-order-page .history-order-cart .cart_main .list_product_cart .item_cart {
    position: relative; }
    @media screen and (min-width: 769px) {
      .history-order-page .history-order-cart .cart_main .list_product_cart .item_cart .item_txt a {
        max-height: 40px;
        overflow: hidden; } }
    .history-order-page .history-order-cart .cart_main .list_product_cart .item_cart .btn_order_again {
      display: inline-block;
      margin-top: 5px;
      background-color: #158200;
      color: #fff;
      padding: 5px 20px;
      width: 150px;
      text-align: center;
      text-decoration: none;
      -webkit-border-radius: 5px;
      -khtml-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px; }
    .history-order-page .history-order-cart .cart_main .list_product_cart .item_cart .item_order_again {
      display: inline-block;
      width: 100%; }
.history-order-page .history-order-cart .cart_side .p_point {
  margin-bottom: 5px; }
.history-order-page .history-order-cart .cart_side .cart_subtotal_contents p {
  margin-bottom: 0px; }
  .history-order-page .history-order-cart .cart_side .cart_subtotal_contents p:last-child {
    border-bottom: 0px; }

.breadcrumb {
  background-color: #fff;
  border-radius: 0px; }
  .breadcrumb li a {
    color: #158200; }

.breadcrumb > li + li:before {
  padding: 0 3px;
  color: #ccc;
  content: ">"; }

.faq_content .list-faq {
  padding: 20px 20px 10px 20px;
  background-color: #f5f5f5;
  border: 1px dashed #ccc; }
  .faq_content .list-faq ul {
    display: inline-block;
    width: 100%; }
    .faq_content .list-faq ul li {
      width: calc(100% / 3);
      float: left;
      list-style: inside;
      margin-bottom: 10px; }
      .faq_content .list-faq ul li a {
        color: #333; }
.faq_content .faq_content_ {
  margin-top: 20px; }
  .faq_content .faq_content_ .panel-group .panel {
    margin-top: 20px; }
    .faq_content .faq_content_ .panel-group .panel .panel-title {
      font-size: 14px;
      list-style: square; }
      .faq_content .faq_content_ .panel-group .panel .panel-title a {
        color: #333;
        display: inline-block;
        width: 100%;
        text-decoration: none; }

.help_content .list-faq {
  padding: 20px 20px 10px 20px;
  background-color: #fff;
  border: 1px solid #ccc; }
  .help_content .list-faq ul {
    display: inline-block;
    width: 100%; }
    .help_content .list-faq ul li {
      width: calc(100% / 3);
      float: left;
      list-style: inside;
      margin-bottom: 10px; }
      .help_content .list-faq ul li a {
        color: #333; }
.help_content .help_content_ {
  margin-top: 20px;
  margin-bottom: 30px; }
  .help_content .help_content_ .help_item {
    margin-top: 20px; }
    .help_content .help_content_ .help_item .help_item_title {
      color: #333;
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 15px; }
    .help_content .help_content_ .help_item .help_item_content {
      padding: 20px 25px;
      background-color: #efefef; }
      .help_content .help_content_ .help_item .help_item_content p {
        font-size: 14px;
        line-height: 20px; }
      .help_content .help_content_ .help_item .help_item_content a {
        color: #158200; }

.payment_method {
  display: none; }
  .payment_method.payment_radio_credit_card {
    display: block; }
  .payment_method .payment_other_content {
    margin-top: 15px;
    padding: 15px;
    border: 1px dashed #ccc; }

.title-policy {
  padding: 15px 20px;
  background-color: #ccc;
  width: 100%;
  display: inline-block;
  width: 100%;
  margin-bottom: -6px; }
  .title-policy p {
    font-weight: bold;
    margin-bottom: 0px; }
  .title-policy a {
    color: #2895ef;
    text-decoration: underline; }

.policy-content {
  display: inline-block;
  width: 100%;
  border: 2px solid #ccc;
  max-height: 400px;
  overflow: auto;
  padding: 15px;
  background-color: #f1f1f1;
  margin-bottom: 10px; }

.goto_shop {
  padding: 10px 25px;
  background-color: #158200;
  display: inline-block;
  float: right;
  color: #fff;
  font-size: 14px;
  text-decoration: none; }
  .goto_shop:hover {
    color: #fff;
    text-decoration: none; }

.sale_content {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px; }
  .sale_content .sale_img {
    width: 250px;
    margin-right: 25px;
    float: left; }
  .sale_content .sale_content_text {
    width: calc(100% - 275px);
    float: left; }
    .sale_content .sale_content_text .sale_content_txt h1 {
      font-size: 25px;
      margin-top: 10px;
      color: #e50011; }
    .sale_content .sale_content_text .sale_content_txt .txt {
      font-size: 16px;
      line-height: 24px; }
    .sale_content .sale_content_text .sale_content_txt #snsBtn ul li {
      float: left;
      margin-right: 10px; }
      .sale_content .sale_content_text .sale_content_txt #snsBtn ul li a {
        font-size: 25px; }
      .sale_content .sale_content_text .sale_content_txt #snsBtn ul li.twitter a {
        color: #55ACEE; }
      .sale_content .sale_content_text .sale_content_txt #snsBtn ul li.facebook a {
        color: #475993; }
      .sale_content .sale_content_text .sale_content_txt #snsBtn ul li.google a {
        color: #DC4E41; }

.header-title-sale h3 {
  color: #ff3636;
  font-size: 25px;
  margin-top: 0px;
  font-weight: bold;
  text-align: center;
  position: relative; }
  .header-title-sale h3:after {
    height: 1px;
    width: 100px;
    background-color: #ff3636;
    content: ' ';
    display: inline-block;
    position: absolute;
    left: calc(50% - 50px);
    bottom: -10px; }

.category .cat-list > li .list-hover p a {
  float: right;
  margin-left: 10px;
  margin-right: 15px;
  color: #158200; }

.has-error .help-block {
  display: inline-block;
  width: 100%; }

.form-forget {
  max-width: 700px;
  margin: 0 auto; }
  .form-forget .form_description {
    margin-bottom: 40px; }

.zoomLens {
  background-color: #000; }

.modal-common .modal-header .close {
  opacity: 1;
  color: #fff; }

.modal_image_product {
  padding: 0 !important; }
  .modal_image_product .modal-dialog {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    margin-top: 10vh; }
    .modal_image_product .modal-dialog .modal-content {
      min-height: 80vh; }
      .modal_image_product .modal-dialog .modal-content .modal-header {
        position: relative; }
        .modal_image_product .modal-dialog .modal-content .modal-header .close {
          position: absolute;
          top: 15px;
          right: 15px; }
        .modal_image_product .modal-dialog .modal-content .modal-header .modal-title {
          padding-right: 30px; }
      .modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_left {
        overflow: auto;
        padding: 15px;
        border: 1px solid #ccc;
        width: 260px;
        margin-left: 15px; }
      .modal_image_product .modal-dialog .modal-content .modal-body .nav {
        border: none; }
        .modal_image_product .modal-dialog .modal-content .modal-body .nav li {
          width: 76px;
          height: 76px;
          float: left;
          text-align: center;
          overflow: hidden;
          border: 2px solid transparent; }
          .modal_image_product .modal-dialog .modal-content .modal-body .nav li a {
            width: 72px;
            height: 72px;
            padding: 0;
            border-radius: 0px;
            display: flex;
            justify-content: center;
            align-items: center; }
          .modal_image_product .modal-dialog .modal-content .modal-body .nav li img {
            max-width: 100%;
            max-height: 100%; }
          .modal_image_product .modal-dialog .modal-content .modal-body .nav li.active a {
            border: 2px solid #E47911; }
          .modal_image_product .modal-dialog .modal-content .modal-body .nav li:hover a {
            border: 2px solid #E47911; }
      .modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_right {
        max-height: calc(80vh - 85px);
        height: calc(80vh - 85px);
        overflow: auto;
        width: calc(100% - 275px);
        display: flex;
        justify-content: center;
        align-items: center; }
        .modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_right img {
          max-height: calc(80vh - 40px); }
        .modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_right .tab-content .tab-pane {
          text-align: center; }

.msg-empty {
  text-align: center;
  padding: 20px 15px; }
  .msg-empty p {
    font-size: 15px;
    margin-top: 15px; }
  .msg-empty .button_addcart {
    max-width: 250px;
    font-size: 14px;
    font-weight: 500;
    color: #fff; }

.three_input_phone .col-sm-2 + .col-sm-2:after {
  position: absolute;
  content: "_";
  left: -5px;
  top: 3px; }
.three_input_phone input[type=number]::-webkit-inner-spin-button,
.three_input_phone input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none; }

.msg-empty .button_addcart {
  padding-left: 0; }

.modal_image_product figure img {
  position: relative;
  max-height: calc(80vh - 40px);
  max-width: calc(100% - 40px);
  margin: 0 auto; }
  .modal_image_product figure img.nozoom {
    cursor: default; }

.modal_image_product figure img.zoom {
  max-height: none;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto; }
  .modal_image_product figure img.zoom.nozoom {
    cursor: default; }

.modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_right {
  overflow: hidden; }

.modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_right .modal_image_product_item {
  height: auto;
  width: 100%;
  overflow: hidden;
  margin: auto;
  cursor: zoom-in; }
  .modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_right .modal_image_product_item.bzoom {
    cursor: zoom-out; }

.modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_right .modal_image_product_item img.zoom,
.modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_right .modal_image_product_item img.zoom:hover {
  max-height: none;
  max-width: none; }

.product_cart .list_product_cart .item_cart .item_subtotal .price {
  width: 100%; }

.product_cart .list_product_cart .item_cart .item_subtotal .item_quan {
  width: 100%;
  margin-bottom: 5px;
  margin-top: 5px; }

.product_cart .list_product_cart .item_cart .item_subtotal {
  padding-top: 0px; }
  .product_cart .list_product_cart .item_cart .item_subtotal .price {
    width: 100%;
    text-align: left; }

.form-common-confirm {
  padding: 20px 50px;
  display: inline-block;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .form-common-confirm {
      padding: 20px; } }
  @media screen and (max-width: 375px) {
    .form-common-confirm {
      padding: 20px 15px; } }
  .form-common-confirm .form-group .row .control-label {
    color: #999;
    font-size: 16px;
    font-weight: 500; }
  .form-common-confirm .form-group .row .col-sm-9 p {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 16px;
    padding-left: 10px; }
    @media screen and (max-width: 767px) {
      .form-common-confirm .form-group .row .col-sm-9 p {
        padding-left: 0px; } }

.list-product-category .product-item .product-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #ccc; }
  .list-product-category .product-item .product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border: none; }

.login-content {
  min-height: calc(100vh - 395px);
  padding: 80px 0;
  background: #51aae5;
  background: -webkit-linear-gradient(left, #51aae5, #164aa1);
  background: -o-linear-gradient(right, #51aae5, #164aa1);
  background: -moz-linear-gradient(right, #51aae5, #164aa1);
  background: linear-gradient(to right, #51aae5, #164aa1); }
  .login-content .login-left {
    text-align: center;
    padding-top: 80px; }
    .login-content .login-left .logo img {
      max-height: 90px; }
    .login-content .login-left .login-title {
      margin-top: 40px;
      margin-bottom: 20px; }
      .login-content .login-left .login-title h2 {
        font-size: 25px;
        font-weight: 600;
        color: #fff; }
      .login-content .login-left .login-title p {
        font-size: 18px;
        color: #fff; }
  .login-content .login-right .form-login {
    max-width: 550px;
    margin: 0 auto; }
    .login-content .login-right .form-login legend {
      color: #fff;
      text-transform: uppercase;
      font-size: 35px;
      border: none;
      margin-bottom: 40px;
      text-align: center; }
    .login-content .login-right .form-login .form-group {
      margin-bottom: 30px;
      position: relative; }
      .login-content .login-right .form-login .form-group i {
        position: absolute;
        left: 20px;
        top: 22px; }
      .login-content .login-right .form-login .form-group .form-control {
        height: 70px;
        border-radius: 40px;
        font-size: 18px;
        color: #fff;
        line-height: 30px;
        padding: 20px 20px 20px 60px;
        border: 2px solid #fff;
        background-color: transparent !important;
        font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif; }
        .login-content .login-right .form-login .form-group .form-control::-webkit-input-placeholder {
          font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
          color: #fff; }
        .login-content .login-right .form-login .form-group .form-control::-moz-placeholder {
          font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
          color: #fff; }
        .login-content .login-right .form-login .form-group .form-control:-ms-input-placeholder {
          font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
          color: #fff; }
        .login-content .login-right .form-login .form-group .form-control:-moz-placeholder {
          font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
          color: #fff; }
      .login-content .login-right .form-login .form-group.has-error .form-control {
        border-color: #e74c3c; }
      .login-content .login-right .form-login .form-group input:-webkit-autofill,
      .login-content .login-right .form-login .form-group input:-webkit-autofill:hover,
      .login-content .login-right .form-login .form-group input:-webkit-autofill:focus
      input:-webkit-autofill,
      .login-content .login-right .form-login .form-group textarea:-webkit-autofill,
      .login-content .login-right .form-login .form-group textarea:-webkit-autofill:hover
      textarea:-webkit-autofill:focus,
      .login-content .login-right .form-login .form-group select:-webkit-autofill,
      .login-content .login-right .form-login .form-group select:-webkit-autofill:hover,
      .login-content .login-right .form-login .form-group select:-webkit-autofill:focus {
        -webkit-text-fill-color: #fff;
        -webkit-box-shadow: 0 0 0px 1000px transparent inset;
        transition: background-color 5000s ease-in-out 0s; }
    .login-content .login-right .form-login .btn-login {
      background-color: #158200;
      border-radius: 40px;
      border: none;
      box-shadow: none;
      text-transform: uppercase;
      font-size: 25px;
      line-height: 30px;
      width: 100%;
      height: 70px;
      padding: 20px;
      color: #fff;
      font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif; }
    .login-content .login-right .form-login .fgpass {
      color: #ccc;
      font-size: 16px;
      margin-top: 20px;
      display: inline-block;
      text-decoration: underline; }
  .login-content .icon-id {
    display: block;
    width: 25px;
    height: 25px;
    background-image: url("../images/icons/id-icon.png"); }
  .login-content .icon-password {
    display: block;
    width: 25px;
    height: 25px;
    background-image: url("../images/icons/password-icon.png"); }

.error-lg {
  font-size: 18px;
  color: #e74c3c; }

.product_cart .list_product_cart .item_cart .item_avatar {
  text-align: center; }

@media (min-width: 769px) {
  .product_cart .list_product_cart .item_cart .item_subtotal {
    width: calc(100% - 165px); } }
.textarea-note {
  position: relative; }
  .textarea-note .edit-note {
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 0 2px 0 2px;
    width: 25px;
    height: 25px;
    background-color: #5cb85c;
    text-align: center;
    line-height: 25px;
    color: #fff;
    cursor: pointer; }

.is-wwwc {
  margin-bottom: 10px;
  font-size: 16px; }
  .is-wwwc div {
    display: inline-block; }
    .is-wwwc div span {
      padding: 4px 2px; }
  .is-wwwc img {
    width: 30px;
    margin-left: 5px; }

#loading_wrap {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 9999; }
  #loading_wrap img {
    width: 130px; }

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: transparent; }

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* COLOR OPACITY */
/* BORDER COLOR OPACITY */
/* BORDER RADIUS */
/* User-select*/
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/*///////////////////////////////////ANIMATION//////////////////////////////////*/
/*/////////////////////////////////////SCREEN////////////////////////////////////////*/
/*/////////////////////////////////////DIV////////////////////////////////////////*/
@media (max-width: 1400px) {
  ._product_wrapper .logo-branch h3 {
    font-size: 16px; }
  ._product_wrapper .product_image_left {
    padding-right: 0px; }
    ._product_wrapper .product_image_left .slider_img_product {
      width: 100%; }
  ._product_wrapper .product_info_right {
    padding-right: 0px; }
    ._product_wrapper .product_info_right .p_info_text .p_info_name {
      font-size: 16px;
      line-height: 25px; }
    ._product_wrapper .product_info_right .p_info_social strong {
      line-height: 30px; }
    ._product_wrapper .product_info_right .p_info_social ul li img {
      width: 30px;
      height: 30px; }
  ._product_wrapper .product_related ._title {
    font-size: 18px; }

  .shop-recommened h2 {
    font-size: 18px; }

  .button_favorite, .button_addcart {
    font-size: 15px; }
    .button_favorite i, .button_addcart i {
      left: 15px; }

  .form-search-category {
    padding: 30px 15px; }
    .form-search-category .form-group .group-filter .sex-status select {
      min-width: 140px; }

  .modal_image_product .modal-dialog {
    margin-top: 5vh; }
    .modal_image_product .modal-dialog .modal-content {
      min-height: 90vh; }
      .modal_image_product .modal-dialog .modal-content .modal-body .modal_image_product_right {
        max-height: calc(90vh - 85px);
        height: calc(90vh - 85px); } }
@media (max-width: 1280px) {
  .form-search-category .form-group .group-filter {
    width: 100%;
    padding-right: 0px; }
    .form-search-category .form-group .group-filter .sex-status {
      width: 50%;
      float: left;
      display: inline-block; }
      .form-search-category .form-group .group-filter .sex-status select {
        min-width: calc(50% - 15px); }
    .form-search-category .form-group .group-filter .price_position {
      width: 50%;
      float: left;
      display: inline-block; }
      .form-search-category .form-group .group-filter .price_position input {
        min-width: calc(50% - 52px); }
  .form-search-category .form-group .search-input {
    width: 100%; } }
@media (max-width: 1199px) {
  .list-product-category .item {
    width: 25%; } }
@media (max-width: 1025px) {
  .form-search-category .form-group .radio-group {
    width: 60%; }
    .form-search-category .form-group .radio-group .btn-group .btn {
      padding: 10px; }
  .form-search-category .form-group .check-group {
    width: 40%; }
  .form-search-category .form-group .group-filter .sex-status {
    width: 100%;
    float: left;
    display: inline-block; }
    .form-search-category .form-group .group-filter .sex-status select {
      min-width: calc(50% - 15px); }
      .form-search-category .form-group .group-filter .sex-status select.status-select {
        margin-right: 0px;
        width: 50%; }
  .form-search-category .form-group .group-filter .price_position {
    margin-top: 15px;
    width: 100%;
    float: left;
    display: inline-block; }
    .form-search-category .form-group .group-filter .price_position input {
      min-width: calc(50% - 52px); }
  .form-search-category .form-group .search-input {
    width: 100%; }

  .about-product-content .nav-tabs > li > a {
    margin-right: 5px;
    padding: 10px; }

  ._product_wrapper .logo-branch img {
    max-height: 50px; }
  ._product_wrapper .logo-branch h3 {
    font-size: 16px; }
  ._product_wrapper .product_image_left {
    padding-right: 0px;
    width: 420px; }
    ._product_wrapper .product_image_left .slider_img_product {
      width: 100%;
      height: 100%; }
  ._product_wrapper .product_info_right {
    padding-right: 0px;
    width: calc(100% - 420px); }
    ._product_wrapper .product_info_right .p_info_text .p_info_name {
      font-size: 18px;
      line-height: 25px; }
    ._product_wrapper .product_info_right .p_info_text .p_info_desc {
      font-size: 14px; }
    ._product_wrapper .product_info_right .p_info_button {
      width: 100%;
      margin: 0; }
      ._product_wrapper .product_info_right .p_info_button .button_area {
        padding: 0;
        width: 100%; }
        ._product_wrapper .product_info_right .p_info_button .button_area .button_addcart, ._product_wrapper .product_info_right .p_info_button .button_area .button_favorite {
          max-width: 100%;
          margin-bottom: 0px; }
  ._product_wrapper .product_related ._title {
    font-size: 16px;
    margin-bottom: 15px; }

  .shop-recommened h2 {
    font-size: 18px; }

  .list-shoplier-inner ul li {
    width: 25%; } }
@media (max-width: 900px) {
  ._product_wrapper .product_image_left {
    width: 350px; }
  ._product_wrapper .product_info_right {
    width: calc(100% - 350px); }
    ._product_wrapper .product_info_right .p_info_text .p_info_name {
      font-size: 16px;
      line-height: 22px; }
    ._product_wrapper .product_info_right .p_info_text .p_info_desc {
      font-size: 14px; }

  .btn_shipping {
    padding: 7.5px 10px;
    font-size: 12px; } }
@media (min-width: 1024px) {
  .ranking-mobile {
    display: none; } }
@media (max-width: 1023px) {
  .product_cart .list_product_cart .item_cart .item_txt {
    width: 290px; }
  .product_cart .list_product_cart .item_cart .item_delete {
    padding-top: 0px;
    margin-left: 0px; }
  .product_cart .list_product_cart .item_cart .item_subtotal {
    padding-top: 0px; } }
@media (max-width: 1000px) {
  .product_cart .list_product_cart .item_cart .item_avatar {
    width: 130px; }
    .product_cart .list_product_cart .item_cart .item_avatar img {
      width: 130px;
      height: 130px; }
  .product_cart .list_product_cart .item_cart .item_txt {
    width: calc(100% - 140px);
    margin-right: 0px; }
  .product_cart .list_product_cart .item_cart .item_delete {
    padding-top: 0px;
    margin-left: 0px; }
  .product_cart .list_product_cart .item_cart .item_subtotal {
    margin-right: 10px; } }
@media (min-width: 1024px) {
  .modal-common .modal-dialog {
    width: 1000px; } }
@media (max-width: 840px) {
  ._product_wrapper .logo-branch {
    padding-left: 0px; }
  ._product_wrapper .product_image_left {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px; }
    ._product_wrapper .product_image_left .slider_img_product .image-product-zoom img {
      width: 100%; }
  ._product_wrapper .product_info_right {
    padding-left: 0px;
    margin-top: 20px;
    width: 100%; }

  .p_promotion {
    margin-top: 20px; }

  .choice-property .table {
    margin-bottom: 10px; }

  .product_cart .list_product_cart .item_cart .item_delete {
    width: 65px; }
    .product_cart .list_product_cart .item_cart .item_delete .delete a {
      padding: 5px;
      height: 30px; } }
@media (max-width: 1025px) and (min-width: 769px) {
  .s-header .header-menu .hmenu-center {
    width: calc(100% - 450px); } }
@media (max-width: 1025px) and (min-width: 767px) {
  .shop_top_content .shop_top_list_product .list-product-category .list-product-category-inner .item {
    width: 25%; } }
@media (max-width: 1023px) and (min-width: 769px) {
  .s-header .header-menu .hmenu-center {
    width: calc(100% - 450px); }

  .s-header .header-menu ._container {
    width: 100%;
    min-width: 100%; }

  ._container {
    width: 100%;
    min-width: 100%;
    padding: 0 15px; }

  .s-main-content .main-content-center {
    width: calc(100% - 200px); }
  .s-main-content .sidebar-right {
    display: none; }

  .category .cat-list > li .list-hoverDiv {
    width: 550px; }

  .category .cat-list > li .list-hover .list-hoverBackground {
    padding: 10px 20px 10px 20px; } }
@media (min-width: 769px) {
  .mobile {
    display: none !important; } }
@media (max-width: 769px) {
  .title-header h3 {
    font-size: 16px; }

  .data-search {
    width: calc(100% - 20px); } }
@media (max-width: 768px) {
  ._product_wrapper .logo-branch h3 {
    max-width: calc(100% - 120px); }

  .sale_content .sale_img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px; }
  .sale_content .sale_content_text {
    width: 100%; }
    .sale_content .sale_content_text .sale_content_txt h1 {
      font-size: 20px; }

  .faq_content .list-faq ul li {
    width: 100%; }

  .faq_content {
    padding: 0 15px; }

  .shop_top_content .shop_top_list_product .list-product-category .list-product-category-inner .item {
    width: 50%; }

  .shop_top_info .title-header h3 {
    margin-left: 0px; }

  .mypage .history-order-cart .history-order-item-footer .delivery_truck {
    width: 100%;
    padding-right: 0; }
  .mypage .history-order-cart .history-order-item-footer .hor-total {
    width: 100%; }
  .mypage .history-order-cart .history-order-item-footer .hor-hidden {
    width: 100%;
    margin-top: 10px; }

  .title-header-my-page h3 {
    font-size: 15px; }

  .list-product-favorite .title-header {
    margin-left: 0px; }
    .list-product-favorite .title-header h3 {
      margin-left: 0px; }

  .list-shoplier-inner ul {
    padding: 0; }
    .list-shoplier-inner ul li {
      width: 50%; }

  .s-footer .s-footer-contents .sfc-item h3 {
    font-size: 16px; }

  .flexslider {
    border: 15px solid #fff; }

  #top-carousel {
    display: none; }

  .flex-direction-nav a:before {
    font-size: 20px; }

  .flex-direction-nav a {
    width: 20px;
    height: 20px;
    margin: -10px 0 0; }

  .category-box .owl-nav .owl-prev i, .category-box .owl-nav .owl-next i {
    font-size: 20px; }

  .category-box .owl-nav .owl-prev {
    left: -20px; }

  .category-box .owl-nav .owl-next {
    right: -20px; }

  .s-footer .s-footer-contents .sfc-item ul {
    border-left: none;
    margin-bottom: 15px; }
    .s-footer .s-footer-contents .sfc-item ul li img {
      max-width: 200px; }

  .s-footer-copyright p {
    padding: 0 10px;
    font-size: 13px; }

  .desktop {
    display: none !important; }

  .s-main-content {
    padding-top: 30px; }
    .s-main-content .main-content-center {
      width: 100%;
      padding: 0;
      padding-bottom: 20px; }

  ._container {
    width: 100%;
    min-width: 100%; }

  .s-footer ._container {
    padding: 0 15px; }

  .banner-sale {
    padding: 5px 15px 0 15px; }

  .category-box {
    padding: 10px 20px; }
    .category-box .category-box-title h3 {
      font-size: 14px; }

  .shop-recommened h2 {
    font-size: 14px; }

  .product-item .product-content .product-name {
    margin-top: 0px;
    font-size: 12px; }

  .product-item .product-img {
    margin-bottom: 0px; }

  .fv-header-mb {
    position: relative;
    z-index: 100;
    height: 50px;
    display: inline-block;
    width: 100%;
    top: 0;
    padding: 5px 0px;
    background-color: #158200; }
    .fv-header-mb .navbar-mb-btn {
      width: 40px;
      height: 40px;
      text-align: center;
      float: left;
      padding: 5px 0 5px 12px;
      position: absolute;
      z-index: 2; }
      .fv-header-mb .navbar-mb-btn a i {
        font-size: 20px;
        font-weight: 100;
        color: #fff;
        line-height: 30px; }
    .fv-header-mb .toggle-icon {
      width: 25px;
      height: 30px;
      display: block; }
      .fv-header-mb .toggle-icon span {
        height: 3px;
        width: 100%;
        margin-bottom: 7px;
        background-color: #fff;
        display: block; }
        .fv-header-mb .toggle-icon span:first-child {
          margin-top: 3.5px; }
        .fv-header-mb .toggle-icon span:last-child {
          margin-bottom: 0px; }
    .fv-header-mb .logo-mb {
      width: calc(100% - 120px);
      padding: 0 15px;
      display: inline-block;
      margin-left: 60px;
      float: left; }
      .fv-header-mb .logo-mb a {
        display: inline-block;
        width: 100%;
        text-align: center; }
      .fv-header-mb .logo-mb img {
        height: 40px; }
    .fv-header-mb .cart-mb {
      position: absolute;
      z-index: 1;
      top: 10px;
      right: 35px; }
      .fv-header-mb .cart-mb div {
        position: relative; }
        .fv-header-mb .cart-mb div .number {
          background-color: #ff0000;
          color: #fff;
          width: 16px;
          height: 16px;
          display: block;
          line-height: 16px;
          font-size: 9px;
          position: absolute;
          border-radius: 50%;
          top: 0;
          right: 0;
          border: 1px solid #fff;
          text-align: center; }
    .fv-header-mb .search-mb-btn {
      z-index: 1;
      position: absolute;
      right: 5px;
      top: 12px; }
      .fv-header-mb .search-mb-btn img {
        height: 25px; }
      .fv-header-mb .search-mb-btn .dropdown-menu {
        right: -5px;
        left: auto;
        border-radius: 0px;
        margin-top: 13px;
        border-color: #fff;
        min-width: 200px; }
        .fv-header-mb .search-mb-btn .dropdown-menu:after {
          content: "";
          display: block;
          position: absolute;
          top: -5px;
          right: 12px;
          border-bottom: 5px solid #fff;
          border-left: 5px solid transparent;
          border-right: 5px solid transparent; }
        .fv-header-mb .search-mb-btn .dropdown-menu li a {
          padding: 3px 10px;
          display: inline-block;
          width: 100%;
          line-height: 20px;
          font-size: 13px; }
          .fv-header-mb .search-mb-btn .dropdown-menu li a i.icon_bg {
            display: inline-block;
            float: left;
            margin-right: 5px;
            background-size: 40px;
            width: 20px;
            height: 20px;
            font-size: 1.8rem;
            }
            .fv-header-mb .search-mb-btn .dropdown-menu li a i.icon_bg.icon_user {
              }
            .fv-header-mb .search-mb-btn .dropdown-menu li a i.icon_bg.icon_login {
              background-position: 0px -60px; }
            .fv-header-mb .search-mb-btn .dropdown-menu li a i.icon_bg.icon_register {
              background-position: -20px -140px; }
            .fv-header-mb .search-mb-btn .dropdown-menu li a i.icon_bg.icon_logout {
              background-position: -20px -80px;
              background-image: none;
              }
    .fv-header-mb .search-header-mb {
      background-color: #f5f5f5;
      padding: 5px 10px;
      position: absolute;
      width: 100%;
      top: 50px; }
      .fv-header-mb .search-header-mb .input-seacrh-group {
        height: 30px; }
        .fv-header-mb .search-header-mb .input-seacrh-group input {
          height: 30px;
          border-radius: 3px 0 0 3px;
          border: 1px solid #158200;
          display: inline-block;
          float: left;
          outline: none;
          padding: 0 15px;
          width: calc(100% - 30px);
          font-size: 12px; }
        .fv-header-mb .search-header-mb .input-seacrh-group button {
          background-color: #158200;
          height: 30px;
          width: 30px;
          padding: 2px;
          border: none;
          box-shadow: none;
          -webkit-border-radius: 0 3px 3px 0;
          -khtml-border-radius: 0 3px 3px 0;
          -moz-border-radius: 0 3px 3px 0;
          -ms-border-radius: 0 3px 3px 0;
          -o-border-radius: 0 3px 3px 0;
          border-radius: 0 3px 3px 0; }
          .fv-header-mb .search-header-mb .input-seacrh-group button .icon_bg {
            background-size: 50px;
            width: 26px;
            height: 26px; }
    .fv-header-mb .search-dropdown .dropdown-toggle {
      border: none;
      font-size: 20px;
      background-color: transparent;
      line-height: 35px;
      position: absolute;
      padding: 2.5px 10px; }
      .fv-header-mb .search-dropdown .dropdown-toggle i {
        font-size: 20px;
        font-weight: 100;
        color: #fff;
        line-height: 30px; }
    .fv-header-mb .search-dropdown .dropdown-menu {
      margin-top: 42px;
      right: 0;
      left: 0;
      padding: 15px;
      border: none;
      border-top: 3px solid #4db2ec;
      -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      -khtml-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      -ms-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      -o-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      min-width: 100%;
      -webkit-border-radius: 0;
      -khtml-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0;
      border-radius: 0; }
      .fv-header-mb .search-dropdown .dropdown-menu:before {
        position: absolute;
        top: -9px;
        right: 19px;
        display: block;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 5.5px 6px 5.5px;
        border-color: transparent transparent #4db2ec transparent; }
      .fv-header-mb .search-dropdown .dropdown-menu .form-search-header {
        max-width: 100%; }
        .fv-header-mb .search-dropdown .dropdown-menu .form-search-header .input-group .form-control {
          -webkit-border-radius: 0;
          -khtml-border-radius: 0;
          -moz-border-radius: 0;
          -ms-border-radius: 0;
          -o-border-radius: 0;
          border-radius: 0; }
        .fv-header-mb .search-dropdown .dropdown-menu .form-search-header .input-group .input-group-btn .btn {
          -webkit-border-radius: 0;
          -khtml-border-radius: 0;
          -moz-border-radius: 0;
          -ms-border-radius: 0;
          -o-border-radius: 0;
          border-radius: 0;
          background-color: #333;
          color: #fff; }

  .menu_mb {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: #0b2507;
    overflow-x: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-align: center; }
    .menu_mb .menu_mb_content {
      padding-top: 40px;
      padding-bottom: 20px;
      position: relative; }
      .menu_mb .menu_mb_content .list-social-top {
        text-align: left;
        padding-left: 20px;
        padding-top: 10px; }
        .menu_mb .menu_mb_content .list-social-top ul li {
          float: left;
          margin-right: 20px; }
          .menu_mb .menu_mb_content .list-social-top ul li a {
            font-size: 20px; }
      .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul {
        padding: 0px; }
        .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul > li {
          text-align: left;
          font-size: 15px;
          line-height: 20px;
          padding: 10px 10px;
          border-bottom: 1px solid #fff;
          position: relative; }
          .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul > li a {
            color: #fff;
            display: inline-block;
            width: 100%; }
          .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul > li .show-child-menu {
            font-size: 25px;
            padding: 0 10px;
            position: absolute;
            right: 10px;
            top: 8px;
            color: #fff;
            -webkit-transition: all 0.2s ease-in-out;
            -khtml-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out; }
          .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul > li .show-child-menu.active {
            -ms-transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
            -webkit-transition: all 0.2s ease-in-out;
            -khtml-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out; }
          .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul > li ul {
            margin-top: 10px;
            padding-left: 15px;
            display: none;
            -webkit-transition: all 0.2s ease-in-out;
            -khtml-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out; }
            .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul > li ul > li {
              padding: 5px 0;
              border-top: 1px dotted #fff;
              border-bottom: none; }
              .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul > li ul > li a {
                font-size: 13px;
                font-weight: 300;
                margin-bottom: 0; }
              .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul > li ul > li:last-child {
                padding-bottom: 0px; }
            .menu_mb .menu_mb_content .menu-main-mb .main-nav-mb ul > li ul.show-child {
              display: inline-block;
              -webkit-transition: all 0.2s ease-in-out;
              -khtml-transition: all 0.2s ease-in-out;
              -moz-transition: all 0.2s ease-in-out;
              -ms-transition: all 0.2s ease-in-out;
              -o-transition: all 0.2s ease-in-out;
              transition: all 0.2s ease-in-out; }

  .close-button {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 9px; }
    .close-button span {
      height: 3px;
      width: 30px;
      background-color: #fff;
      display: block; }
      .close-button span:first-child {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-bottom: -3px; }
      .close-button span:last-child {
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }

  ._product_wrapper {
    width: 100%; }
    ._product_wrapper .logo-branch {
      padding-left: 0px; }

  ._product_wrapper .product_image_left .slider_img_product .image-product-zoom {
    height: 430px; }

  .about-product-content {
    padding-left: 0px; }

  ._product_wrapper .product_related {
    padding-left: 0px;
    padding-right: 0px; }

  ._product_wrapper .logo-branch img {
    margin-right: 10px; }
  ._product_wrapper .logo-branch h3 {
    margin-left: 0px; }

  .no-sidebar-main .content_nosidebar .flow_wrapper .cashier_flow {
    border-left: 0px;
    border-right: 0px; }
    .no-sidebar-main .content_nosidebar .flow_wrapper .cashier_flow ul li {
      margin-right: 15px; }
      .no-sidebar-main .content_nosidebar .flow_wrapper .cashier_flow ul li .flow_arrow_common {
        margin-left: 15px; }

  .section-block .form_block .form-right .list-social-register li {
    margin: 5px 0; }

  .section-block .form_block {
    border-left: 0px;
    border-right: 0px; }
    .section-block .form_block .form-right, .section-block .form_block .form-left {
      padding: 20px; }

  .title-header h3 {
    margin-left: 15px;
    font-size: 16px; }

  .button-2-area button {
    margin: 5px 0; }

  .text-success h3 {
    font-size: 40px; }
  .text-success p {
    font-size: 18px;
    line-height: 25px; }

  .button_blue {
    height: 50px;
    font-size: 14px;
    line-height: 50px; }

  .product_cart {
    border-left: none;
    border-right: none; }
    .product_cart .cart_main {
      width: 100%; }
      .product_cart .cart_main .shop_brand {
        width: 100%;
        margin: 15px 0 0 0;
        text-align: center;
        border-bottom: 1px solid #e7e7e7; }
      .product_cart .cart_main .list_product_cart {
        width: 100%;
        margin-left: 0px;
        border-left: 0; }
      .product_cart .cart_main .item_cart .item_avatar {
        width: 100%;
        max-width: 400px;
        margin: 0; }
        .product_cart .cart_main .item_cart .item_avatar img {
          width: 100%;
          height: auto; }
      .product_cart .cart_main .item_cart .item_txt {
        width: 100%;
        margin-top: 10px; }
    .product_cart .cart_side {
      width: 100%; }
      .product_cart .cart_side .cart_side_inner .cart_subtotal_contents .button_addcart {
        max-width: 100%; }

  .product_cart .list_product_cart .item_cart .item_subtotal {
    margin-right: 5px; }

  .product_cart .list_product_cart .item_cart .item_brand span {
    font-size: 14px; }

  .product_cart .list_product_cart .item_cart .item_brand img {
    margin-right: 10px; }

  .form_body {
    padding: 20px 0; }

  .section-block .form_regiter .title-header h3, .section-block .form_login .title-header h3 {
    margin-left: 0px; }
  .section-block .form_regiter .form-left, .section-block .form_login .form-left {
    padding: 20px 0; }
  .section-block .form_regiter .form_cart_inner, .section-block .form_login .form_cart_inner {
    width: 100%; }
  .section-block .form_regiter .button_small, .section-block .form_login .button_small {
    height: 35px;
    line-height: 35px; }

  .cart-button-area .text-right {
    margin-top: 20px;
    text-align: center; }

  .sender-address, .cart_step_5 .cart_step_5_inner .sender-address {
    width: calc(100% - 10px); }

  .cart_step_5 .cart_step_5_inner .title-header h3 {
    margin-left: 0px; }

  .section-block .form-login .title-header h3 {
    margin-left: 0px; }
  .section-block .form-login .form-left {
    width: 100%;
    padding: 15px;
    border-right: none; }
  .section-block .form-login .form-right {
    width: 100%;
    border-top: 1px solid #ccc;
    padding: 15px;
    display: block; }

  .about-product-content .nav-tabs li {
    width: 50%;
    margin-right: 0px;
    text-align: center; }
    .about-product-content .nav-tabs li a {
      margin: 0;
      font-size: 12px;
      background-color: #eee;
      border: 1px solid #ddd; }
    .about-product-content .nav-tabs li.active a {
      background-color: #dddddd; }
    .about-product-content .nav-tabs li:last-child {
      width: 100%; }

  .about-product-content .tab-content {
    padding: 0; } }
@media (max-width: 680px) {
  .data-search .data-seach-pname li {
    font-size: 12px;
    line-height: 16px;
    max-height: 87px;
    min-height: 74px; }
    .data-search .data-seach-pname li a {
      padding: 5px;
      overflow: hidden; }

  .list-product-category .item {
    width: 50%; }

  .form-search-category .form-group .radio-group {
    width: 100%;
    margin-bottom: 15px; }
    .form-search-category .form-group .radio-group .input-group {
      padding-right: 0px;
      width: calc(100% + 3px); }
  .form-search-category .form-group .check-group {
    width: 100%; }

  .form-search-category .form-group .radio-group .btn-group .btn,
  .form-search-category .form-group .check-group .btn-checkbox:first-child .btn,
  .form-search-category .form-group .group-filter .sex-status select,
  .form-search-category .form-group .group-filter .price_position,
  .search-input .input-group .form-control,
  .search-input .input-group-btn .btn {
    font-size: 12px; }

  .form-search-category .form-group .group-filter .price_position input {
    min-width: calc(50% - 45px); }

  .list-product-category .product-item .product-content a.product-name {
    font-size: 12px; }

  .list-product-category .item {
    padding: 5px; }

  .list-product-category .product-item .product-content .product-price {
    font-size: 14px; }

  .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_avatar {
    width: 100%;
    margin-right: 0px; }
    .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_avatar img {
      width: 100%;
      max-width: 400px;
      height: 100%;
      display: block;
      object-fit: contain;
      }
  .cart_step_5 .cart_step_5_inner .info_confirm_box .list_product_cart .two-address .item_text {
    margin-top: 15px;
    width: 100%; }

  .no-sidebar-main .content_nosidebar .step-navbar .nav-step li {
    min-width: 80px; }
    .no-sidebar-main .content_nosidebar .step-navbar .nav-step li span {
      padding: 10px 5px;
      font-size: 10px;
      min-width: 80px; }

  .button_favorite, .button_addcart {
    font-size: 14px;
    font-weight: normal;
    max-width: 160px;
    height: 45px;
    line-height: 45px; } }
@media (max-width: 480px) {
  ._product_wrapper .product_image_left .slider_img_product .image-product-zoom {
    height: 350px; }

  .form-search-category .form-group .group-filter .sex-status select {
    width: 100%;
    margin: 0px; }
    .form-search-category .form-group .group-filter .sex-status select.status-select {
      width: 100%;
      margin-top: 15px; }

  .form-search-category .form-group .group-filter .price_position {
    height: auto; }
    .form-search-category .form-group .group-filter .price_position input {
      min-width: calc(100%); }

  .button-group button {
    width: calc(50% - 24px);
    min-width: auto; } }
@media (max-width: 375px) {
  ._product_wrapper .product_image_left .slider_img_product .image-product-zoom {
    height: 320px; }

  .section-block .form_block .form-right, .section-block .form_block .form-left {
    padding: 20px 15px; }

  .button_favorite, .button_addcart {
    font-size: 12px;
    max-width: 49%; } }
@media (max-width: 1025px) and (min-width: 650px) {
  .shop_top_content .shop_top_list_product .list-product-category .list-product-category-inner .item {
    width: 25%; } }




@media (max-width: 1280px){
  .form-search-category .form-group .group-filter .price_position input {
    width: calc(50% - 56px);
  }
  .form-search-category .form-group .group-filter {
    margin-top: 15px;
    display: inline-block;
    width: 50%;
    float: left;
    padding-right: 8px;
  }
  .form-search-category .form-group .group-filter .price_position{
    width: 100%;
  }
  .form-search-category .form-group .search-input{
    width: 50%;
  }
}