/* -------------------------------------------------------------
  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:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 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
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
@media (min-width: 768px) {
  /* line 5, scss/product.scss */
  .pro_top .img {
    transform: translate(25px, 0);
  }
}

/* line 11, scss/product.scss */
.pro_top .ul0 li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  /* line 11, scss/product.scss */
  .pro_top .ul0 li {
    padding-left: 20px;
  }
}

/* line 18, scss/product.scss */
.pro_top .ul0 li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #333;
  position: absolute;
  top: 12px;
  left: 5px;
}

@media (max-width: 767px) {
  /* line 18, scss/product.scss */
  .pro_top .ul0 li:before {
    top: 10px;
  }
}

@media (min-width: 992px) {
  /* line 34, scss/product.scss */
  .pro_tab {
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
  }
  /* line 37, scss/product.scss */
  .pro_tab .option {
    display: flex !important;
    height: auto !important;
  }
  /* line 41, scss/product.scss */
  .pro_tab .tab_item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #666;
    -moz-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    transition: color 0.5s ease;
    transition-property: color, background-color;
    cursor: pointer;
  }
  /* line 49, scss/product.scss */
  .pro_tab .tab_item:before {
    content: "";
    flex: 0;
    height: 50px;
    display: block;
  }
  /* line 55, scss/product.scss */
  .body-pc .pro_tab .tab_item:hover, .pro_tab .tab_item.active {
    background-color: #fadb5c;
    color: #333;
  }
}

/* line 62, scss/product.scss */
.pro_table {
  width: 100%;
  table-layout: fixed;
}

/* line 65, scss/product.scss */
.pro_table th, .pro_table td {
  padding: 15px;
  border: 1px solid #ccc;
}

/* line 70, scss/product.scss */
.pro_table thead th {
  background-color: #696969;
  color: #fff;
}

/* line 76, scss/product.scss */
.pro_table .bg_gray th, .pro_table .bg_gray td {
  font-weight: 700;
  background-color: #e8e8e8;
}

/* line 83, scss/product.scss */
.optional .item {
  display: flex;
  align-items: center;
}

/* line 85, scss/product.scss */
.optional .item > div {
  padding: 12px 0 12px 35px;
  border-bottom: 1px solid #ccc;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  /* line 85, scss/product.scss */
  .optional .item > div {
    padding-left: 20px;
  }
}

/* line 93, scss/product.scss */
.optional .item > div:before {
  content: "";
  width: 5px;
  height: 6px;
  background-color: #333;
  position: absolute;
  border-radius: 50%;
  top: 24px;
  left: 5px;
}

@media (max-width: 767px) {
  /* line 93, scss/product.scss */
  .optional .item > div:before {
    top: 22px;
  }
}
