@charset "UTF-8";
/* Grid */
/* color */
/* height */
/* Grid */
/* color */
/* height */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

body {
  font: 100%/1.5em 'Catamaran',-apple-system,'Noto Sans TC', Arial, Helvetica, sans-serif;
  color: black;
  font-weight: 300;
  line-height: 1.5rem;
  letter-spacing: 1.2px;
  font-size: 15px;
  overflow-x: hidden;
  position: relative; }
  body ::-moz-selection {
    background: #ecf1ca; }
  body ::selection {
    background: #ecf1ca; }

main {
  position: relative;
  padding-top: 100px; }
  @media (max-width: 768px) {
    main {
      padding-top: 80px; } }

article, aside, details, figcaption, figure, hgroup, menu, nav, section {
  display: block;
  font-family: 'Catamaran',-apple-system,'Noto Sans TC', sans-serif; }

address {
  font-style: normal; }

a {
  text-decoration: none; }

img {
  max-width: 100%;
  height: auto; }

#content {
  opacity: 1; }

.pagination {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3rem 0 1rem 0; }
  .pagination .pagination-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px; }
    .pagination .pagination-bar .page-link {
      font-weight: 400;
      letter-spacing: .5px;
      cursor: pointer;
      padding: 0 .7rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-border-radius: 8px;
         -moz-border-radius: 8px;
              border-radius: 8px;
      color: black;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      -moz-transition: all .3s;
      transition: all .3s; }
      .pagination .pagination-bar .page-link:hover {
        opacity: 1;
        color: #6E9143; }
    .pagination .pagination-bar .disabled {
      cursor: default !important;
      color: #6E9143;
      position: relative; }
      .pagination .pagination-bar .disabled::after {
        content: '';
        display: block;
        width: 15px;
        height: 1px;
        background: #6E9143;
        position: absolute;
        bottom: 0px; }

/* Reset Select */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  outline: 0;
  border: 0 !important;
  background: white;
  background-image: none; }

/* Custom Select */
.select {
  font: 100%/1.5em 'Catamaran',-apple-system,'Noto Sans TC', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 200;
  border: none;
  color: black;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  border: 1px solid #eee;
  outline: none;
  background: white;
  position: relative;
  margin-bottom: 1.5rem; }

select {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 1.2rem 1.2rem 1.2rem 0.6rem;
  color: #868686;
  cursor: pointer;
  letter-spacing: .8px;
  font-weight: 300;
  font-size: 13px; }

select::-ms-expand {
  display: none; }

/* Arrow */
.select::after {
  content: url(../images/g-arrow.svg);
  position: absolute;
  right: 18px;
  font-size: 8px;
  top: 35%;
  color: #65676d;
  pointer-events: none;
  -webkit-transform: scale(0.8);
     -moz-transform: scale(0.8);
      -ms-transform: scale(0.8);
       -o-transform: scale(0.8);
          transform: scale(0.8); }

/* Transition */
.select:hover::after {
  opacity: .6; }

.select::after {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  -moz-transition: .3s all ease;
  transition: .3s all ease; }

input[type="radio"], input[type="checkbox"] {
  position: relative;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  height: 0;
  cursor: pointer;
  /* width: 4%; */
  color: #ffffff;
  margin-left: 3%;
  /* -webkit-appearance: none; */
  outline: none; }
  input[type="radio"]:before, input[type="checkbox"]:before {
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    border: none;
    background: #EEEEEE;
    border-top-width: 1px;
    position: absolute;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    left: -15px;
    top: -8px;
    outline: none; }
  input[type="radio"]:hover + label, input[type="checkbox"]:hover + label {
    cursor: pointer; }
  input[type="radio"]:checked:before, input[type="checkbox"]:checked:before {
    content: url(../images/sprites/svg/checked.svg);
    background: #6E9143;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-animation-name: checked;
       -moz-animation-name: checked;
         -o-animation-name: checked;
            animation-name: checked;
    -webkit-animation-duration: 200ms;
       -moz-animation-duration: 200ms;
         -o-animation-duration: 200ms;
            animation-duration: 200ms;
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2); }

  .check-item input[type="radio"], .check-item input[type="checkbox"] {
    display: none; }
  .check-item input[type="radio"]+label, .check-item input[type="checkbox"]+label {
    vertical-align: middle;
  }
  .check-item input[type="radio"]+label:before, .check-item input[type="checkbox"]+label:before {
      -webkit-transition: all 200ms ease-out;
      -o-transition: all 200ms ease-out;
      -moz-transition: all 200ms ease-out;
      transition: all 200ms ease-out;
      content: '';
      vertical-align: middle;
      width: 20px;
      height: 20px;
      display: inline-block;
      margin-right: 10px;
      border: none;
      background: #EEEEEE;
      border-top-width: 1px;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      left: -5px;
      top: -8px;
      outline: none; }
    
  .check-item input[type="radio"]:checked+label:before, .check-item input[type="checkbox"]:checked+label:before {
      content: url(../images/sprites/svg/checked.svg);
      background: #6E9143;
      display: -webkit-box;
      display: -webkit-inline-flex;
      display: -moz-box;
      display: -ms-inline-flexbox;
      -js-display: inline-flex;
      display: inline-flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-animation-name: checked;
          -moz-animation-name: checked;
            -o-animation-name: checked;
              animation-name: checked;
      -webkit-animation-duration: 200ms;
          -moz-animation-duration: 200ms;
            -o-animation-duration: 200ms;
              animation-duration: 200ms;
      -webkit-transform: scale(1.2);
          -moz-transform: scale(1.2);
          -ms-transform: scale(1.2);
            -o-transform: scale(1.2);
              transform: scale(1.2); }
            

@-webkit-keyframes checked {
  from {
    -webkit-box-shadow: 0 0 0 0 #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
            box-shadow: 0 0 0 0 #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
    -webkit-transform: scale(1.2);
            transform: scale(1.2); }
  to {
    -webkit-box-shadow: 0 0 0 2px #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
            box-shadow: 0 0 0 2px #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
    -webkit-transform: scale(1.1);
            transform: scale(1.1); } }

@-moz-keyframes checked {
  from {
    -moz-box-shadow: 0 0 0 0 #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
         box-shadow: 0 0 0 0 #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
    -moz-transform: scale(1.2);
         transform: scale(1.2); }
  to {
    -moz-box-shadow: 0 0 0 2px #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
         box-shadow: 0 0 0 2px #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
    -moz-transform: scale(1.1);
         transform: scale(1.1); } }

@-o-keyframes checked {
  from {
    box-shadow: 0 0 0 0 #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
    -o-transform: scale(1.2);
       transform: scale(1.2); }
  to {
    box-shadow: 0 0 0 2px #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
    -o-transform: scale(1.1);
       transform: scale(1.1); } }

@keyframes checked {
  from {
    -webkit-box-shadow: 0 0 0 0 #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
       -moz-box-shadow: 0 0 0 0 #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
            box-shadow: 0 0 0 0 #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2); }
  to {
    -webkit-box-shadow: 0 0 0 2px #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
       -moz-box-shadow: 0 0 0 2px #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
            box-shadow: 0 0 0 2px #6E9143, inset 0 0 0 1px #6E9143, inset 0 0 0 16px #6E9143, inset 0 0 0 16px #6E9143;
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1); } }

label[for="t_and_p"] {
  padding-left: 1.5rem; }

label a {
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms; }
  label a:hover {
    color: black; }

/* 按鈕樣式 */
.btn {
  width: 100%;
  padding: 1.2rem;
  background: black;
  color: white;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  text-align: center;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .btn span {
    display: block;
    font-size: 14px; }
  .btn:hover {
    opacity: .8; }
  .btn.blue {
    background: #3C5A99; }
    .btn.blue span::before {
      font-size: 18px;
      margin-right: .5rem; }

.grey-btn {
  background: #f5f5f5;
  width: 60%;
  margin: auto;
  color: black;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms; }
  @media (max-width: 980px) {
    .grey-btn {
      width: 80%; } }
  @media (max-width: 768px) {
    .grey-btn {
      width: 90%; } }
  .grey-btn img {
    padding: 0 1.5rem; }
  .grey-btn:hover {
    -webkit-transform: translateY(10px);
       -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
         -o-transform: translateY(10px);
            transform: translateY(10px); }

.notice {
  background: rgba(208, 2, 27, 0.17);
  color: #D5001A;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-align: left !important;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  -js-display: flex !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms; }
  .notice::after {
    content: url(../images/red-arrow.svg);
    position: absolute;
    right: 1.7rem;
    top: 35%;
    padding-top: 6px;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms; }
  .notice::before {
    content: url(../images/info-icon.svg);
    position: absolute;
    left: 1.7rem;
    top: 1.3rem; }
  .notice:hover {
    background: rgba(208, 2, 27, 0.2);
    opacity: 1; }
    .notice:hover::after {
      right: 1.5rem; }

.c-btn {
  width: 93% !important;
  padding: .6rem !important;
  margin: auto;
  margin-top: 0; }
  @media (max-width: 1200px) {
    .c-btn {
      width: 100% !important;
      right: 0;
      bottom: -7rem;
      margin-top: 0rem; } }
  .c-btn span {
    display: block;
    font-size: 12px; }

.swal2-popup {
  -webkit-border-radius: 0 !important;
     -moz-border-radius: 0 !important;
          border-radius: 0 !important;
  padding: 2rem 2.4em !important; }
  @media (max-width: 768px) {
    .swal2-popup {
      padding: 1.8rem !important; } }
  .swal2-popup .swal2-content {
    line-height: 1.8rem !important; }

.swal2-actions .swal2-confirm {
  width: 16rem;
  padding: 1.2rem 1.6rem !important;
  margin-top: 1.2rem !important;
  -webkit-border-radius: 0 !important;
     -moz-border-radius: 0 !important;
          border-radius: 0 !important;
  color: white !important;
  font-weight: 300 !important;
  background: black !important;
  text-align: center; }
  .swal2-actions .swal2-confirm:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
       -moz-box-shadow: none !important;
            box-shadow: none !important; }
  .swal2-actions .swal2-confirm:hover {
    opacity: .8; }

.swal2-title {
  color: black !important;
  font-size: 1.4em !important;
  font-weight: 400 !important; }

.swal2-content {
  color: black !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  padding: .5rem 0;
  text-align: left; }
  .swal2-content a {
    color: black !important; }
    .swal2-content a:hover {
      opacity: .8; }

#swal2-content {
  text-align: left;
  line-height: 2.2rem !important; }
  #swal2-content .link_1 {
    color: #6E9143 !important;
    font-size: 14px; }

.pri-html {
  border-top: 1px solid #e6e6e6;
  margin-top: 2.5rem;
  padding-top: 3rem; }

.error-page {
  max-width: 800px;
  margin: auto;
  text-align: center;
  position: relative;
  padding-top: 11rem; }
  .error-page img {
    width: 360px;
    position: absolute;
    left: 2rem;
    top: 0; }
  .error-page h1 {
    font-size: 120px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 58px; }
  .error-page p {
    font-size: 20px;
    line-height: 42px;
    color: black;
    -webkit-font-smoothing: antialiased; }
  .error-page span {
    display: block;
    font-size: 18px; }
  .error-page .wraper {
    line-height: 40px;
    margin-top: 4rem; }
    .error-page .wraper .wrap:last-child {
      letter-spacing: 2.5px; }
    .error-page .wraper .wrap a[data-type="shop-link"] {
      border-bottom: 1px solid;
      padding-bottom: 5px;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms; }
      .error-page .wraper .wrap a[data-type="shop-link"]:hover {
        padding-bottom: 8px; }
  @media (max-width: 768px) {
    .error-page h1 {
      font-size: 100px; }
    .error-page .wraper {
      font-size: 15px;
      padding: 0 1rem;
      line-height: 24px;
      margin-top: 4rem; }
      .error-page .wraper .wrap:last-child {
        margin-top: 2rem; } }

.no-scroll {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden; }

.noo-scroll {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  background-attachment: fixed; }

.nooo-scroll {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  position: fixed;
  background-attachment: fixed; }

main {
  min-height: 90vh;
  display: block; }

.breadcrumb {
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  font-weight: 400;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  margin: 3rem 0 2rem 1rem;
  text-transform: uppercase; }
  .breadcrumb li a {
    color: black; }
  .breadcrumb li:hover {
    opacity: .8; }
  @media (max-width: 768px) {
    .breadcrumb {
      -webkit-transform: scale(0.8);
         -moz-transform: scale(0.8);
          -ms-transform: scale(0.8);
           -o-transform: scale(0.8);
              transform: scale(0.8);
      -webkit-transform-origin: left;
         -moz-transform-origin: left;
          -ms-transform-origin: left;
           -o-transform-origin: left;
              transform-origin: left;
      margin: 1rem;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      line-height: 2rem;
      padding-left: 0;
      white-space: nowrap;
      width: 110%; }
      .breadcrumb li {
        white-space: nowrap; }
        .breadcrumb li:first-child:before {
          display: none; } }
  .breadcrumb li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .breadcrumb li:before {
      content: url("../images/arrow.svg");
      margin: .25rem 1rem 0 1rem; }
      @media (max-width: 768px) {
        .breadcrumb li:before {
          margin: .25rem .5rem 0 .5rem; } }
    .breadcrumb li:first-child:before {
      content: ''; }
    .breadcrumb li a:hover {
      color: black; }

.w-100 {
  width: 100%; }

.w-80 {
  width: 80% !important; }
  @media (max-width: 768px) {
    .w-80 {
      width: 90% !important; } }

.w-46 {
  width: 46.5% !important; }
  .w-46 img {
    width: 100%;
    display: block; }
  @media (max-width: 768px) {
    .w-46 {
      width: 100% !important; } }

.w-48 {
  width: 48.5% !important; }
  .w-48 img {
    width: 100%;
    display: block; }
  @media (max-width: 768px) {
    .w-48 {
      width: 100% !important; } }

.g-recaptcha {
  margin-top: .6rem !important;
  margin-bottom: -.5rem !important; }

.fb_dialog, .fb_dialog.fb_dialog_advanced, .fb_dialog_mobile, iframe.fb_customer_chat_bounce_in_v2, iframe.fb_customer_chat_bounce_out_v2 {
  bottom: 26pt !important; }
  @media (max-width: 768px) {
    .fb_dialog, .fb_dialog.fb_dialog_advanced, .fb_dialog_mobile, iframe.fb_customer_chat_bounce_in_v2, iframe.fb_customer_chat_bounce_out_v2 {
      bottom: 22px !important;
      right: 3.5% !important; } }

.iti__flag {
  background-image: url("../images/flags.png") !important; }

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../images/flags@2x.png") !important; } }

a#search, #search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms; }
  a#search:hover, #search:hover {
    cursor: pointer; }
  a#search .search, #search .search {
    margin-top: .2rem; }
  @media (max-width: 980px) {
    a#search, #search {
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
         -moz-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
      margin-right: .7rem; } }

#search-box {
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  #search-box.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex; }
  #search-box input {
    width: 60%;
    text-align: center;
    border: none;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: transparent;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    margin-top: 2rem; }
    @media (max-width: 768px) {
      #search-box input {
        font-size: 1.2rem; } }
    #search-box input:hover {
      border: none;
      border-bottom: 2px solid #6E9143; }
    #search-box input:focus {
      border: none;
      border-bottom: 2px solid #6E9143; }
  #search-box .btn {
    width: 20%;
    font-size: 15px;
    padding: 1rem;
    margin-top: 2rem;
    opacity: .8; }
    #search-box .btn:hover {
      opacity: 1; }
  @media (max-width: 768px) {
    #search-box input {
      width: 90%;
      margin-top: 0rem; }
    #search-box .btn {
      width: 50%; } }
  #search-box #search-close {
    cursor: pointer; }
    #search-box #search-close img {
      position: fixed;
      top: 2rem;
      right: 2rem;
      width: 56px;
      padding: 10px; }
      @media (max-width: 768px) {
        #search-box #search-close img {
          width: 48px;
          top: .5rem;
          right: .5rem; } }

.search-tabs {
  width: 85%;
  margin: auto;
  max-width: 1440px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  border-bottom: 1px solid #ddd;
  margin-top: -1rem;
  margin-bottom: 2rem; }
  @media (max-width: 768px) {
    .search-tabs {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      margin-top: -2.5rem;
      border-bottom: none; } }
  .search-tabs a {
    display: block;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    -webkit-transform: translateY(2px);
       -moz-transform: translateY(2px);
        -ms-transform: translateY(2px);
         -o-transform: translateY(2px);
            transform: translateY(2px);
    font-size: 13px;
    letter-spacing: 2px;
    opacity: .6;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms; }
    .search-tabs a:hover {
      opacity: 1; }
    @media (max-width: 768px) {
      .search-tabs a {
        border-bottom: 1px solid #ddd; } }
    .search-tabs a.active {
      border-bottom: 4px solid #6E9143;
      opacity: 1; }

.center {
  width: 100%;
  text-align: center;
  margin-bottom: -.5em;
  font-size: 13px; }

#player iframe {
  width: 100%; }

@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon.eot?2v8zhb");
  src: url("fonts/icomoon.eot?2v8zhb#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?2v8zhb") format("truetype"), url("fonts/icomoon.woff?2v8zhb") format("woff"), url("fonts/icomoon.svg?2v8zhb#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-press:before {
  content: "\e906"; }

.icon-arrow:before {
  content: "\e907"; }

.icon-info:before {
  content: "\e900"; }

.icon-time:before {
  content: "\e901"; }

.icon-mail:before {
  content: "\e902"; }

.icon-instagram:before {
  content: "\e903"; }

.icon-facebook:before {
  content: "\e904"; }

.icon-phone:before {
  content: "\e905"; }

/* Grid */
/* color */
/* height */
h1, h2, h3, h4, h5, h6 {
  color: black;
  margin: 0;
  font-weight: 300;
  line-height: 2rem; }

h1 {
  font-size: 48px;
  line-height: 48px;
  font-weight: bold;
  text-transform: uppercase; }

h2 {
  font-size: 32px;
  line-height: 32px; }

a {
  color: #65676d; }

h1.title {
  width: 86%;
  margin: auto;
  font-size: 24px;
  padding-top: 2rem;
  margin-bottom: .2rem; }
  @media (max-width: 768px) {
    h1.title {
      width: 90%;
      padding-left: .5rem; } }

h2.title {
  width: 86%;
  margin: auto;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 2px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 2rem;
  margin-bottom: 3rem; }
  @media (max-width: 768px) {
    h2.title {
      width: 90%;
      padding-left: .5rem; } }

.link_1 {
  font-size: 13px;
  color: black;
  text-align: right;
  margin-bottom: .5rem;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  text-decoration: underline;
  font-weight: 400; }
  .link_1:hover {
    color: #6E9143; }

.link_2 {
  width: 100%;
  font-size: 15px;
  color: black;
  text-align: center;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 1.5rem; }
  .link_2:hover {
    opacity: .75;
    color: #6E9143; }

.link_3 {
  width: 100%;
  font-size: 13px;
  color: black;
  text-align: center;
  margin-top: 5rem;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  text-decoration: underline;
  font-weight: 400; }
  .link_3:hover {
    opacity: .75; }

.type_1 {
  text-align: center;
  font-size: 12px;
  opacity: .6;
  line-height: 22px; }

h3.center {
  text-align: center;
  margin-top: -2rem; }

h4.center {
  text-align: center;
  margin-top: .3rem; }

.header-section {
  padding: 30px 0;
  background: #fff; }

.page-section {
  padding: 30px 0;
  background: #eee; }

.button-section {
  padding-top: 20px; }

.info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  letter-spacing: 1px;
  width: 50%; }
  @media (max-width: 768px) {
    .info {
      width: 100% !important;
      margin-bottom: 2rem; } }
  .info span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex; }
    .info span::after {
      content: '';
      display: block;
      background: black;
      width: 30px;
      height: 1px;
      margin: 6px .8rem; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  scroll-behavior: smooth; }

/* Sections
	 ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0; }

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block; }

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em; }

/* Grouping content
	 ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
	 ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent; }

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder; }

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%; }

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
	 ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none; }

/* Forms
	 ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

input {
  line-height: 1;
  color: #65676d;
}
/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible; }

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none; }

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline; }

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto; }

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
	 ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block; }

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item; }

/* Misc
	 ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none; }

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none; }

/* Misc
	 ========================================================================== */
.container-grid:before,
.container-grid:after,
.row:before,
.row:after,
.clear:before,
.clear:after {
  content: " ";
  display: table; }

.container-grid:after,
.row:after,
.clear:after {
  clear: both; }

.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

.outro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100vw;
  background: #f6f6f6;
  padding: 15rem 0 10rem 0;
  margin-top: -15rem;
  color: #444;
  font-weight: 400;
  font-size: 15px; }
  @media (max-width: 768px) {
    .outro {
      margin-top: -8rem;
      padding: 6rem 0; } }
  @media (max-width: 640px) {
    .outro {
      margin-top: -5rem; } }
  .outro .share {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    margin: 4rem 0 3rem 0;
    margin-right: -1rem;
    letter-spacing: 1px;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .outro .share span {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex; }
      .outro .share span::after {
        content: '';
        display: block;
        background: black;
        width: 30px;
        height: 1px;
        margin: 6px .8rem; }
    .outro .share a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      position: relative;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .outro .share a svg {
        width: 20px;
        height: 20px;
        margin-right: 1.2rem;
        z-index: 1;
        -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .outro .share a svg:hover {
          -webkit-transform: scale(0.9);
             -moz-transform: scale(0.9);
              -ms-transform: scale(0.9);
               -o-transform: scale(0.9);
                  transform: scale(0.9); }
      .outro .share a::after {
        content: '';
        width: 30px;
        height: 30px;
        -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
                border-radius: 50%;
        display: block;
        position: absolute;
        left: -5px;
        background: #bfbfbf;
        opacity: .3;
        -webkit-transform: scale(0);
           -moz-transform: scale(0);
            -ms-transform: scale(0);
             -o-transform: scale(0);
                transform: scale(0);
        -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
      .outro .share a:hover svg {
        -webkit-transform: scale(0.9);
           -moz-transform: scale(0.9);
            -ms-transform: scale(0.9);
             -o-transform: scale(0.9);
                transform: scale(0.9); }
      .outro .share a:hover::after {
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
            -ms-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1); }

.back {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  position: relative;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  left: .5%;
  padding-top: 2rem;
  letter-spacing: 2px;
  opacity: .5;
  font-size: 13px; }
  @media (max-width: 768px) {
    .back {
      padding-top: 0; } }
  .back::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 10px 6px 0;
    border-color: transparent #444 transparent transparent;
    position: absolute;
    left: -1.5rem;
    opacity: .8;
    -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  .back:hover {
    opacity: .8; }
    .back:hover::before {
      left: -2rem; }

label {
  background: none;
  padding: 0;
  font-size: 15px;
  font-weight: 400; }

#r-corb, #r-m-corb {
  padding: 1.2rem 0.6rem 1.2rem 1rem; }

.c-select {
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 200;
  border: none;
  color: black;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  border: 1px solid #eee;
  outline: none; }
  .c-select:focus {
    outline: none;
    color: black; }
  .c-select::-webkit-input-placeholder {
    color: #BFBFBF; }
  .c-select::-moz-placeholder {
    color: #BFBFBF; }
  .c-select:-ms-input-placeholder {
    color: #BFBFBF; }
  .c-select::placeholder {
    color: #BFBFBF; }

input[type="text"], input[type="password"], textarea {
  font: 100%/1.5em 'Catamaran',-apple-system,'Noto Sans TC', Arial, Helvetica, sans-serif;
  padding: 1.2rem 1.2rem 1.2rem 0.6rem;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 200;
  border: none;
  color: black;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  border: 1px solid #eee;
  outline: none;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none !important;
  -webkit-box-shadow: none !important;
     -moz-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-border-radius: 0 !important;
     -moz-border-radius: 0 !important;
          border-radius: 0 !important; }
  input[type="text"]:hover, input[type="password"]:hover, textarea:hover {
    border: 1px solid #dbdbdb; }
  input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
    outline: none;
    color: black;
    border: 1px solid #6E9143; }
  input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #BFBFBF; }
  input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, textarea::-moz-placeholder {
    color: #BFBFBF; }
  input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #BFBFBF; }
  input[type="text"]::placeholder, input[type="password"]::placeholder, textarea::placeholder {
    color: #BFBFBF; }

textarea {
  min-height: 300px; }

.card-js input.card-number {
  padding-right: 48px; }

.card-js .card-number-wrapper .card-type-icon {
  height: 23px;
  width: 32px;
  position: absolute;
  display: block;
  right: 8px;
  top: 7px;
  background: url(https://cardjs.co.uk/img/cards.png) 0 23px no-repeat;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -moz-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }

.card-js .card-number-wrapper .show {
  opacity: 1; }

.card-js .card-number-wrapper .card-type-icon.visa {
  background-position: 0 0; }

.card-js .card-number-wrapper .card-type-icon.master-card {
  background-position: -32px 0; }

.card-js .card-number-wrapper .card-type-icon.american-express {
  background-position: -64px 0; }

.card-js .card-number-wrapper .card-type-icon.discover {
  background-position: -96px 0; }

.card-js .card-number-wrapper .card-type-icon.diners {
  background-position: -128px 0; }

.card-js .card-number-wrapper .card-type-icon.jcb {
  background-position: -160px 0; }

.card-js .cvc-container {
  width: 50%;
  float: right; }

.card-js .cvc-wrapper {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 5px; }
  .card-js .cvc-wrapper .cvc {
    display: block;
    width: 100%; }

.card-js .expiry-container {
  width: 50%;
  float: left; }

.card-js .expiry-wrapper {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 5px; }
  .card-js .expiry-wrapper .expiry {
    display: block;
    width: 100%; }
  .card-js .expiry-wrapper .expiry-month {
    -webkit-border-top-right-radius: 0;
       -moz-border-radius-topright: 0;
            border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
       -moz-border-radius-bottomright: 0;
            border-bottom-right-radius: 0;
    padding-left: 30px; }
  .card-js .expiry-wrapper .expiry-year {
    -webkit-border-top-left-radius: 0;
       -moz-border-radius-topleft: 0;
            border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
       -moz-border-radius-bottomleft: 0;
            border-bottom-left-radius: 0;
    border-left: 0; }
  .card-js .expiry-wrapper .expiry-month, .card-js .expiry-wrapper .expiry-year {
    display: inline-block; }
  .card-js .expiry-wrapper .expiry {
    padding-left: 38px; }

.card-js .icon {
  position: absolute;
  display: block;
  width: 24px;
  height: 17px;
  left: 8px;
  top: 10px;
  pointer-events: none; }
  .card-js .icon.right {
    right: 8px;
    left: auto; }
  .card-js .icon.popup {
    cursor: pointer;
    pointer-events: auto; }
  .card-js .icon .svg {
    fill: #888; }
  .card-js .icon.popup .svg {
    fill: #aaa !important; }

.card-js .card-number-wrapper, .card-js .name-wrapper {
  margin-bottom: 15px;
  width: 100%; }

.card-js .card-number-wrapper, .card-js .cvc-wrapper, .card-js .expiry-wrapper, .card-js .name-wrapper {
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  -ms-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  -o-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative; }

.card-js .card-number-wrapper, .card-js .cvc-container, .card-js .expiry-container, .card-js .name-wrapper {
  display: inline-block; }

.card-js::after {
  content: ' ';
  display: table;
  clear: both; }

.card-js input {
  color: #676767;
  font-size: 15px;
  font-weight: 300;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 36px;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  background-color: #FDFDFD;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  -webkit-transition: border-color .15s linear, box-shadow .15s linear;
  -moz-transition: border-color .15s linear, box-shadow .15s linear;
  -o-transition: border-color .15s linear, box-shadow .15s linear;
  -webkit-transition: border-color 0.15s linear, -webkit-box-shadow 0.15s linear;
  transition: border-color 0.15s linear, -webkit-box-shadow 0.15s linear;
  -o-transition: border-color 0.15s linear, box-shadow 0.15s linear;
  -moz-transition: border-color 0.15s linear, box-shadow 0.15s linear, -moz-box-shadow 0.15s linear;
  transition: border-color 0.15s linear, box-shadow 0.15s linear;
  transition: border-color 0.15s linear, box-shadow 0.15s linear, -webkit-box-shadow 0.15s linear, -moz-box-shadow 0.15s linear;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none !important; }

.card-js select {
  color: #676767;
  font-size: 15px;
  font-weight: 300;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 36px;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  background-color: #FDFDFD;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  -webkit-transition: border-color .15s linear, box-shadow .15s linear;
  -moz-transition: border-color .15s linear, box-shadow .15s linear;
  -o-transition: border-color .15s linear, box-shadow .15s linear;
  -webkit-transition: border-color 0.15s linear, -webkit-box-shadow 0.15s linear;
  transition: border-color 0.15s linear, -webkit-box-shadow 0.15s linear;
  -o-transition: border-color 0.15s linear, box-shadow 0.15s linear;
  -moz-transition: border-color 0.15s linear, box-shadow 0.15s linear, -moz-box-shadow 0.15s linear;
  transition: border-color 0.15s linear, box-shadow 0.15s linear;
  transition: border-color 0.15s linear, box-shadow 0.15s linear, -webkit-box-shadow 0.15s linear, -moz-box-shadow 0.15s linear;
  -moz-appearance: none;
  text-indent: .01px;
  -o-text-overflow: "";
     text-overflow: ""; }

.card-js input[disabled] {
  background-color: #eee;
  color: #555; }

.card-js select[disabled] {
  background-color: #eee;
  color: #555; }

.card-js select option[hidden] {
  color: #ABA9A9; }

.card-js input:focus, .card-js select:focus {
  background-color: #fff;
  outline: 0;
  border-color: #66afe9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
       box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.card-js input[readonly=readonly]:not([disabled]), .card-js input[readonly]:not([disabled]) {
  background-color: #fff;
  cursor: pointer; }

.card-js .has-error input {
  border-color: #F64B2F;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none; }
  .card-js .has-error input:focus {
    border-color: #F64B2F;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none; }

.card-js input.card-number, .card-js input.cvc, .card-js input.name {
  padding-left: 38px;
  width: 100%; }

.card-js.stripe .icon .svg {
  fill: #559A28; }

/*!
 * Slidebars - A jQuery Framework for Off-Canvas Menus and Sidebars
 * Version: 2.0.2
 * Url: http://www.adchsm.com/slidebars/
 * Author: Adam Charles Smith
 * Author url: http://www.adchsm.com/
 * License: MIT
 * License url: http://www.adchsm.com/slidebars/license/
 */
/**
 * Box Model, Html & Body
 */
html, body, [canvas=container], [off-canvas] {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%; }

/**
   * Canvas
   */
[canvas] {
  z-index: 1; }

[canvas=container] {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
  background-color: white;
  /* Basic background color, overwrite this in your own css. */
  -webkit-overflow-scrolling: touch;
  /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */ }
  [canvas=container]:before, [canvas=container]:after {
    clear: both;
    content: '';
    display: table; }

/**
   * Off-Canavs
   */
[off-canvas] {
  display: none;
  position: fixed;
  overflow: hidden;
  overflow-y: auto;
  background-color: black;
  /* Basic background color, overwrite this in your own css. */
  color: white;
  /* Basic colors, overwrite this in your own css. */
  -webkit-overflow-scrolling: touch;
  /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */ }

[off-canvas*=top] {
  width: 100%;
  height: 255px;
  top: 0; }

[off-canvas*=right] {
  width: 255px;
  height: 100%;
  top: 0;
  right: 0; }

[off-canvas*=bottom] {
  width: 100%;
  height: 255px;
  bottom: 0; }

[off-canvas*=left] {
  width: 255px;
  height: 100%;
  top: 0;
  left: 0; }

[off-canvas*=reveal] {
  z-index: 0; }

[off-canvas*=push] {
  z-index: 1; }

[off-canvas*=overlay] {
  z-index: 9999; }

[off-canvas*=shift] {
  z-index: 0; }

/**
   * Animation
   */
[canvas], [off-canvas] {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
       transform: translate(0px, 0px);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  -o-transition: -o-transform 300ms;
  -moz-transition: transform 300ms, -moz-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms, -moz-transform 300ms, -o-transform 300ms;
  /* Prevents flickering, may be removed if experiencing problems with fixed background images in Chrome. */ }

[off-canvas*=shift][off-canvas*=top] {
  -webkit-transform: translate(0px, 50%);
  -moz-transform: translate(0px, 50%);
   -ms-transform: translate(0px, 50%);
    -o-transform: translate(0px, 50%);
       transform: translate(0px, 50%); }

[off-canvas*=shift][off-canvas*=right] {
  -webkit-transform: translate(-50%, 0px);
  -moz-transform: translate(-50%, 0px);
   -ms-transform: translate(-50%, 0px);
    -o-transform: translate(-50%, 0px);
       transform: translate(-50%, 0px); }

[off-canvas*=shift][off-canvas*=bottom] {
  -webkit-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
   -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
       transform: translate(0px, -50%); }

[off-canvas*=shift][off-canvas*=left] {
  -webkit-transform: translate(50%, 0px);
  -moz-transform: translate(50%, 0px);
   -ms-transform: translate(50%, 0px);
    -o-transform: translate(50%, 0px);
       transform: translate(50%, 0px); }

/**
   * Print
   */
@media print {
  [canvas] {
    -webkit-transform: translate(0px, 0px) !important;
    -ms-transform: translate(0px, 0px) !important;
    -moz-transform: translate(0px, 0px) !important;
      -o-transform: translate(0px, 0px) !important;
         transform: translate(0px, 0px) !important; }
  [off-canvas] {
    display: none !important; } }

@-webkit-keyframes plyr-progress {
  to {
    background-position: 25px 0; } }

@-moz-keyframes plyr-progress {
  to {
    background-position: 25px 0; } }

@-o-keyframes plyr-progress {
  to {
    background-position: 25px 0; } }

@keyframes plyr-progress {
  to {
    background-position: 25px 0; } }

@-webkit-keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-moz-keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -moz-transform: translateY(10px);
         transform: translateY(10px); }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0); } }

@-o-keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -o-transform: translateY(10px);
       transform: translateY(10px); }
  to {
    opacity: 1;
    -o-transform: translateY(0);
       transform: translateY(0); } }

@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
       -moz-transform: translateY(10px);
         -o-transform: translateY(10px);
            transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes plyr-fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-moz-keyframes plyr-fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-o-keyframes plyr-fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes plyr-fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.plyr {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  direction: ltr;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease; }

.plyr audio, .plyr video {
  -webkit-border-radius: inherit;
     -moz-border-radius: inherit;
          border-radius: inherit;
  height: auto;
  vertical-align: middle;
  width: 100%; }

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto; }

.plyr:focus {
  outline: 0; }

.plyr--full-ui {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

.plyr--full-ui *, .plyr--full-ui ::after, .plyr--full-ui ::before {
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit; }

.plyr--full-ui a, .plyr--full-ui button, .plyr--full-ui input, .plyr--full-ui label {
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

.plyr__badge {
  background: #4f5b5f;
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  padding: 3px 4px; }

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none; }

.plyr__captions {
  -webkit-animation: plyr-fade-in 0.3s ease;
     -moz-animation: plyr-fade-in 0.3s ease;
       -o-animation: plyr-fade-in 0.3s ease;
          animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  color: #fff;
  display: none;
  font-size: 14px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: -o-transform 0.4s ease-in-out;
  -moz-transition: transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out, -o-transform 0.4s ease-in-out;
  width: 100%; }

.plyr__captions .plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap; }

.plyr__captions .plyr__caption div {
  display: inline; }

.plyr__captions span:empty {
  display: none; }

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 16px;
    padding: 20px; } }

@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px; } }

.plyr--captions-active .plyr__captions {
  display: block; }

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  -webkit-transform: translateY(-40px);
     -moz-transform: translateY(-40px);
      -ms-transform: translateY(-40px);
       -o-transform: translateY(-40px);
          transform: translateY(-40px); }

.plyr__control {
  background: 0 0;
  border: 0;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  color: inherit;
  cursor: pointer;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  pointer-events: none;
  width: 18px; }

.plyr__control:focus {
  outline: 0; }

.plyr__control.plyr__tab-focus {
  -webkit-box-shadow: 0 0 0 5px #ddd;
     -moz-box-shadow: 0 0 0 5px #ddd;
          box-shadow: 0 0 0 5px #ddd;
  outline: 0; }

a.plyr__control {
  text-decoration: none; }

a.plyr__control::after, a.plyr__control::before {
  display: none; }

.plyr__control.plyr__control--pressed .icon--not-pressed, .plyr__control.plyr__control--pressed .label--not-pressed, .plyr__control:not(.plyr__control--pressed) .icon--pressed, .plyr__control:not(.plyr__control--pressed) .label--pressed {
  display: none; }

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: rgba(110, 145, 67, 0.4);
  color: #fff; }

.plyr--video .plyr__control svg {
  -webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15)); }

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: rgba(110, 145, 67, 0.9);
  color: #fff; }

.plyr__control--overlaid {
  background: black;
  border: 0;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.5);
     -moz-transform: translate(-50%, -50%) scale(1.5);
      -ms-transform: translate(-50%, -50%) scale(1.5);
       -o-transform: translate(-50%, -50%) scale(1.5);
          transform: translate(-50%, -50%) scale(1.5);
  z-index: 2; }

.plyr__control--overlaid svg {
  left: 2px;
  position: relative; }

.plyr__control--overlaid:focus, .plyr__control--overlaid:hover {
  background: #f6f6f6; }

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden; }

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block; }

.plyr--full-ui ::-webkit-media-controls {
  display: none; }

.plyr__controls {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center; }

.plyr__controls .plyr__progress__container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px; }

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto; }

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px; }

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px; }

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time, .plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0; }

.plyr__controls .plyr__controls__item.plyr__volume {
  padding-right: 5px; }

.plyr__controls .plyr__controls__item.plyr__volume:first-child {
  padding-right: 0; }

.plyr__controls:empty {
  display: none; }

.plyr--audio .plyr__controls {
  background: #fff;
  -webkit-border-radius: inherit;
     -moz-border-radius: inherit;
          border-radius: inherit;
  color: #4f5b5f;
  padding: 10px; }

.plyr--video .plyr__controls {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  background: -moz- oldlinear-gradient(transparent, rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  -webkit-border-bottom-left-radius: inherit;
     -moz-border-radius-bottomleft: inherit;
          border-bottom-left-radius: inherit;
  -webkit-border-bottom-right-radius: inherit;
     -moz-border-radius-bottomright: inherit;
          border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px 5px 5px;
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out, -o-transform 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out, -o-transform 0.4s ease-in-out;
  z-index: 3; }

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 35px 10px 10px; } }

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
       -o-transform: translateY(100%);
          transform: translateY(100%); }

.plyr [data-plyr=airplay], .plyr [data-plyr=captions], .plyr [data-plyr=fullscreen], .plyr [data-plyr=pip] {
  display: none; }

.plyr--airplay-supported [data-plyr=airplay], .plyr--captions-enabled [data-plyr=captions], .plyr--fullscreen-enabled [data-plyr=fullscreen], .plyr--pip-supported [data-plyr=pip] {
  display: inline-block; }

.plyr__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  position: relative; }

.plyr__menu .plyr__control svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease, -o-transform 0.3s ease; }

.plyr__menu .plyr__control[aria-expanded=true] svg {
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg); }

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none; }

.plyr__menu__container {
  -webkit-animation: plyr-popup 0.2s ease;
     -moz-animation: plyr-popup 0.2s ease;
       -o-animation: plyr-popup 0.2s ease;
          animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  bottom: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4f5b5f;
  font-size: 16px;
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3; }

.plyr__menu__container > div {
  overflow: hidden;
  -webkit-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1); }

.plyr__menu__container::after {
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  content: '';
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0; }

.plyr__menu__container [role=menu] {
  padding: 7px; }

.plyr__menu__container [role=menuitem], .plyr__menu__container [role=menuitemradio] {
  margin-top: 2px; }

.plyr__menu__container [role=menuitem]:first-child, .plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0; }

.plyr__menu__container .plyr__control {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4f5b5f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  font-size: 14px;
  padding: 4px 11px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.plyr__menu__container .plyr__control > span {
  -webkit-box-align: inherit;
  -webkit-align-items: inherit;
     -moz-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  width: 100%; }

.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%); }

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px; }

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: rgba(79, 91, 95, 0.8);
  right: 5px; }

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor; }

.plyr__menu__container .plyr__control--back {
  font-weight: 500;
  margin: 7px;
  margin-bottom: 3px;
  padding-left: 28px;
  position: relative;
  width: -webkit-calc(100% - 14px);
  width: -moz-calc(100% - 14px);
  width: calc(100% - 14px); }

.plyr__menu__container .plyr__control--back::after {
  border-right-color: rgba(79, 91, 95, 0.8);
  left: 7px; }

.plyr__menu__container .plyr__control--back::before {
  background: #6E9143;
  -webkit-box-shadow: 0 1px 0 #fff;
     -moz-box-shadow: 0 1px 0 #fff;
          box-shadow: 0 1px 0 #fff;
  content: '';
  height: 1px;
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%; }

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor; }

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px; }

.plyr__menu__container .plyr__control[role=menuitemradio]::after, .plyr__menu__container .plyr__control[role=menuitemradio]::before {
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%; }

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: '';
  display: block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 16px; }

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
     -moz-transform: translateY(-50%) scale(0);
      -ms-transform: translateY(-50%) scale(0);
       -o-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, -o-transform 0.3s ease;
  -moz-transition: transform 0.3s ease, opacity 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease, -o-transform 0.3s ease;
  width: 6px; }

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #f6f6f6; }

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
     -moz-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
       -o-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1); }

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(0, 0, 0, 0.1); }

.plyr__menu__container .plyr__menu__value {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none; }

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  -webkit-border-radius: 26px;
     -moz-border-radius: 26px;
          border-radius: 26px;
  color: #f6f6f6;
  display: block;
  height: 19px;
  margin: 0;
  padding: 0;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  width: 100%; }

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  border: 0;
  -webkit-border-radius: 2.5px;
          border-radius: 2.5px;
  height: 5px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(transparent));
  background-image: -webkit-linear-gradient(left, currentColor var(--value, 0), transparent var(--value, 0));
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0)); }

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #fff;
  border: 0;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
  height: 13px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  -webkit-appearance: none;
  margin-top: -4px; }

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  -moz-border-radius: 2.5px;
       border-radius: 2.5px;
  height: 5px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  -moz-user-select: none;
  user-select: none; }

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  border: 0;
  -moz-border-radius: 100%;
       border-radius: 100%;
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
       box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
  height: 13px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px; }

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  -moz-border-radius: 2.5px;
       border-radius: 2.5px;
  height: 5px; }

.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  color: transparent; }

.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none; }

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  background: currentColor; }

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
  height: 13px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  margin-top: 0; }

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none; }

.plyr--full-ui input[type=range]:focus {
  outline: 0; }

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0; }

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  -webkit-box-shadow: 0 0 0 5px #ddd;
          box-shadow: 0 0 0 5px #ddd;
  outline: 0; }

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  -moz-box-shadow: 0 0 0 5px #ddd;
       box-shadow: 0 0 0 5px #ddd;
  outline: 0; }

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 5px #ddd;
  outline: 0; }

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25); }

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25); }

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25); }

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5); }

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
       box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5); }

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5); }

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: #6E9143; }

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: #6E9143; }

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: #6E9143; }

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1); }

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
       box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1); }

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1); }

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -moz-background-size: contain;
    -o-background-size: contain;
       background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1; }

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1; }

.plyr__time {
  font-size: 14px; }

.plyr__time + .plyr__time::before {
  content: '\2044';
  margin-right: 10px; }

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none; } }

.plyr--video .plyr__time {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15); }

.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  bottom: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4f5b5f;
  font-size: 14px;
  font-weight: 500;
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  padding: 5px 7.5px;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(-50%, 10px) scale(0.8);
     -moz-transform: translate(-50%, 10px) scale(0.8);
      -ms-transform: translate(-50%, 10px) scale(0.8);
       -o-transform: translate(-50%, 10px) scale(0.8);
          transform: translate(-50%, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
     -moz-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
       -o-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  -o-transition: opacity 0.2s 0.1s ease, -o-transform 0.2s 0.1s ease;
  -moz-transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -moz-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease, -moz-transform 0.2s 0.1s ease, -o-transform 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2; }

.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: '';
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2; }

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip--visible {
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
     -moz-transform: translate(-50%, 0) scale(1);
      -ms-transform: translate(-50%, 0) scale(1);
       -o-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) scale(1); }

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3; }

.plyr__controls > .plyr__control:first-child .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
     -moz-transform: translate(0, 10px) scale(0.8);
      -ms-transform: translate(0, 10px) scale(0.8);
       -o-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 0 100%;
     -moz-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
       -o-transform-origin: 0 100%;
          transform-origin: 0 100%; }

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: 16px; }

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
     -moz-transform: translate(0, 10px) scale(0.8);
      -ms-transform: translate(0, 10px) scale(0.8);
       -o-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 100% 100%;
     -moz-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
       -o-transform-origin: 100% 100%;
          transform-origin: 100% 100%; }

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  -webkit-transform: translateX(50%);
     -moz-transform: translateX(50%);
      -ms-transform: translateX(50%);
       -o-transform: translateX(50%);
          transform: translateX(50%); }

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  -webkit-transform: translate(0, 0) scale(1);
     -moz-transform: translate(0, 0) scale(1);
      -ms-transform: translate(0, 0) scale(1);
       -o-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1); }

.plyr--video {
  background: #000;
  overflow: hidden; }

.plyr--video.plyr--menu-open {
  overflow: visible; }

.plyr__video-wrapper {
  background: #000;
  -webkit-border-radius: inherit;
     -moz-border-radius: inherit;
          border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: 0; }

.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
  height: 0;
  padding-bottom: 56.25%; }

.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  -webkit-transform: translateY(-38.28125%);
     -moz-transform: translateY(-38.28125%);
      -ms-transform: translateY(-38.28125%);
       -o-transform: translateY(-38.28125%);
          transform: translateY(-38.28125%); }

.plyr__progress {
  left: 6.5px;
  margin-right: 13px;
  position: relative; }

.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: -6.5px;
  margin-right: -6.5px;
  width: -webkit-calc(100% + 13px);
  width: -moz-calc(100% + 13px);
  width: calc(100% + 13px); }

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2; }

.plyr__progress .plyr__tooltip {
  font-size: 14px;
  left: 0; }

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px;
  height: 5px;
  left: 0;
  margin-top: -2.5px;
  padding: 0;
  position: absolute;
  top: 50%; }

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0; }

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  -webkit-border-radius: 100px;
          border-radius: 100px;
  min-width: 5px;
  -webkit-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease; }

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  -moz-border-radius: 100px;
       border-radius: 100px;
  min-width: 5px;
  -webkit-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease; }

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -webkit-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease; }

.plyr--video .plyr__progress__buffer {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.25); }

.plyr--audio .plyr__progress__buffer {
  color: #6E9143; }

.plyr--loading .plyr__progress__buffer {
  -webkit-animation: plyr-progress 1s linear infinite;
     -moz-animation: plyr-progress 1s linear infinite;
       -o-animation: plyr-progress 1s linear infinite;
          animation: plyr-progress 1s linear infinite;
  background-image: -webkit-linear-gradient(135deg, rgba(47, 52, 61, 0.6) 25%, transparent 25%, transparent 50%, rgba(47, 52, 61, 0.6) 50%, rgba(47, 52, 61, 0.6) 75%, transparent 75%, transparent);
  background-image: -moz- oldlinear-gradient(135deg, rgba(47, 52, 61, 0.6) 25%, transparent 25%, transparent 50%, rgba(47, 52, 61, 0.6) 50%, rgba(47, 52, 61, 0.6) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(135deg, rgba(47, 52, 61, 0.6) 25%, transparent 25%, transparent 50%, rgba(47, 52, 61, 0.6) 50%, rgba(47, 52, 61, 0.6) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(47, 52, 61, 0.6) 25%, transparent 25%, transparent 50%, rgba(47, 52, 61, 0.6) 50%, rgba(47, 52, 61, 0.6) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  -moz-background-size: 25px 25px;
    -o-background-size: 25px 25px;
       background-size: 25px 25px;
  color: transparent; }

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25); }

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: #6E9143; }

.plyr__volume {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative; }

.plyr__volume input[type=range] {
  margin-left: 5px;
  position: relative;
  z-index: 2; }

@media (min-width: 480px) {
  .plyr__volume {
    max-width: 90px; } }

@media (min-width: 768px) {
  .plyr__volume {
    max-width: 110px; } }

.plyr--is-ios .plyr__volume {
  display: none !important; }

.plyr--is-ios.plyr--vimeo [data-plyr=mute] {
  display: none !important; }

.plyr:-webkit-full-screen {
  background: #000;
  -webkit-border-radius: 0 !important;
          border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%; }

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%; }

.plyr:-moz-full-screen {
  background: #000;
  -moz-border-radius: 0 !important;
       border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%; }

.plyr:fullscreen {
  background: #000;
  -webkit-border-radius: 0 !important;
     -moz-border-radius: 0 !important;
          border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%; }

.plyr:-webkit-full-screen video {
  height: 100%; }

.plyr:-ms-fullscreen video {
  height: 100%; }

.plyr:-moz-full-screen video {
  height: 100%; }

.plyr:fullscreen video {
  height: 100%; }

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%; }

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%; }

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%; }

.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%; }

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%); }

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
       transform: translateY(-50%); }

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%); }

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block; }

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block; }

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block; }

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block; }

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none; }

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none; }

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none; }

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none; }

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none; }

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none; }

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none; }

.plyr:fullscreen.plyr--hide-controls {
  cursor: none; }

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px; }
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px; }
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px; }
  .plyr:fullscreen .plyr__captions {
    font-size: 21px; } }

.plyr:-webkit-full-screen {
  background: #000;
  -webkit-border-radius: 0 !important;
          border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%; }

.plyr:-webkit-full-screen video {
  height: 100%; }

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%; }

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block; }

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none; }

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none; }

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px; } }

.plyr:-moz-full-screen {
  background: #000;
  -moz-border-radius: 0 !important;
       border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%; }

.plyr:-moz-full-screen video {
  height: 100%; }

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%; }

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
       transform: translateY(-50%); }

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block; }

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none; }

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none; }

@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px; } }

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%; }

.plyr:-ms-fullscreen video {
  height: 100%; }

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%; }

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%); }

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block; }

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none; }

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none; }

@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px; } }

.plyr--fullscreen-fallback {
  background: #000;
  -webkit-border-radius: 0 !important;
     -moz-border-radius: 0 !important;
          border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000; }

.plyr--fullscreen-fallback video {
  height: 100%; }

.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  width: 100%; }

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%); }

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block; }

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none; }

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none; }

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px; } }

.plyr__ads {
  -webkit-border-radius: inherit;
     -moz-border-radius: inherit;
          border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1; }

.plyr__ads > div, .plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%; }

.plyr__ads::after {
  background: rgba(47, 52, 61, 0.8);
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  bottom: 10px;
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  z-index: 3; }

.plyr__ads::after:empty {
  display: none; }

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  left: 0;
  margin: -2.5px 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3; }

.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  bottom: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(0, 10px) scale(0.8);
     -moz-transform: translate(0, 10px) scale(0.8);
      -ms-transform: translate(0, 10px) scale(0.8);
       -o-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
     -moz-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
       -o-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  -o-transition: opacity 0.2s 0.1s ease, -o-transform 0.2s 0.1s ease;
  -moz-transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -moz-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease, -moz-transform 0.2s 0.1s ease, -o-transform 0.2s 0.1s ease;
  z-index: 2; }

.plyr__preview-thumb--is-shown {
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
     -moz-transform: translate(0, 0) scale(1);
      -ms-transform: translate(0, 0) scale(1);
       -o-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1); }

.plyr__preview-thumb::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: '';
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2; }

.plyr__preview-thumb__image-container {
  background: #6E9143;
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 0; }

.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%; }

.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3; }

.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 3px 6px; }

.plyr__preview-scrubbing {
  bottom: 0;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1; }

.plyr__preview-scrubbing--is-shown {
  opacity: 1; }

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%; }

.plyr--no-transition {
  -webkit-transition: none !important;
  -o-transition: none !important;
  -moz-transition: none !important;
  transition: none !important; }

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.plyr [hidden] {
  display: none !important; }

.plyr--video {
  z-index: 9 !important; }

.plyr__video-embed iframe {
  /* this makes the ui clickable */
  z-index: 30; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-next, .slick-prev {
  width: 15%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  cursor: none;
  z-index: 1; }
  @media (max-width: 768px) {
    .slick-next, .slick-prev {
      width: 20%; } }

.slick-prev {
  left: 0;
  cursor: url("../images/l-arrow.png"), none; }

.slick-next {
  right: 0;
  cursor: url("../images/r-arrow.png") 70 0, none; }

/*!
 * Datepicker v1.0.7
 * https://fengyuanchen.github.io/datepicker
 *
 * Copyright 2014-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2019-02-19T12:18:01.828Z
 */
/* Grid */
/* color */
/* height */
.datepicker-container {
  background-color: #fff;
  direction: ltr;
  font-size: 12px;
  left: 0;
  line-height: 30px;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 210px;
  z-index: -1; }

.datepicker-container::before,
.datepicker-container::after {
  border: 5px solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  width: 0; }

.datepicker-dropdown {
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 3px 6px #ccc;
  -moz-box-shadow: 0 3px 6px #ccc;
       box-shadow: 0 3px 6px #ccc;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  position: absolute;
  z-index: 1; }

.datepicker-inline {
  position: static; }

.datepicker-top-left,
.datepicker-top-right {
  border-top-color: #6E9143; }

.datepicker-top-left::before,
.datepicker-top-left::after,
.datepicker-top-right::before,
.datepicker-top-right::after {
  border-top: 0;
  left: 10px;
  top: -5px; }

.datepicker-top-left::before,
.datepicker-top-right::before {
  border-bottom-color: #6E9143; }

.datepicker-top-left::after,
.datepicker-top-right::after {
  border-bottom-color: #fff;
  top: -4px; }

.datepicker-bottom-left,
.datepicker-bottom-right {
  border-bottom-color: #6E9143; }

.datepicker-bottom-left::before,
.datepicker-bottom-left::after,
.datepicker-bottom-right::before,
.datepicker-bottom-right::after {
  border-bottom: 0;
  bottom: -5px;
  left: 10px; }

.datepicker-bottom-left::before,
.datepicker-bottom-right::before {
  border-top-color: #6E9143; }

.datepicker-bottom-left::after,
.datepicker-bottom-right::after {
  border-top-color: #fff;
  bottom: -4px; }

.datepicker-top-right::before,
.datepicker-top-right::after,
.datepicker-bottom-right::before,
.datepicker-bottom-right::after {
  left: auto;
  right: 10px; }

.datepicker-panel > ul {
  margin: 0;
  padding: 0;
  width: 102%; }

.datepicker-panel > ul::before,
.datepicker-panel > ul::after {
  content: " ";
  display: table; }

.datepicker-panel > ul::after {
  clear: both; }

.datepicker-panel > ul > li {
  background-color: #fff;
  cursor: pointer;
  float: left;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 30px; }

.datepicker-panel > ul > li:hover {
  background-color: #E9E9E9; }

.datepicker-panel > ul > li.muted,
.datepicker-panel > ul > li.muted:hover {
  color: #999; }

.datepicker-panel > ul > li.highlighted {
  background-color: #E9E9E9; }

.datepicker-panel > ul > li.highlighted:hover {
  background-color: #cce5ff; }

.datepicker-panel > ul > li.picked,
.datepicker-panel > ul > li.picked:hover {
  color: white;
  background-color: #6E9143; }

.datepicker-panel > ul > li.disabled,
.datepicker-panel > ul > li.disabled:hover {
  background-color: #E9E9E9;
  color: #ccc;
  cursor: default; }

.datepicker-panel > ul > li.disabled.highlighted,
.datepicker-panel > ul > li.disabled:hover.highlighted {
  background-color: #E9E9E9; }

.datepicker-panel > ul > li[data-view="years prev"],
.datepicker-panel > ul > li[data-view="year prev"],
.datepicker-panel > ul > li[data-view="month prev"],
.datepicker-panel > ul > li[data-view="years next"],
.datepicker-panel > ul > li[data-view="year next"],
.datepicker-panel > ul > li[data-view="month next"],
.datepicker-panel > ul > li[data-view="next"] {
  font-size: 18px; }

.datepicker-panel > ul > li[data-view="years current"],
.datepicker-panel > ul > li[data-view="year current"],
.datepicker-panel > ul > li[data-view="month current"] {
  width: 150px; }

.datepicker-panel > ul[data-view="years"] > li,
.datepicker-panel > ul[data-view="months"] > li {
  height: 52.5px;
  line-height: 52.5px;
  width: 69.5px; }

.datepicker-panel > ul[data-view="week"] > li,
.datepicker-panel > ul[data-view="week"] > li:hover {
  background-color: #fff;
  cursor: default; }

.datepicker-hide {
  display: none; }

.datepicker-panel > ul > li.highlighted {
  color: black;
  background-color: white !important; }

.datepicker-panel > ul > li.highlighted:hover {
  color: black;
  background-color: #E9E9E9 !important; }

.iti {
  position: relative;
  display: inline-block; }

.iti * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box; }

.iti__hide {
  display: none; }

.iti__v-hide {
  visibility: hidden; }

.iti input, .iti input[type=text], .iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0; }

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px; }

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 12px 0 17px; }

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555; }

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555; }

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; }

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px; }

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal; } }

.iti__flag-box {
  display: inline-block;
  width: 20px; }

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC; }

.iti__country {
  padding: 5px 10px;
  outline: none; }

.iti__dial-code {
  color: #999; }

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05); }

.iti__flag-box, .iti__country-name, .iti__dial-code {
  vertical-align: middle; }

.iti__flag-box, .iti__country-name {
  margin-right: 6px; }

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 72px;
  margin-left: 0; }

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0; }

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer; }

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05); }

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default; }

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent; }

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05); }

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px; }

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px; }

.iti--container:hover {
  cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }

.iti__flag.iti__be {
  width: 18px; }

.iti__flag.iti__ch {
  width: 15px; }

.iti__flag.iti__mc {
  width: 19px; }

.iti__flag.iti__ne {
  width: 18px; }

.iti__flag.iti__np {
  width: 13px; }

.iti__flag.iti__va {
  width: 15px; }

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .iti__flag {
    -moz-background-size: 5652px 15px;
      -o-background-size: 5652px 15px;
         background-size: 5652px 15px; } }

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px; }

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px; }

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px; }

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px; }

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px; }

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px; }

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px; }

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px; }

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px; }

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px; }

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px; }

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px; }

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px; }

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px; }

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px; }

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px; }

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px; }

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px; }

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px; }

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px; }

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px; }

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px; }

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px; }

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px; }

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px; }

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px; }

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px; }

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px; }

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px; }

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px; }

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px; }

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px; }

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px; }

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px; }

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px; }

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px; }

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px; }

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px; }

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px; }

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px; }

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px; }

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px; }

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px; }

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px; }

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px; }

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px; }

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px; }

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px; }

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px; }

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px; }

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px; }

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px; }

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px; }

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px; }

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px; }

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px; }

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px; }

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px; }

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px; }

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px; }

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px; }

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px; }

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px; }

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px; }

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px; }

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px; }

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px; }

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px; }

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px; }

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px; }

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px; }

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px; }

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px; }

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px; }

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px; }

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px; }

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px; }

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px; }

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px; }

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px; }

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px; }

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px; }

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px; }

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px; }

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px; }

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px; }

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px; }

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px; }

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px; }

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px; }

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px; }

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px; }

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px; }

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px; }

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px; }

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px; }

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px; }

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px; }

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px; }

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px; }

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px; }

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px; }

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px; }

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px; }

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px; }

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px; }

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px; }

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px; }

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px; }

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px; }

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px; }

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px; }

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px; }

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px; }

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px; }

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px; }

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px; }

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px; }

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px; }

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px; }

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px; }

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px; }

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px; }

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px; }

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px; }

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px; }

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px; }

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px; }

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px; }

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px; }

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px; }

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px; }

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px; }

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px; }

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px; }

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px; }

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px; }

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px; }

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px; }

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px; }

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px; }

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px; }

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px; }

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px; }

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px; }

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px; }

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px; }

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px; }

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px; }

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px; }

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px; }

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px; }

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px; }

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px; }

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px; }

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px; }

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px; }

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px; }

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px; }

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px; }

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px; }

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px; }

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px; }

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px; }

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px; }

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px; }

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px; }

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px; }

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px; }

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px; }

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px; }

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px; }

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px; }

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px; }

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px; }

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px; }

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px; }

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px; }

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px; }

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px; }

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px; }

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px; }

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px; }

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px; }

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px; }

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px; }

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px; }

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px; }

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px; }

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px; }

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px; }

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px; }

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px; }

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px; }

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px; }

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px; }

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px; }

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px; }

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px; }

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px; }

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px; }

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px; }

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px; }

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px; }

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px; }

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px; }

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px; }

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px; }

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px; }

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px; }

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px; }

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px; }

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px; }

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px; }

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px; }

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px; }

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px; }

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px; }

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px; }

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px; }

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px; }

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px; }

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px; }

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px; }

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px; }

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px; }

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px; }

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px; }

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px; }

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px; }

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px; }

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px; }

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px; }

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px; }

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px; }

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px; }

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px; }

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px; }

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px; }

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px; }

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px; }

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px; }

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px; }

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px; }

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px; }

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px; }

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px; }

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px; }

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px; }

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px; }

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px; }

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px; }

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px; }

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px; }

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px; }

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px; }

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px; }

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  -webkit-box-shadow: 0px 0px 1px 0px #888;
     -moz-box-shadow: 0px 0px 1px 0px #888;
          box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../images/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../images/flags@2x.png"); } }

.iti__flag.iti__np {
  background-color: transparent; }

/*!
 * animsition v4.0.2
 * A simple and easy jQuery plugin for CSS animated page transitions.
 * http://blivesta.github.io/animsition
 * License : MIT
 * Author : blivesta (http://blivesta.com/)
 */
.animsition,
.animsition-overlay {
  position: relative;
  opacity: 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
       animation-fill-mode: both; }
  .animsition _::-webkit-full-page-media, .animsition _:future, .animsition :root .safari_only,
  .animsition-overlay _::-webkit-full-page-media,
  .animsition-overlay _:future,
  .animsition-overlay :root .safari_only {
    opacity: 1; }

/**
  * overlay option
  */
.animsition-overlay-slide {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ddd; }

/* loading option */
.animsition-loading,
.animsition-loading:after {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  z-index: 100; }

.animsition-loading {
  background-color: transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  border-left: 5px solid #eee;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
       transform: translateZ(0);
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
       animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
       animation-timing-function: linear;
  -webkit-animation-duration: .8s;
  -moz-animation-duration: .8s;
    -o-animation-duration: .8s;
       animation-duration: .8s;
  -webkit-animation-name: animsition-loading;
  -moz-animation-name: animsition-loading;
    -o-animation-name: animsition-loading;
       animation-name: animsition-loading; }

@-webkit-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-moz-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
         transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
         transform: rotate(360deg); } }

@-o-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
       transform: rotate(360deg); } }

@keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
         transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
      -o-transform: rotate(360deg);
         transform: rotate(360deg); } }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fade-in {
  -webkit-animation-name: fade-in;
  -moz-animation-name: fade-in;
    -o-animation-name: fade-in;
       animation-name: fade-in; }

@-webkit-keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-moz-keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-o-keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fade-out {
  -webkit-animation-name: fade-out;
  -moz-animation-name: fade-out;
    -o-animation-name: fade-out;
       animation-name: fade-out; }

@-webkit-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-moz-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
         transform: translateY(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-o-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    -o-transform: translateY(500px);
       transform: translateY(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
      -o-transform: translateY(500px);
         transform: translateY(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

.fade-in-up {
  -webkit-animation-name: fade-in-up;
  -moz-animation-name: fade-in-up;
    -o-animation-name: fade-in-up;
       animation-name: fade-in-up; }

@-webkit-keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; } }

@-moz-keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-500px);
    -moz-transform: translateY(-500px);
         transform: translateY(-500px);
    opacity: 0; } }

@-o-keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-500px);
    -o-transform: translateY(-500px);
       transform: translateY(-500px);
    opacity: 0; } }

@keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-500px);
    -moz-transform: translateY(-500px);
      -o-transform: translateY(-500px);
         transform: translateY(-500px);
    opacity: 0; } }

.fade-out-up {
  -webkit-animation-name: fade-out-up;
  -moz-animation-name: fade-out-up;
    -o-animation-name: fade-out-up;
       animation-name: fade-out-up; }

@-webkit-keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-moz-keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
         transform: translateY(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-o-keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
    -o-transform: translateY(100px);
       transform: translateY(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
      -o-transform: translateY(100px);
         transform: translateY(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

.fade-in-up-sm {
  -webkit-animation-name: fade-in-up-sm;
  -moz-animation-name: fade-in-up-sm;
    -o-animation-name: fade-in-up-sm;
       animation-name: fade-in-up-sm; }

@-webkit-keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; } }

@-moz-keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
         transform: translateY(-100px);
    opacity: 0; } }

@-o-keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-100px);
    -o-transform: translateY(-100px);
       transform: translateY(-100px);
    opacity: 0; } }

@keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
      -o-transform: translateY(-100px);
         transform: translateY(-100px);
    opacity: 0; } }

.fade-out-up-sm {
  -webkit-animation-name: fade-out-up-sm;
  -moz-animation-name: fade-out-up-sm;
    -o-animation-name: fade-out-up-sm;
       animation-name: fade-out-up-sm; }

@-webkit-keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-moz-keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
    -moz-transform: translateY(1000px);
         transform: translateY(1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-o-keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
    -o-transform: translateY(1000px);
       transform: translateY(1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
    -moz-transform: translateY(1000px);
      -o-transform: translateY(1000px);
         transform: translateY(1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

.fade-in-up-lg {
  -webkit-animation-name: fade-in-up-lg;
  -moz-animation-name: fade-in-up-lg;
    -o-animation-name: fade-in-up-lg;
       animation-name: fade-in-up-lg; }

@-webkit-keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; } }

@-moz-keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-1000px);
    -moz-transform: translateY(-1000px);
         transform: translateY(-1000px);
    opacity: 0; } }

@-o-keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-1000px);
    -o-transform: translateY(-1000px);
       transform: translateY(-1000px);
    opacity: 0; } }

@keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-1000px);
    -moz-transform: translateY(-1000px);
      -o-transform: translateY(-1000px);
         transform: translateY(-1000px);
    opacity: 0; } }

.fade-out-up-lg {
  -webkit-animation-name: fade-out-up-lg;
  -moz-animation-name: fade-out-up-lg;
    -o-animation-name: fade-out-up-lg;
       animation-name: fade-out-up-lg; }

@-webkit-keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-moz-keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    -moz-transform: translateY(-500px);
         transform: translateY(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-o-keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    -o-transform: translateY(-500px);
       transform: translateY(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    -moz-transform: translateY(-500px);
      -o-transform: translateY(-500px);
         transform: translateY(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

.fade-in-down {
  -webkit-animation-name: fade-in-down;
  -moz-animation-name: fade-in-down;
    -o-animation-name: fade-in-down;
       animation-name: fade-in-down; }

@-webkit-keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; } }

@-moz-keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
         transform: translateY(500px);
    opacity: 0; } }

@-o-keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(500px);
    -o-transform: translateY(500px);
       transform: translateY(500px);
    opacity: 0; } }

@keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
      -o-transform: translateY(500px);
         transform: translateY(500px);
    opacity: 0; } }

.fade-out-down {
  -webkit-animation-name: fade-out-down;
  -moz-animation-name: fade-out-down;
    -o-animation-name: fade-out-down;
       animation-name: fade-out-down; }

@-webkit-keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-moz-keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
         transform: translateY(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-o-keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
    -o-transform: translateY(-100px);
       transform: translateY(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
      -o-transform: translateY(-100px);
         transform: translateY(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

.fade-in-down-sm {
  -webkit-animation-name: fade-in-down-sm;
  -moz-animation-name: fade-in-down-sm;
    -o-animation-name: fade-in-down-sm;
       animation-name: fade-in-down-sm; }

@-webkit-keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; } }

@-moz-keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
         transform: translateY(100px);
    opacity: 0; } }

@-o-keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(100px);
    -o-transform: translateY(100px);
       transform: translateY(100px);
    opacity: 0; } }

@keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
      -o-transform: translateY(100px);
         transform: translateY(100px);
    opacity: 0; } }

.fade-out-down-sm {
  -webkit-animation-name: fade-out-down-sm;
  -moz-animation-name: fade-out-down-sm;
    -o-animation-name: fade-out-down-sm;
       animation-name: fade-out-down-sm; }

@-webkit-keyframes fade-in-down-lg {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-moz-keyframes fade-in-down-lg {
  0% {
    -webkit-transform: translateY(-1000px);
    -moz-transform: translateY(-1000px);
         transform: translateY(-1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

@-o-keyframes fade-in-down-lg {
  0% {
    -webkit-transform: translateY(-1000px);
    -o-transform: translateY(-1000px);
       transform: translateY(-1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-down-lg {
  0% {
    -webkit-transform: translateY(-1000px);
    -moz-transform: translateY(-1000px);
      -o-transform: translateY(-1000px);
         transform: translateY(-1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; } }

.fade-in-down-lg {
  -webkit-animation-name: fade-in-down;
  -moz-animation-name: fade-in-down;
    -o-animation-name: fade-in-down;
       animation-name: fade-in-down; }

@-webkit-keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; } }

@-moz-keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(1000px);
    -moz-transform: translateY(1000px);
         transform: translateY(1000px);
    opacity: 0; } }

@-o-keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(1000px);
    -o-transform: translateY(1000px);
       transform: translateY(1000px);
    opacity: 0; } }

@keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(1000px);
    -moz-transform: translateY(1000px);
      -o-transform: translateY(1000px);
         transform: translateY(1000px);
    opacity: 0; } }

.fade-out-down-lg {
  -webkit-animation-name: fade-out-down-lg;
  -moz-animation-name: fade-out-down-lg;
    -o-animation-name: fade-out-down-lg;
       animation-name: fade-out-down-lg; }

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    -moz-transform: translateX(-500px);
         transform: translateX(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-o-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    -o-transform: translateX(-500px);
       transform: translateX(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    -moz-transform: translateX(-500px);
      -o-transform: translateX(-500px);
         transform: translateX(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

.fade-in-left {
  -webkit-animation-name: fade-in-left;
  -moz-animation-name: fade-in-left;
    -o-animation-name: fade-in-left;
       animation-name: fade-in-left; }

@-webkit-keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
    opacity: 0; } }

@-moz-keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
         transform: translateX(-300px);
    opacity: 0; } }

@-o-keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-300px);
    -o-transform: translateX(-300px);
       transform: translateX(-300px);
    opacity: 0; } }

@keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
      -o-transform: translateX(-300px);
         transform: translateX(-300px);
    opacity: 0; } }

.fade-out-left {
  -webkit-animation-name: fade-out-left;
  -moz-animation-name: fade-out-left;
    -o-animation-name: fade-out-left;
       animation-name: fade-out-left; }

@-webkit-keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
         transform: translateX(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-o-keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
    -o-transform: translateX(-100px);
       transform: translateX(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
      -o-transform: translateX(-100px);
         transform: translateX(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

.fade-in-left-sm {
  -webkit-animation-name: fade-in-left-sm;
  -moz-animation-name: fade-in-left-sm;
    -o-animation-name: fade-in-left-sm;
       animation-name: fade-in-left-sm; }

@-webkit-keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; } }

@-moz-keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
         transform: translateX(-100px);
    opacity: 0; } }

@-o-keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-100px);
    -o-transform: translateX(-100px);
       transform: translateX(-100px);
    opacity: 0; } }

@keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
      -o-transform: translateX(-100px);
         transform: translateX(-100px);
    opacity: 0; } }

.fade-out-left-sm {
  -webkit-animation-name: fade-out-left-sm;
  -moz-animation-name: fade-out-left-sm;
    -o-animation-name: fade-out-left-sm;
       animation-name: fade-out-left-sm; }

@-webkit-keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    -moz-transform: translateX(-1500px);
         transform: translateX(-1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-o-keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    -o-transform: translateX(-1500px);
       transform: translateX(-1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    -moz-transform: translateX(-1500px);
      -o-transform: translateX(-1500px);
         transform: translateX(-1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

.fade-in-left-lg {
  -webkit-animation-name: fade-in-left-lg;
  -moz-animation-name: fade-in-left-lg;
    -o-animation-name: fade-in-left-lg;
       animation-name: fade-in-left-lg; }

@-webkit-keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; } }

@-moz-keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-1500px);
    -moz-transform: translateX(-1500px);
         transform: translateX(-1500px);
    opacity: 0; } }

@-o-keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-1500px);
    -o-transform: translateX(-1500px);
       transform: translateX(-1500px);
    opacity: 0; } }

@keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-1500px);
    -moz-transform: translateX(-1500px);
      -o-transform: translateX(-1500px);
         transform: translateX(-1500px);
    opacity: 0; } }

.fade-out-left-lg {
  -webkit-animation-name: fade-out-left-lg;
  -moz-animation-name: fade-out-left-lg;
    -o-animation-name: fade-out-left-lg;
       animation-name: fade-out-left-lg; }

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    -moz-transform: translateX(500px);
         transform: translateX(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-o-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    -o-transform: translateX(500px);
       transform: translateX(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    -moz-transform: translateX(500px);
      -o-transform: translateX(500px);
         transform: translateX(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

.fade-in-right {
  -webkit-animation-name: fade-in-right;
  -moz-animation-name: fade-in-right;
    -o-animation-name: fade-in-right;
       animation-name: fade-in-right; }

@-webkit-keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; } }

@-moz-keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(500px);
    -moz-transform: translateX(500px);
         transform: translateX(500px);
    opacity: 0; } }

@-o-keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(500px);
    -o-transform: translateX(500px);
       transform: translateX(500px);
    opacity: 0; } }

@keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(500px);
    -moz-transform: translateX(500px);
      -o-transform: translateX(500px);
         transform: translateX(500px);
    opacity: 0; } }

.fade-out-right {
  -webkit-animation-name: fade-out-right;
  -moz-animation-name: fade-out-right;
    -o-animation-name: fade-out-right;
       animation-name: fade-out-right; }

@-webkit-keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
         transform: translateX(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-o-keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
    -o-transform: translateX(100px);
       transform: translateX(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
      -o-transform: translateX(100px);
         transform: translateX(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

.fade-in-right-sm {
  -webkit-animation-name: fade-in-right-sm;
  -moz-animation-name: fade-in-right-sm;
    -o-animation-name: fade-in-right-sm;
       animation-name: fade-in-right-sm; }

@-webkit-keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; } }

@-moz-keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
         transform: translateX(100px);
    opacity: 0; } }

@-o-keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100px);
    -o-transform: translateX(100px);
       transform: translateX(100px);
    opacity: 0; } }

@keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
      -o-transform: translateX(100px);
         transform: translateX(100px);
    opacity: 0; } }

.fade-out-right-sm {
  -webkit-animation-name: fade-out-right-sm;
  -moz-animation-name: fade-out-right-sm;
    -o-animation-name: fade-out-right-sm;
       animation-name: fade-out-right-sm; }

@-webkit-keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-moz-keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    -moz-transform: translateX(1500px);
         transform: translateX(1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

@-o-keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    -o-transform: translateX(1500px);
       transform: translateX(1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    -moz-transform: translateX(1500px);
      -o-transform: translateX(1500px);
         transform: translateX(1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; } }

.fade-in-right-lg {
  -webkit-animation-name: fade-in-right-lg;
  -moz-animation-name: fade-in-right-lg;
    -o-animation-name: fade-in-right-lg;
       animation-name: fade-in-right-lg; }

@-webkit-keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; } }

@-moz-keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(1500px);
    -moz-transform: translateX(1500px);
         transform: translateX(1500px);
    opacity: 0; } }

@-o-keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(1500px);
    -o-transform: translateX(1500px);
       transform: translateX(1500px);
    opacity: 0; } }

@keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
      -o-transform: translateX(0);
         transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(1500px);
    -moz-transform: translateX(1500px);
      -o-transform: translateX(1500px);
         transform: translateX(1500px);
    opacity: 0; } }

.fade-out-right-lg {
  -webkit-animation-name: fade-out-right-lg;
  -moz-animation-name: fade-out-right-lg;
    -o-animation-name: fade-out-right-lg;
       animation-name: fade-out-right-lg; }

@-webkit-keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; } }

@-moz-keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
         transform: rotate(-90deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; } }

@-o-keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
       transform: rotate(-90deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 1; } }

@keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
      -o-transform: rotate(-90deg);
         transform: rotate(-90deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
      -o-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; } }

.rotate-in {
  -webkit-animation-name: rotate-in;
  -moz-animation-name: rotate-in;
    -o-animation-name: rotate-in;
       animation-name: rotate-in; }

@-webkit-keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; } }

@-moz-keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
         transform: rotate(90deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; } }

@-o-keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
       transform: rotate(90deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 0; } }

@keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
      -o-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
      -o-transform: rotate(90deg);
         transform: rotate(90deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; } }

.rotate-out {
  -webkit-animation-name: rotate-out;
  -moz-animation-name: rotate-out;
    -o-animation-name: rotate-out;
       animation-name: rotate-out; }

@-webkit-keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; } }

@-moz-keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
         transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; } }

@-o-keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 1; } }

@keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
         transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
      -o-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; } }

.rotate-in-sm {
  -webkit-animation-name: rotate-in-sm;
  -moz-animation-name: rotate-in-sm;
    -o-animation-name: rotate-in-sm;
       animation-name: rotate-in-sm; }

@-webkit-keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; } }

@-moz-keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
         transform: rotate(45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; } }

@-o-keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
       transform: rotate(45deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 0; } }

@keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
      -o-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
         transform: rotate(45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; } }

.rotate-out-sm {
  -webkit-animation-name: rotate-out-sm;
  -moz-animation-name: rotate-out-sm;
    -o-animation-name: rotate-out-sm;
       animation-name: rotate-out-sm; }

@-webkit-keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; } }

@-moz-keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
         transform: rotate(-180deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; } }

@-o-keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
       transform: rotate(-180deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 1; } }

@keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
      -o-transform: rotate(-180deg);
         transform: rotate(-180deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
      -o-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; } }

.rotate-in-lg {
  -webkit-animation-name: rotate-in-lg;
  -moz-animation-name: rotate-in-lg;
    -o-animation-name: rotate-in-lg;
       animation-name: rotate-in-lg; }

@-webkit-keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; } }

@-moz-keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
         transform: rotate(180deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; } }

@-o-keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
       transform: rotate(180deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
       transform-origin: center center;
    opacity: 0; } }

@keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
      -o-transform: rotate(0);
         transform: rotate(0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
      -o-transform: rotate(180deg);
         transform: rotate(180deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
      -o-transform-origin: center center;
         transform-origin: center center;
    opacity: 0; } }

.rotate-out-lg {
  -webkit-animation-name: rotate-out-lg;
  -moz-animation-name: rotate-out-lg;
    -o-animation-name: rotate-out-lg;
       animation-name: rotate-out-lg; }

@-webkit-keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; } }

@-moz-keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    -moz-transform: perspective(550px) rotateX(90deg);
         transform: perspective(550px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    -moz-transform: perspective(550px) rotateX(0deg);
         transform: perspective(550px) rotateX(0deg);
    opacity: 1; } }

@-o-keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; } }

@keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    -moz-transform: perspective(550px) rotateX(90deg);
         transform: perspective(550px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    -moz-transform: perspective(550px) rotateX(0deg);
         transform: perspective(550px) rotateX(0deg);
    opacity: 1; } }

.flip-in-x {
  -webkit-animation-name: flip-in-x;
  -moz-animation-name: flip-in-x;
    -o-animation-name: flip-in-x;
       animation-name: flip-in-x;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; } }

@-moz-keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    -moz-transform: perspective(550px) rotateX(0deg);
         transform: perspective(550px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    -moz-transform: perspective(550px) rotateX(90deg);
         transform: perspective(550px) rotateX(90deg);
    opacity: 0; } }

@-o-keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; } }

@keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    -moz-transform: perspective(550px) rotateX(0deg);
         transform: perspective(550px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    -moz-transform: perspective(550px) rotateX(90deg);
         transform: perspective(550px) rotateX(90deg);
    opacity: 0; } }

.flip-out-x {
  -webkit-animation-name: flip-out-x;
  -moz-animation-name: flip-out-x;
    -o-animation-name: flip-out-x;
       animation-name: flip-out-x;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; } }

@-moz-keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    -moz-transform: perspective(100px) rotateX(90deg);
         transform: perspective(100px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    -moz-transform: perspective(100px) rotateX(0deg);
         transform: perspective(100px) rotateX(0deg);
    opacity: 1; } }

@-o-keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; } }

@keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    -moz-transform: perspective(100px) rotateX(90deg);
         transform: perspective(100px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    -moz-transform: perspective(100px) rotateX(0deg);
         transform: perspective(100px) rotateX(0deg);
    opacity: 1; } }

.flip-in-x-nr {
  -webkit-animation-name: flip-in-x-nr;
  -moz-animation-name: flip-in-x-nr;
    -o-animation-name: flip-in-x-nr;
       animation-name: flip-in-x-nr;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; } }

@-moz-keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    -moz-transform: perspective(100px) rotateX(0deg);
         transform: perspective(100px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    -moz-transform: perspective(100px) rotateX(90deg);
         transform: perspective(100px) rotateX(90deg);
    opacity: 0; } }

@-o-keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; } }

@keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    -moz-transform: perspective(100px) rotateX(0deg);
         transform: perspective(100px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    -moz-transform: perspective(100px) rotateX(90deg);
         transform: perspective(100px) rotateX(90deg);
    opacity: 0; } }

.flip-out-x-nr {
  -webkit-animation-name: flip-out-x-nr;
  -moz-animation-name: flip-out-x-nr;
    -o-animation-name: flip-out-x-nr;
       animation-name: flip-out-x-nr;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; } }

@-moz-keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    -moz-transform: perspective(1000px) rotateX(90deg);
         transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    -moz-transform: perspective(1000px) rotateX(0deg);
         transform: perspective(1000px) rotateX(0deg);
    opacity: 1; } }

@-o-keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; } }

@keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    -moz-transform: perspective(1000px) rotateX(90deg);
         transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    -moz-transform: perspective(1000px) rotateX(0deg);
         transform: perspective(1000px) rotateX(0deg);
    opacity: 1; } }

.flip-in-x-fr {
  -webkit-animation-name: flip-in-x-fr;
  -moz-animation-name: flip-in-x-fr;
    -o-animation-name: flip-in-x-fr;
       animation-name: flip-in-x-fr;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

@-moz-keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    -moz-transform: perspective(1000px) rotateX(0deg);
         transform: perspective(1000px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    -moz-transform: perspective(1000px) rotateX(90deg);
         transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

@-o-keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

@keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    -moz-transform: perspective(1000px) rotateX(0deg);
         transform: perspective(1000px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    -moz-transform: perspective(1000px) rotateX(90deg);
         transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

.flip-out-x-fr {
  -webkit-animation-name: flip-out-x-fr;
  -moz-animation-name: flip-out-x-fr;
    -o-animation-name: flip-out-x-fr;
       animation-name: flip-out-x-fr;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; } }

@-moz-keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    -moz-transform: perspective(550px) rotateY(90deg);
         transform: perspective(550px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    -moz-transform: perspective(550px) rotateY(0deg);
         transform: perspective(550px) rotateY(0deg);
    opacity: 1; } }

@-o-keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; } }

@keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    -moz-transform: perspective(550px) rotateY(90deg);
         transform: perspective(550px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    -moz-transform: perspective(550px) rotateY(0deg);
         transform: perspective(550px) rotateY(0deg);
    opacity: 1; } }

.flip-in-y {
  -webkit-animation-name: flip-in-y;
  -moz-animation-name: flip-in-y;
    -o-animation-name: flip-in-y;
       animation-name: flip-in-y;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; } }

@-moz-keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    -moz-transform: perspective(550px) rotateY(0deg);
         transform: perspective(550px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    -moz-transform: perspective(550px) rotateY(90deg);
         transform: perspective(550px) rotateY(90deg);
    opacity: 0; } }

@-o-keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; } }

@keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    -moz-transform: perspective(550px) rotateY(0deg);
         transform: perspective(550px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    -moz-transform: perspective(550px) rotateY(90deg);
         transform: perspective(550px) rotateY(90deg);
    opacity: 0; } }

.flip-out-y {
  -webkit-animation-name: flip-out-y;
  -moz-animation-name: flip-out-y;
    -o-animation-name: flip-out-y;
       animation-name: flip-out-y;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; } }

@-moz-keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    -moz-transform: perspective(100px) rotateY(90deg);
         transform: perspective(100px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    -moz-transform: perspective(100px) rotateY(0deg);
         transform: perspective(100px) rotateY(0deg);
    opacity: 1; } }

@-o-keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; } }

@keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    -moz-transform: perspective(100px) rotateY(90deg);
         transform: perspective(100px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    -moz-transform: perspective(100px) rotateY(0deg);
         transform: perspective(100px) rotateY(0deg);
    opacity: 1; } }

.flip-in-y-nr {
  -webkit-animation-name: flip-in-y-nr;
  -moz-animation-name: flip-in-y-nr;
    -o-animation-name: flip-in-y-nr;
       animation-name: flip-in-y-nr;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; } }

@-moz-keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    -moz-transform: perspective(100px) rotateY(0deg);
         transform: perspective(100px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    -moz-transform: perspective(100px) rotateY(90deg);
         transform: perspective(100px) rotateY(90deg);
    opacity: 0; } }

@-o-keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; } }

@keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    -moz-transform: perspective(100px) rotateY(0deg);
         transform: perspective(100px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    -moz-transform: perspective(100px) rotateY(90deg);
         transform: perspective(100px) rotateY(90deg);
    opacity: 0; } }

.flip-out-y-nr {
  -webkit-animation-name: flip-out-y-nr;
  -moz-animation-name: flip-out-y-nr;
    -o-animation-name: flip-out-y-nr;
       animation-name: flip-out-y-nr;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; } }

@-moz-keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    -moz-transform: perspective(1000px) rotateY(90deg);
         transform: perspective(1000px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    -moz-transform: perspective(1000px) rotateY(0deg);
         transform: perspective(1000px) rotateY(0deg);
    opacity: 1; } }

@-o-keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; } }

@keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    -moz-transform: perspective(1000px) rotateY(90deg);
         transform: perspective(1000px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    -moz-transform: perspective(1000px) rotateY(0deg);
         transform: perspective(1000px) rotateY(0deg);
    opacity: 1; } }

.flip-in-y-fr {
  -webkit-animation-name: flip-in-y-fr;
  -moz-animation-name: flip-in-y-fr;
    -o-animation-name: flip-in-y-fr;
       animation-name: flip-in-y-fr;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; } }

@-moz-keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    -moz-transform: perspective(1000px) rotateY(0deg);
         transform: perspective(1000px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    -moz-transform: perspective(1000px) rotateY(90deg);
         transform: perspective(1000px) rotateY(90deg);
    opacity: 0; } }

@-o-keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; } }

@keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    -moz-transform: perspective(1000px) rotateY(0deg);
         transform: perspective(1000px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    -moz-transform: perspective(1000px) rotateY(90deg);
         transform: perspective(1000px) rotateY(90deg);
    opacity: 0; } }

.flip-out-y-fr {
  -webkit-animation-name: flip-out-y-fr;
  -moz-animation-name: flip-out-y-fr;
    -o-animation-name: flip-out-y-fr;
       animation-name: flip-out-y-fr;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
       backface-visibility: visible !important; }

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
         transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    -o-transform: scale(0.7);
       transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
      -o-transform: scale(0.7);
         transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 1; } }

.zoom-in {
  -webkit-animation-name: zoom-in;
  -moz-animation-name: zoom-in;
    -o-animation-name: zoom-in;
       animation-name: zoom-in; }

@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 0; } }

@-moz-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
         transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 0; } }

@-o-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.7);
    -o-transform: scale(0.7);
       transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
      -o-transform: scale(1);
         transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
      -o-transform: scale(0.7);
         transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 0; } }

.zoom-out {
  -webkit-animation-name: zoom-out;
  -moz-animation-name: zoom-out;
    -o-animation-name: zoom-out;
       animation-name: zoom-out; }

@-webkit-keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
         transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
       transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
      -o-transform: scale(0.95);
         transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 1; } }

.zoom-in-sm {
  -webkit-animation-name: zoom-in-sm;
  -moz-animation-name: zoom-in-sm;
    -o-animation-name: zoom-in-sm;
       animation-name: zoom-in-sm; }

@-webkit-keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 0; } }

@-moz-keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
         transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 0; } }

@-o-keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
       transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
      -o-transform: scale(1);
         transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
      -o-transform: scale(0.95);
         transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 0; } }

.zoom-out-sm {
  -webkit-animation-name: zoom-out-sm;
  -moz-animation-name: zoom-out-sm;
    -o-animation-name: zoom-out-sm;
       animation-name: zoom-out-sm; }

@-webkit-keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
         transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    -o-transform: scale(0.4);
       transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
      -o-transform: scale(0.4);
         transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 1; } }

.zoom-in-lg {
  -webkit-animation-name: zoom-in-lg;
  -moz-animation-name: zoom-in-lg;
    -o-animation-name: zoom-in-lg;
       animation-name: zoom-in-lg; }

@-webkit-keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 0; } }

@-moz-keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
         transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 0; } }

@-o-keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.4);
    -o-transform: scale(0.4);
       transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
      -o-transform: scale(1);
         transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
      -o-transform: scale(0.4);
         transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 0; } }

.zoom-out-lg {
  -webkit-animation-name: zoom-out-lg;
  -moz-animation-name: zoom-out-lg;
    -o-animation-name: zoom-out-lg;
       animation-name: zoom-out-lg; }

@-webkit-keyframes overlay-slide-in-top {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

@-moz-keyframes overlay-slide-in-top {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

@-o-keyframes overlay-slide-in-top {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

@keyframes overlay-slide-in-top {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

.overlay-slide-in-top {
  top: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-top;
  -moz-animation-name: overlay-slide-in-top;
    -o-animation-name: overlay-slide-in-top;
       animation-name: overlay-slide-in-top; }

@-webkit-keyframes overlay-slide-out-top {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@-moz-keyframes overlay-slide-out-top {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@-o-keyframes overlay-slide-out-top {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@keyframes overlay-slide-out-top {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

.overlay-slide-out-top {
  top: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-top;
  -moz-animation-name: overlay-slide-out-top;
    -o-animation-name: overlay-slide-out-top;
       animation-name: overlay-slide-out-top; }

@-webkit-keyframes overlay-slide-in-bottom {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

@-moz-keyframes overlay-slide-in-bottom {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

@-o-keyframes overlay-slide-in-bottom {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

@keyframes overlay-slide-in-bottom {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

.overlay-slide-in-bottom {
  bottom: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-bottom;
  -moz-animation-name: overlay-slide-in-bottom;
    -o-animation-name: overlay-slide-in-bottom;
       animation-name: overlay-slide-in-bottom; }

@-webkit-keyframes overlay-slide-out-bottom {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@-moz-keyframes overlay-slide-out-bottom {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@-o-keyframes overlay-slide-out-bottom {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@keyframes overlay-slide-out-bottom {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

.overlay-slide-out-bottom {
  bottom: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-bottom;
  -moz-animation-name: overlay-slide-out-bottom;
    -o-animation-name: overlay-slide-out-bottom;
       animation-name: overlay-slide-out-bottom; }

@-webkit-keyframes overlay-slide-in-left {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

@-moz-keyframes overlay-slide-in-left {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

@-o-keyframes overlay-slide-in-left {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

@keyframes overlay-slide-in-left {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

.overlay-slide-in-left {
  width: 0;
  -webkit-animation-name: overlay-slide-in-left;
  -moz-animation-name: overlay-slide-in-left;
    -o-animation-name: overlay-slide-in-left;
       animation-name: overlay-slide-in-left; }

@-webkit-keyframes overlay-slide-out-left {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@-moz-keyframes overlay-slide-out-left {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@-o-keyframes overlay-slide-out-left {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@keyframes overlay-slide-out-left {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

.overlay-slide-out-left {
  left: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-left;
  -moz-animation-name: overlay-slide-out-left;
    -o-animation-name: overlay-slide-out-left;
       animation-name: overlay-slide-out-left; }

@-webkit-keyframes overlay-slide-in-right {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

@-moz-keyframes overlay-slide-in-right {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

@-o-keyframes overlay-slide-in-right {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

@keyframes overlay-slide-in-right {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

.overlay-slide-in-right {
  right: 0;
  width: 0;
  -webkit-animation-name: overlay-slide-in-right;
  -moz-animation-name: overlay-slide-in-right;
    -o-animation-name: overlay-slide-in-right;
       animation-name: overlay-slide-in-right; }

@-webkit-keyframes overlay-slide-out-right {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@-moz-keyframes overlay-slide-out-right {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@-o-keyframes overlay-slide-out-right {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@keyframes overlay-slide-out-right {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

.overlay-slide-out-right {
  right: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-right;
  -moz-animation-name: overlay-slide-out-right;
    -o-animation-name: overlay-slide-out-right;
       animation-name: overlay-slide-out-right; }

/* Responsive tab */
/* Grid */
/* color */
/* height */
@-webkit-keyframes showTab {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@-moz-keyframes showTab {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
         transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
         transform: translateY(0); } }
@-o-keyframes showTab {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -o-transform: translateY(10px);
       transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0); } }
@keyframes showTab {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
      -o-transform: translateY(10px);
         transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
      -o-transform: translateY(0);
         transform: translateY(0); } }

.tabsy {
  margin-bottom: 3rem; }
  .tabsy .content p {
    margin: 0; }

.tabsy > button {
  width: 100%;
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background: transparent; }

.tabsy > .tabButton {
  display: block;
  margin-top: 1px;
  color: black;
  border-bottom: 3px solid transparent;
  opacity: .4;
  letter-spacing: 2px;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  margin: 1rem 0rem .5rem 0;
  padding: 1rem 1.2rem .65rem 1.2rem;
  background: transparent; }
  @media (max-width: 768px) {
    .tabsy > .tabButton {
      color: #6E9143;
      opacity: 1;
      margin: 1rem 0rem .5rem 0; } }

.tabsy > input {
  display: none; }

.tabsy > input:checked + label + .tab {
  display: block;
  margin-top: -.6rem;
  padding-top: .8rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd; }

.tabsy > input:checked + label + .tab > .content {
  -webkit-animation: showTab 250ms ease-in-out;
  -moz-animation: showTab 250ms ease-in-out;
    -o-animation: showTab 250ms ease-in-out;
       animation: showTab 250ms ease-in-out;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: black;
  width: 100%;
  min-height: 185px;
  max-height: 185px;
  overflow: auto;
  line-height: 1.8rem;
  text-align: justify; }
  @media (max-width: 768px) {
    .tabsy > input:checked + label + .tab > .content {
      width: 100%; } }

.tabsy > input:checked + label + .tab > .content::-webkit-scrollbar {
  width: 3px;
  display: none; }

.tabsy > input:checked + label + .tab > .content::-webkit-scrollbar-thumb {
  background-color: #aaa; }

.tabsy > .tab {
  background: transparent;
  display: none;
  width: 100%; }

@media screen and (min-width: 768px) {
  .tabsy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .tabsy > .tabButton {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    -moz-box-ordinal-group: 2;
         order: 1;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -moz-box-align: start;
         align-items: flex-start;
    cursor: pointer; }
  .tabsy > input:checked + label {
    background: transparent;
    color: #6E9143;
    opacity: 1;
    position: relative; }
    .tabsy > input:checked + label::after {
      content: '';
      display: block;
      height: 4px;
      background: #6E9143;
      width: 100%;
      z-index: 1;
      position: absolute;
      bottom: -3.5px;
      left: 0;
      -webkit-animation: tab 300ms;
         -moz-animation: tab 300ms;
           -o-animation: tab 300ms;
              animation: tab 300ms; }
  @-webkit-keyframes tab {
    from {
      -webkit-transform: scaleY(0);
              transform: scaleY(0); }
    to {
      -webkit-transform: scaleY(1);
              transform: scaleY(1); } }
  @-moz-keyframes tab {
    from {
      -moz-transform: scaleY(0);
           transform: scaleY(0); }
    to {
      -moz-transform: scaleY(1);
           transform: scaleY(1); } }
  @-o-keyframes tab {
    from {
      -o-transform: scaleY(0);
         transform: scaleY(0); }
    to {
      -o-transform: scaleY(1);
         transform: scaleY(1); } }
  @keyframes tab {
    from {
      -webkit-transform: scaleY(0);
         -moz-transform: scaleY(0);
           -o-transform: scaleY(0);
              transform: scaleY(0); }
    to {
      -webkit-transform: scaleY(1);
         -moz-transform: scaleY(1);
           -o-transform: scaleY(1);
              transform: scaleY(1); } }
  .tabsy > .tab {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    -moz-box-ordinal-group: 3;
         order: 2; } }

/* Responsive table */
table.responsive {
  border: 1px solid #ccc;
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0; }

table.responsive tr {
  border: 1px solid #ddd;
  padding: 5px; }

table.responsive th, table.responsive td {
  padding: 10px; }

@media screen and (max-width: max-width 767px) {
  table.responsive {
    border: 0; }
  table.responsive thead {
    display: none; }
  table.responsive tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #ddd; }
  table.responsive td {
    display: block;
    width: 100%\9;
    float: left\9;
    text-align: right;
    border-bottom: 1px dotted #ccc; }
  table.responsive td:last-child {
    border-bottom: 0; }
  table.responsive td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold; } }

.button {
  position: relative;
  display: inline-block;
  min-width: 200px;
  padding: 0 40px;
  margin: 10px 15px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #212121;
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  color: #212121;
  font-size: 20px;
  text-decoration: none;
  -webkit-transition-property: background-color, color;
  -o-transition-property: background-color, color;
  -moz-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: .3s;
     -moz-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s; }
  .button:hover {
    background-color: #212121;
    color: #fff; }

.index-banner-pc .slick-dots {
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  margin: auto;
  padding: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 1rem;
  width: 100%; }
  @media (max-width: 980px) {
    .index-banner-pc .slick-dots {
      -webkit-transform: scale(0.8);
         -moz-transform: scale(0.8);
          -ms-transform: scale(0.8);
           -o-transform: scale(0.8);
              transform: scale(0.8);
      bottom: 0rem; } }
  @media (max-width: 768px) {
    .index-banner-pc .slick-dots {
      display: none; } }
  .index-banner-pc .slick-dots li {
    padding: 2rem .5rem;
    cursor: pointer; }
    .index-banner-pc .slick-dots li button {
      display: none; }
    .index-banner-pc .slick-dots li::before {
      content: '';
      display: block;
      width: 45px;
      height: 5px;
      background: white;
      opacity: .3;
      cursor: pointer;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms; }
      @media (max-width: 768px) {
        .index-banner-pc .slick-dots li::before {
          height: 4px; } }
    .index-banner-pc .slick-dots li:hover::before {
      opacity: .4; }
    .index-banner-pc .slick-dots li.slick-active::before {
      background: white;
      opacity: .8; }
    @media (max-width: 768px) {
      .index-banner-pc .slick-dots li {
        width: 38px;
        margin: 0 .4rem; } }

@media (max-width: 768px) {
  .index-banner-pc .slick-dots li {
    display: none; }
  .index-banner-pc .slick-dots li.slick-active,
  .index-banner-pc .slick-dots li.slick-active + li,
  .index-banner-pc .slick-dots li.slick-active + li + li {
    display: block; }
  .index-banner-pc .slick-dots li:nth-last-child(1),
  .index-banner-pc .slick-dots li:nth-last-child(2),
  .index-banner-pc .slick-dots li:nth-last-child(3),
  .index-banner-pc .slick-dots li:nth-last-child(4),
  .index-banner-pc .slick-dots li:nth-last-child(5),
  .index-banner-pc .slick-dots li:nth-last-child(6) {
    display: block; }
  .index-banner-pc .slick-dots li.slick-active ~ li:nth-last-child(8),
  .index-banner-pc .slick-dots li.slick-active ~ li:nth-last-child(7),
  .index-banner-pc .slick-dots li.slick-active ~ li:nth-last-child(6) {
    display: none; }
  .index-banner-pc .slick-dots li.slick-active + li + li:nth-last-child(3),
  .index-banner-pc .slick-dots li.slick-active + li + li:nth-last-child(2),
  .index-banner-pc .slick-dots li.slick-active + li + li:nth-last-child(1),
  .index-banner-pc .slick-dots li.slick-active + li:nth-last-child(3),
  .index-banner-pc .slick-dots li.slick-active + li:nth-last-child(2),
  .index-banner-pc .slick-dots li.slick-active + li:nth-last-child(1) {
    display: block; } }

.banner-wrapper .slick-dots {
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .banner-wrapper .slick-dots li {
    cursor: pointer !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .banner-wrapper .slick-dots li button {
      cursor: pointer !important;
      background: none;
      border: none;
      outline: none;
      opacity: .5;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms; }
    .banner-wrapper .slick-dots li.slick-active button {
      color: white;
      opacity: .8; }

.r-btn {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  border: 1px solid black;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  text-align: center;
  line-height: 1.2rem;
  position: relative;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  padding: 30px;
  word-break: break-all; }
  .r-btn::before {
    content: 'SHOP NOW';
    position: absolute;
    padding: 30px;
    color: white;
    z-index: 1;
    display: none;
    padding: 9px;
    top: 50%;
    word-break: break-all; }
    @media (max-width: 768px) {
      .r-btn::before {
        display: none; } }
  .r-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: white;
    background: #6E9143;
    text-align: center;
    line-height: 1.2rem;
    padding-left: 2px;
    -webkit-transition: all 400ms;
    -o-transition: all 400ms;
    -moz-transition: all 400ms;
    transition: all 400ms;
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0); }
    @media (max-width: 768px) {
      .r-btn::after {
        display: none; } }
  .r-btn:hover {
    border: 1px solid #6E9143;
    color: white; }
    @media (max-width: 768px) {
      .r-btn:hover {
        color: #6E9143; } }
    .r-btn:hover::before {
      display: block;
      padding: 18px 23px;
      top: 15%;
      -webkit-transform: translateX(-6px);
         -moz-transform: translateX(-6px);
          -ms-transform: translateX(-6px);
           -o-transform: translateX(-6px);
              transform: translateX(-6px);
      word-break: inherit; }
      @media (max-width: 768px) {
        .r-btn:hover::before {
          display: none; } }
    .r-btn:hover::after {
      -webkit-transform: scale(1.02);
         -moz-transform: scale(1.02);
          -ms-transform: scale(1.02);
           -o-transform: scale(1.02);
              transform: scale(1.02); }
      @media (max-width: 768px) {
        .r-btn:hover::after {
          display: none; } }

.r-btn[data-type="READ MORE"] {
  padding: 20px;
  word-break: break-word; }
  .r-btn[data-type="READ MORE"]::before {
    content: attr(data-type);
    text-align: center;
    word-break: inherit; }
    @media (max-width: 768px) {
      .r-btn[data-type="READ MORE"]::before {
        display: none;
        content: ''; } }
  .r-btn[data-type="READ MORE"]:hover {
    padding: 18px 21px; }
    .r-btn[data-type="READ MORE"]:hover::before {
      -webkit-transform: translateX(-5px);
         -moz-transform: translateX(-5px);
          -ms-transform: translateX(-5px);
           -o-transform: translateX(-5px);
              transform: translateX(-5px); }

/* Grid */
/* color */
/* height */
.fixed {
  position: fixed; }

header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
  padding: .8rem 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 15px;
  position: fixed;
  width: 100%;
  z-index: 777;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  transition: all 400ms;
  background: white; }
  @media (max-width: 768px) {
    header {
      padding: 0rem .8rem;
      height: 80px; } }
  header #float-menu {
    position: relative;
    cursor: pointer !important;
    z-index: 666;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    margin-top: 1.1rem;
    width: 30px;
    height: 40px;
    display: none;
    -webkit-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
    -moz-transition: opacity .25s ease;
    transition: opacity .25s ease; }
    header #float-menu span {
      background: black;
      display: block;
      border: none;
      height: 1px;
      width: 30px;
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transition: all .35s ease;
      -o-transition: all .35s ease;
      -moz-transition: all .35s ease;
      transition: all .35s ease;
      cursor: pointer; }
      header #float-menu span:nth-of-type(2) {
        top: 11px; }
      header #float-menu span:nth-of-type(3) {
        top: 22px; }
    header #float-menu:hover .top {
      -webkit-transform: translateY(1.5px);
         -moz-transform: translateY(1.5px);
          -ms-transform: translateY(1.5px);
           -o-transform: translateY(1.5px);
              transform: translateY(1.5px); }
    header #float-menu:hover .bottom {
      -webkit-transform: translateY(-1.5px);
         -moz-transform: translateY(-1.5px);
          -ms-transform: translateY(-1.5px);
           -o-transform: translateY(-1.5px);
              transform: translateY(-1.5px); }
    @media (max-width: 900px) {
      header #float-menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        min-width: 30px;
        margin-right: 1rem;
        margin-left: .5rem; } }
  @media (max-width: 900px) and (max-width: 768px) {
    header #float-menu {
      margin-right: .5rem; } }
    header #float-menu.active .top {
      -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
         -moz-transform: translateY(11px) translateX(0) rotate(45deg);
          -ms-transform: translateY(11px) translateX(0) rotate(45deg);
           -o-transform: translateY(11px) translateX(0) rotate(45deg);
              transform: translateY(11px) translateX(0) rotate(45deg);
      background: black; }
    header #float-menu.active .middle {
      opacity: 0;
      background: black; }
    header #float-menu.active .bottom {
      -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
         -moz-transform: translateY(-11px) translateX(0) rotate(-45deg);
          -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
           -o-transform: translateY(-11px) translateX(0) rotate(-45deg);
              transform: translateY(-11px) translateX(0) rotate(-45deg);
      background: black; }
  header .header-logo, header .header-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  header .header-right #deco {
    padding: 0 .4rem;
    margin-top: .5rem; }
    @media (max-width: 980px) {
      header .header-right #deco {
        display: none; } }
  @media (max-width: 768px) {
    header .header-right .nav-link {
      display: none; } }
  @media (max-width: 900px) {
    header .header-right .nav-link {
      font-size: 15px;
      padding-right: 0;
      padding-left: 3px; }
      header .header-right .nav-link::before {
        font-size: 14px !important;
        padding-top: 2px; } }
  header .header-logo {
    margin: 0 3.5rem 0 3rem;
    padding-bottom: 3px;
    position: relative; }
    header .header-logo img {
      -webkit-transform: scale(1.2);
         -moz-transform: scale(1.2);
          -ms-transform: scale(1.2);
           -o-transform: scale(1.2);
              transform: scale(1.2); }
      header .header-logo img:first-child {
        opacity: .9; }
      header .header-logo img.color {
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms;
        position: absolute;
        opacity: 0;
        left: 0;
        bottom: 28%; }
      @media (max-width: 900px) {
        header .header-logo img {
          width: 90%; } }
    header .header-logo:hover img.color {
      opacity: 1; }
    @media (max-width: 768px) {
      header .header-logo {
        margin: 0 3.5rem 0 1rem; }
        header .header-logo img {
          -webkit-transform: scale(1.1);
             -moz-transform: scale(1.1);
              -ms-transform: scale(1.1);
               -o-transform: scale(1.1);
                  transform: scale(1.1);
          margin-top: .2rem;
          padding-bottom: 0; }
          header .header-logo img.color {
            -webkit-transform: scale(1.1) translateY(-2px);
               -moz-transform: scale(1.1) translateY(-2px);
                -ms-transform: scale(1.1) translateY(-2px);
                 -o-transform: scale(1.1) translateY(-2px);
                    transform: scale(1.1) translateY(-2px); } }
  header#menu-btn {
    cursor: pointer !important; }
    @media (max-width: 768px) {
      header#menu-btn {
        display: none !important; } }
  @media (max-width: 768px) {
    header .header-left {
      display: none; } }
  header .header-left .nav-link {
    padding: 0 2.5rem; }
  header .header-left #m-menu-btn {
    cursor: pointer;
    padding: 1.2rem 2.5rem;
    position: relative; }
    header .header-left #m-menu-btn::after {
      content: url(../images/round-arrow.svg);
      position: absolute;
      right: 30px;
      top: 22px;
      width: 40px;
      height: 40px;
      display: block;
      -webkit-transform: scale(0.9);
         -moz-transform: scale(0.9);
          -ms-transform: scale(0.9);
           -o-transform: scale(0.9);
              transform: scale(0.9);
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms; }
  @media (max-width: 900px) {
    header .header-left {
      display: none;
      width: 100%;
      position: fixed;
      overflow-y: scroll;
      background: white;
      z-index: 554;
      height: -webkit-calc(var(--vh, 1vh) * 100 - $headerH-m);
      height: -moz-calc(var(--vh, 1vh) * 100 - $headerH-m);
      height: calc(var(--vh, 1vh) * 100 - $headerH-m);
      top: 80px;
      left: 0;
      right: 0;
      bottom: 0;
      padding-top: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-top: 0rem;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
         -moz-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      header .header-left .nav-link {
        padding: 1.5rem 0rem; } }
    @media (max-width: 900px) and (max-width: 900px) {
      header .header-left .nav-link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        font-size: 16px;
        padding: 1.2rem 2.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
           -moz-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        width: 100%;
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms; }
        header .header-left .nav-link::before {
          content: attr(data-name);
          opacity: 1;
          position: relative;
          font-size: 15px;
          color: black;
          -webkit-transform: translateY(0);
             -moz-transform: translateY(0);
              -ms-transform: translateY(0);
               -o-transform: translateY(0);
                  transform: translateY(0);
          font-size: 16px !important; }
        header .header-left .nav-link:hover, header .header-left .nav-link:active, header .header-left .nav-link:focus {
          color: black;
          -webkit-transform: translateX(0);
             -moz-transform: translateX(0);
              -ms-transform: translateX(0);
               -o-transform: translateX(0);
                  transform: translateX(0); }
          header .header-left .nav-link:hover::before, header .header-left .nav-link:active::before, header .header-left .nav-link:focus::before {
            display: block;
            opacity: 1;
            -webkit-transform: translateY(0);
               -moz-transform: translateY(0);
                -ms-transform: translateY(0);
                 -o-transform: translateY(0);
                    transform: translateY(0); }
          header .header-left .nav-link:hover::after, header .header-left .nav-link:active::after, header .header-left .nav-link:focus::after {
            display: none; } }
  @media (max-width: 900px) {
      header .header-left.active {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex; } }
  @media (max-width: 900px) {
    header .header-left #menu-btn {
      display: none; } }
  header .header-left .m-link {
    display: none;
    cursor: pointer;
    text-transform: uppercase; }
    header .header-left .m-link .icon {
      margin: auto; }
    @media (max-width: 900px) {
      header .header-left .m-link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        font-size: 16px;
        padding: 1.2rem 2.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
           -moz-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        width: 100%;
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms; }
        header .header-left .m-link::before {
          content: attr(data-name);
          opacity: 1;
          position: relative;
          font-size: 15px;
          color: black;
          -webkit-transform: translateY(0);
             -moz-transform: translateY(0);
              -ms-transform: translateY(0);
               -o-transform: translateY(0);
                  transform: translateY(0);
          font-size: 16px !important; }
        header .header-left .m-link:hover {
          color: black;
          -webkit-transform: translateX(0);
             -moz-transform: translateX(0);
              -ms-transform: translateX(0);
               -o-transform: translateX(0);
                  transform: translateX(0); }
          header .header-left .m-link:hover::before {
            display: block;
            opacity: 1;
            -webkit-transform: translateY(0);
               -moz-transform: translateY(0);
                -ms-transform: translateY(0);
                 -o-transform: translateY(0);
                    transform: translateY(0); }
          header .header-left .m-link:hover::after {
            display: none; } }
  @media (max-width: 900px) {
    header .header-left li {
      height: auto;
      border-bottom: 1px solid #e6e6e6;
      padding: 0; }
      header .header-left li a {
        height: auto;
        margin: 0; } }
  header .grey {
    background: #F6F6F6;
    opacity: .7;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    font-size: 16px;
    text-align: left;
    padding: .8rem 2.5rem .6rem 2.5rem !important;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    margin-right: auto; }
    header ul li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      header ul li#m-icons {
        display: none; }
        @media (max-width: 900px) {
          header ul li#m-icons {
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            -js-display: flex;
            display: flex;
            width: 100%; } }
  header a {
    color: black;
    height: 100px; }
  header .nav-link {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    white-space: nowrap;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: all 150ms;
    -o-transition: all 150ms;
    -moz-transition: all 150ms;
    transition: all 150ms;
    margin-top: .5rem; }
    header .nav-link::before {
      content: attr(data-name);
      color: #6E9143;
      opacity: 0;
      position: absolute;
      top: 35%;
      font-size: 15px;
      letter-spacing: 2px;
      font-weight: 400;
      -webkit-transform: translateY(-5px);
         -moz-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
           -o-transform: translateY(-5px);
              transform: translateY(-5px);
      -webkit-transition-delay: 50ms;
         -moz-transition-delay: 50ms;
           -o-transition-delay: 50ms;
              transition-delay: 50ms; }
    header .nav-link:hover, header .nav-link:active {
      color: transparent;
      -webkit-transform: translateY(5px);
         -moz-transform: translateY(5px);
          -ms-transform: translateY(5px);
           -o-transform: translateY(5px);
              transform: translateY(5px); }
      header .nav-link:hover::before, header .nav-link:active::before {
        opacity: 1; }
      header .nav-link:hover::after, header .nav-link:active::after {
        content: '';
        display: block;
        width: 80%;
        height: 3px;
        background: #6E9143;
        position: absolute;
        bottom: 10px;
        left: 14px;
        z-index: 55;
        -webkit-animation: nav 300ms;
           -moz-animation: nav 300ms;
             -o-animation: nav 300ms;
                animation: nav 300ms; }
    @media (max-width: 900px) {
      header .nav-link {
        width: 100%;
        font-size: 24px; }
        header .nav-link::before {
          font-size: 17px !important;
          font-weight: 500px; } }

@-webkit-keyframes nav {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0); }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); } }

@-moz-keyframes nav {
  from {
    -moz-transform: scaleX(0);
         transform: scaleX(0); }
  to {
    -moz-transform: scaleX(1);
         transform: scaleX(1); } }

@-o-keyframes nav {
  from {
    -o-transform: scaleX(0);
       transform: scaleX(0); }
  to {
    -o-transform: scaleX(1);
       transform: scaleX(1); } }

@keyframes nav {
  from {
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
         -o-transform: scaleX(0);
            transform: scaleX(0); }
  to {
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
         -o-transform: scaleX(1);
            transform: scaleX(1); } }
  header .nav-link[data-link="login"] {
    margin-left: auto; }
    header .nav-link[data-link="login"]:after {
      display: none !important; }
    @media (max-width: 980px) {
      header .nav-link[data-link="login"] {
        display: none !important; } }
  header #shop_quantity {
    position: absolute;
    font-size: 12.5px;
    top: 11px;
    left: 7px;
    width: 16px;
    text-align: center; }

#menu-bg {
  position: fixed;
  z-index: 888;
  background-color: #F8F8F8;
  opacity: .4;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  display: none; }
  @media (max-width: 640px) {
    #menu-bg {
      display: none; } }

#p-list {
  position: fixed;
  top: 100px;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 400px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: white;
  -webkit-box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.07);
     -moz-box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.07);
  font-size: 18px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  -webkit-transform: translateY(0px);
     -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
       -o-transform: translateY(0px);
          transform: translateY(0px);
  display: none;
  -webkit-transform-origin: top;
     -moz-transform-origin: top;
      -ms-transform-origin: top;
       -o-transform-origin: top;
          transform-origin: top; }
  @media (max-width: 900px) {
    #p-list {
      top: 80px;
      height: -webkit-calc(var(--vh, 1vh) * 100 - $headerH-m);
      height: -moz-calc(var(--vh, 1vh) * 100 - $headerH-m);
      height: calc(var(--vh, 1vh) * 100 - $headerH-m);
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  #p-list #close-lists {
    display: none; }
    @media (max-width: 900px) {
      #p-list #close-lists {
        display: block; } }
  #p-list .all-link {
    padding-top: 3.5rem;
    padding-left: 5rem;
    font-size: 14px;
    display: block;
    width: 350px;
    white-space: nowrap; }
    #p-list .all-link:hover {
      color: #6E9143; }
    @media (max-width: 900px) {
      #p-list .all-link {
        width: 100%;
        margin-top: 0rem;
        padding: 1.5rem 1.5rem;
        border-bottom: 1px solid #e6e6e6; }
        #p-list .all-link.grey {
          padding: 1.5rem 0 1.2rem 3.4rem !important; }
          #p-list .all-link.grey::before {
            content: url(../images/g-arrow.svg);
            opacity: 1;
            position: absolute;
            left: 1.2rem;
            top: 22px;
            -webkit-transform: scale(0.7) rotate(90deg);
               -moz-transform: scale(0.7) rotate(90deg);
                -ms-transform: scale(0.7) rotate(90deg);
                 -o-transform: scale(0.7) rotate(90deg);
                    transform: scale(0.7) rotate(90deg);
            -webkit-transition: all 300ms;
            -o-transition: all 300ms;
            -moz-transition: all 300ms;
            transition: all 300ms; } }
  #p-list ul {
    width: 85%;
    padding-top: 3.5rem;
    overflow-y: scroll;
    text-transform: uppercase;
    font-size: 14px;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content; }
    @media (max-width: 900px) {
      #p-list ul {
        margin-left: 0rem;
        padding-left: 0rem;
        padding-top: 0rem;
        width: 100%; }
        #p-list ul li {
          width: 100%; }
        #p-list ul a {
          display: block; } }
    #p-list ul li, #p-list ul a {
      display: block;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content;
      min-width: 300px;
      max-width: 300px;
      padding-right: 2rem;
      margin-right: 3rem; }
      @media (max-width: 900px) {
        #p-list ul li, #p-list ul a {
          min-width: 100%;
          max-width: 100%;
          margin: auto;
          padding: 0; } }
    #p-list ul a.cat::after {
      display: none; }
    #p-list ul .cat {
      cursor: pointer;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      color: black;
      margin-bottom: 1rem;
      position: relative;
      width: 100%; }
      #p-list ul .cat:hover {
        color: #6E9143; }
        #p-list ul .cat:hover::after {
          -webkit-transform: scale(0.8) translateY(5px);
             -moz-transform: scale(0.8) translateY(5px);
              -ms-transform: scale(0.8) translateY(5px);
               -o-transform: scale(0.8) translateY(5px);
                  transform: scale(0.8) translateY(5px); }
      #p-list ul .cat:hover {
        opacity: 1; }
      #p-list ul .cat::after {
        content: url(../images/g-arrow.svg);
        opacity: .8;
        position: absolute;
        right: 0;
        top: 10px;
        -webkit-transform: scale(0.8);
           -moz-transform: scale(0.8);
            -ms-transform: scale(0.8);
             -o-transform: scale(0.8);
                transform: scale(0.8);
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms; }
        @media (max-width: 900px) {
          #p-list ul .cat::after {
            right: 1rem;
            top: 30px; } }
      #p-list ul .cat.active {
        color: #6E9143; }
        #p-list ul .cat.active::after {
          -webkit-transform: scale(0.8) rotate(180deg);
             -moz-transform: scale(0.8) rotate(180deg);
              -ms-transform: scale(0.8) rotate(180deg);
               -o-transform: scale(0.8) rotate(180deg);
                  transform: scale(0.8) rotate(180deg); }
      @media (max-width: 900px) {
        #p-list ul .cat {
          display: block;
          padding: 1.2rem 1.5rem;
          border-bottom: 1px solid #e6e6e6;
          margin-bottom: .5rem; } }
    #p-list ul .wrap {
      display: none;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      margin-top: -.5rem; }
      #p-list ul .wrap a {
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms; }
        #p-list ul .wrap a:hover {
          color: #6E9143; }
        @media (max-width: 900px) {
          #p-list ul .wrap a {
            border-bottom: 1px solid #e6e6e6;
            padding: 1.2rem 2.5rem;
            background: rgba(221, 221, 221, 0.2); } }
      #p-list ul .wrap .all::before {
        content: '+';
        margin-right: 1rem; }
      #p-list ul .wrap.show {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        display: block !important;
        margin-bottom: 1rem;
        -webkit-animation: showCat 600ms ease-in-out;
           -moz-animation: showCat 600ms ease-in-out;
             -o-animation: showCat 600ms ease-in-out;
                animation: showCat 600ms ease-in-out;
        -webkit-transform-origin: top;
           -moz-transform-origin: top;
            -ms-transform-origin: top;
             -o-transform-origin: top;
                transform-origin: top; }
        #p-list ul .wrap.show a {
          height: 35px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          -js-display: flex;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
             -moz-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          @media (max-width: 900px) {
            #p-list ul .wrap.show a {
              height: auto;
              padding: 1.2rem 2rem; } }
        #p-list ul .wrap.show::after {
          content: '';
          display: block;
          margin-top: .5rem;
          height: 1px;
          width: 80%;
          background: black;
          opacity: .08;
          display: block; }
          @media (max-width: 900px) {
            #p-list ul .wrap.show::after {
              display: none; } }
      @media (max-width: 900px) {
        #p-list ul .wrap {
          margin-bottom: .5rem !important; } }

@-webkit-keyframes showCat {
  from {
    opacity: 0;
    max-height: 0; }
  to {
    max-height: 500px;
    opacity: 1; } }

@-moz-keyframes showCat {
  from {
    opacity: 0;
    max-height: 0; }
  to {
    max-height: 500px;
    opacity: 1; } }

@-o-keyframes showCat {
  from {
    opacity: 0;
    max-height: 0; }
  to {
    max-height: 500px;
    opacity: 1; } }

@keyframes showCat {
  from {
    opacity: 0;
    max-height: 0; }
  to {
    max-height: 500px;
    opacity: 1; } }

@-webkit-keyframes showA {
  from {
    opacity: 0;
    -webkit-transform: scaleY(-20px);
            transform: scaleY(-20px); }
  to {
    opacity: 1;
    -webkit-transform: scaleY(0px);
            transform: scaleY(0px); } }

@-moz-keyframes showA {
  from {
    opacity: 0;
    -moz-transform: scaleY(-20px);
         transform: scaleY(-20px); }
  to {
    opacity: 1;
    -moz-transform: scaleY(0px);
         transform: scaleY(0px); } }

@-o-keyframes showA {
  from {
    opacity: 0;
    -o-transform: scaleY(-20px);
       transform: scaleY(-20px); }
  to {
    opacity: 1;
    -o-transform: scaleY(0px);
       transform: scaleY(0px); } }

@keyframes showA {
  from {
    opacity: 0;
    -webkit-transform: scaleY(-20px);
       -moz-transform: scaleY(-20px);
         -o-transform: scaleY(-20px);
            transform: scaleY(-20px); }
  to {
    opacity: 1;
    -webkit-transform: scaleY(0px);
       -moz-transform: scaleY(0px);
         -o-transform: scaleY(0px);
            transform: scaleY(0px); } }
    #p-list ul li span {
      padding: 0 .3rem; }
  @media (max-width: 900px) {
    #p-list {
      width: 100%; }
      #p-list .show:after {
        display: none; } }

.header-scroll {
  height: 90px;
  background: white;
  -webkit-transition: all 500ms;
  -o-transition: all 500ms;
  -moz-transition: all 500ms;
  transition: all 500ms; }
  .header-scroll .nav-link:hover::after {
    content: '';
    display: block;
    width: 80%;
    height: 3px;
    background: #6E9143;
    position: absolute;
    bottom: 14px;
    z-index: 55; }
  .header-scroll::after {
    content: '';
    display: block;
    width: 90%;
    height: 1px;
    -webkit-box-shadow: 0 1px 0 #EBEBEB;
       -moz-box-shadow: 0 1px 0 #EBEBEB;
            box-shadow: 0 1px 0 #EBEBEB;
    background: white;
    margin: auto;
    position: absolute;
    bottom: 2px;
    left: 5%;
    z-index: -1; }
  .header-scroll #p-list, .header-scroll #menu-bg {
    top: 90px; }

.z-0 {
  z-index: 555 !important; }

#close-list {
  display: none;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  cursor: pointer;
  z-index: 88; }
  @media (max-width: 900px) {
    #close-list {
      display: block; } }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
            transform: translate3d(0, -10%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-moz-keyframes fadeInDown {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -10%, 0);
         transform: translate3d(0, -10%, 0); }
  to {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0); } }

@-o-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
       -moz-transform: translate3d(0, -10%, 0);
            transform: translate3d(0, -10%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
            transform: translate3d(0, -10%, 0); } }

@-moz-keyframes fadeInUp {
  from {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0); }
  to {
    opacity: 0;
    -moz-transform: translate3d(0, -10%, 0);
         transform: translate3d(0, -10%, 0); } }

@-o-keyframes fadeInUp {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -10%, 0); } }

@keyframes fadeInUp {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
       -moz-transform: translate3d(0, -10%, 0);
            transform: translate3d(0, -10%, 0); } }

@-webkit-keyframes fadeIn {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@-moz-keyframes fadeIn {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@-o-keyframes fadeIn {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeIn {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeInDown {
  -webkit-animation: fadeInDown 300ms;
     -moz-animation: fadeInDown 300ms;
       -o-animation: fadeInDown 300ms;
          animation: fadeInDown 300ms;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  -js-display: flex !important;
  display: flex !important; }

.fadeInUp {
  -webkit-animation-name: fadeInUp 300ms;
     -moz-animation-name: fadeInUp 300ms;
       -o-animation-name: fadeInUp 300ms;
          animation-name: fadeInUp 300ms;
  display: none; }

.fadeIn {
  -webkit-animation-name: fadeIn 100ms;
     -moz-animation-name: fadeIn 100ms;
       -o-animation-name: fadeIn 100ms;
          animation-name: fadeIn 100ms;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  -js-display: flex !important;
  display: flex !important; }

/* Grid */
/* color */
/* height */
#shopping-bag {
  z-index: 888;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: .5rem;
  margin-right: .8rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  @media (max-width: 900px) {
    #shopping-bag {
      margin-left: 0rem;
      margin-right: 0rem; } }
  @media (max-width: 640px) {
    #shopping-bag {
      right: 6.5rem;
      top: 3rem; } }
  #shopping-bag .shopping-icon {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    color: black;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 1rem;
    margin-left: 1rem; }
    #shopping-bag .shopping-icon .shopping-bag-icon {
      width: 36px;
      height: 36px; }
    @media (max-width: 768px) {
      #shopping-bag .shopping-icon {
        margin-right: .5rem;
        margin-left: .2rem; } }

#mini-cart-wrap {
  z-index: 999;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(600px);
     -moz-transform: translateX(600px);
      -ms-transform: translateX(600px);
       -o-transform: translateX(600px);
          transform: translateX(600px);
  width: 600px;
  height: 100%;
  background: white;
  -webkit-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.07);
  box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.07);
  font-size: 12px;
  overflow: hidden; }
  @media (max-width: 640px) {
    #mini-cart-wrap {
      width: 100%; } }
  #mini-cart-wrap .mini-total-wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    bottom: 0px;
    height: 200px;
    background-color: white;
    border-top: 1px solid #e6e6e6;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }

#mini-cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%; }
  #mini-cart h3 {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Catamaran';
    font-weight: bold;
    font-size: 21px;
    font-weight: bold;
    padding-top: 3.2rem; }

#mini-cart-bg {
  position: fixed;
  z-index: 888;
  background-color: #F8F8F8;
  opacity: .4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  display: none; }
  @media (max-width: 640px) {
    #mini-cart-bg {
      display: none; } }

#close-bag {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 2.5rem;
  left: 2rem;
  cursor: pointer;
  z-index: 88; }

.items-wrapper {
  width: 100%;
  height: 100%;
  padding: 0 12%;
  padding-bottom: 200px;
  scroll-behavior: smooth;
  overflow: scroll !important;
  -webkit-overflow-scrolling: touch; }
  .items-wrapper::-webkit-scrollbar {
    display: none; }
  .items-wrapper .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #F6F6F6; }
    @media (max-width: 640px) {
      .items-wrapper .item {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
           -moz-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
    .items-wrapper .item .item-info {
      padding-top: 1.2rem;
      color: black;
      letter-spacing: 1.2px; }
      .items-wrapper .item .item-info .item-tw {
        font-size: 15px;
        font-weight: 300;
        color: black;
        letter-spacing: 1.8px;
        margin-bottom: .2rem; }
      .items-wrapper .item .item-info .item-price, .items-wrapper .item .item-info .item-qty {
        font-size: 13px;
        font-weight: 300; }
    .items-wrapper .item .remove-icon {
      width: 12px;
      height: 100%;
      opacity: .6;
      position: absolute;
      right: 1rem;
      cursor: pointer; }
      @media (max-width: 640px) {
        .items-wrapper .item .remove-icon {
          right: .2rem; } }

.empty-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 16rem;
  width: 100%; }
  .empty-wrapper h4 {
    text-align: center;
    letter-spacing: 2px;
    margin: .4rem;
    font-size: 25px;
    font-weight: 400;
    font-family: 'Noto Sans TC';
    line-height: 3.5rem;
    color: #6E9143; }
    .empty-wrapper h5{
      font-size: 17px;
      font-weight: 500;
      font-family: 'Catamaran';
      margin: .4rem;
      color: #6E9143; }
      .empty-wrapper p {
        opacity: 0.8;
        text-align: center;
      }

.item-total {
  padding-bottom: 1.4rem;
  font-size: 14px;
  font-weight: 400; }
  @media (max-width: 640px) {
    .item-total {
      padding-top: 1rem; } }

.item-btn {
  width: 100%;
  font-size: 1rem;
  padding: 1.2rem 1.3rem;
  background: #6E9143;
  color: white;
  text-align: center;
  font-weight: 500; }
  @media (max-width: 640px) {
    .item-btn {
      font-size: 15px; } }
  @media (max-width: 400px) {
    .item-btn {
      bottom: 2.5rem; } }

.item-btn[data-type="cart"] {
  color: #666;
  background: #d0d0d0; }

.item-btn[data-type="empty"] {
  margin-top: auto; }

/* Grid */
/* color */
/* height */
footer {
  position: absolute;
  color: black;
  z-index: 555;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5rem; }
  footer .header-logo {
    display: block;
    margin: auto;
    position: relative;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    width: 48px; }
    footer .header-logo img {
      margin: auto; }
      footer .header-logo img.color {
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms;
        position: absolute;
        left: 0;
        opacity: 0; }
    footer .header-logo:hover {
      -webkit-transform: translateY(-5px);
         -moz-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
           -o-transform: translateY(-5px);
              transform: translateY(-5px); }
      footer .header-logo:hover img.color {
        opacity: 1; }
  footer a {
    color: black; }
    footer a:hover {
      color: #6E9143; }
  footer .footer-links {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style-type: none;
    margin: auto;
    font-size: 16px;
    -webkit-font-smoothing: antialiased; }
    footer .footer-links li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-left: 1.5rem; }
      footer .footer-links li::before {
        content: '';
        display: block;
        height: 1px;
        width: 12px;
        margin-top: -3px;
        margin-right: 1.5rem;
        background: black;
        opacity: .6; }
      footer .footer-links li:first-child::before {
        display: none; }
    footer .footer-links li a {
      text-align: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      position: relative;
      white-space: nowrap;
      font-weight: 400;
      cursor: pointer;
      -webkit-transition: all 150ms;
      -o-transition: all 150ms;
      -moz-transition: all 150ms;
      transition: all 150ms;
      padding: 2rem 0; }
      footer .footer-links li a::before {
        content: attr(data-name);
        color: #6E9143;
        opacity: 0;
        position: absolute;
        font-size: 15px;
        letter-spacing: 2px;
        font-weight: 400;
        -webkit-transform: translateY(-5px);
           -moz-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
             -o-transform: translateY(-5px);
                transform: translateY(-5px);
        -webkit-transition-delay: 50ms;
           -moz-transition-delay: 50ms;
             -o-transition-delay: 50ms;
                transition-delay: 50ms; }
      footer .footer-links li a:hover {
        color: transparent;
        -webkit-transform: translateY(5px);
           -moz-transform: translateY(5px);
            -ms-transform: translateY(5px);
             -o-transform: translateY(5px);
                transform: translateY(5px); }
        footer .footer-links li a:hover::before {
          opacity: 1;
          -webkit-transform: translateY(-5px);
             -moz-transform: translateY(-5px);
              -ms-transform: translateY(-5px);
               -o-transform: translateY(-5px);
                  transform: translateY(-5px); }
      @media (max-width: 900px) {
        footer .footer-links li a {
          width: 100%;
          font-size: 16px; }
          footer .footer-links li a::before {
            font-size: 15px !important;
            font-weight: 500px; } }
    @media (max-width: 768px) {
      footer .footer-links {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        footer .footer-links li {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          -js-display: flex;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
             -moz-box-orient: vertical;
             -moz-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding: 0; }
          footer .footer-links li::before {
            margin-right: 0;
            opacity: .2; }
          footer .footer-links li a {
            padding: 1rem 0; } }
  footer .footer-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
    margin: auto;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    font-size: 15px;
    line-height: 1.6rem; }
    footer .footer-wrap ul.footer-info {
      list-style-type: none;
      margin: 0;
      width: 30%;
      padding: 2rem 1rem; }
      footer .footer-wrap ul.footer-info li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        padding: .2rem 0; }
        footer .footer-wrap ul.footer-info li p {
          margin: 0;
          display: block;
          min-width: 65px;
          padding: .2rem 0; }
        footer .footer-wrap ul.footer-info li a {
          padding: .2rem 0;
          width: 100%;
          word-break: break-all;
          text-transform: lowercase; }
    footer .footer-wrap .social-wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      width: 30%; }
      footer .footer-wrap .social-wrap a {
        width: 50%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms;
        background: white; }
        footer .footer-wrap .social-wrap a .icon {
          font-size: 1.25rem;
          -webkit-transition: all 300ms;
          -o-transition: all 300ms;
          -moz-transition: all 300ms;
          transition: all 300ms; }
        footer .footer-wrap .social-wrap a:last-child {
          border-left: 1px solid #e6e6e6; }
        footer .footer-wrap .social-wrap a:hover {
          background: #F6F6F6; }
          @media (max-width: 980px) {
            footer .footer-wrap .social-wrap a:hover {
              background: transparent; } }
          footer .footer-wrap .social-wrap a:hover .icon {
            color: #6E9143;
            -webkit-transform: scale(1.2);
               -moz-transform: scale(1.2);
                -ms-transform: scale(1.2);
                 -o-transform: scale(1.2);
                    transform: scale(1.2); }
      @media (max-width: 980px) {
        footer .footer-wrap .social-wrap {
          margin: auto;
          width: 20%;
          padding: 2rem 0; }
          footer .footer-wrap .social-wrap a:last-child {
            border-left: 0; } }
      @media (max-width: 768px) {
        footer .footer-wrap .social-wrap {
          width: 40%; } }
    @media (max-width: 980px) {
      footer .footer-wrap {
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap; }
        footer .footer-wrap .footer-info, footer .footer-wrap .add {
          width: 50% !important;
          padding: 2rem !important;
          border-left: 1px solid #e6e6e6;
          border-right: 0;
          border-bottom: 1px solid #e6e6e6; }
        footer .footer-wrap .footer-info {
          border-right: 0;
          border-left: 0; } }
    @media (max-width: 768px) {
      footer .footer-wrap .footer-info, footer .footer-wrap .add {
        width: 100% !important;
        padding: 2rem !important;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #e6e6e6; } }
    @media (max-width: 640px) {
      footer .footer-wrap .footer-info, footer .footer-wrap .add {
        padding: 2rem 0.5rem !important;
        font-size: 14px; } }
  footer .add {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 45%;
    padding: 3rem;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6; }
    footer .add address {
      padding-left: 10px; }
      footer .add address:last-child {
        padding-left: 52px; }
  footer .copyright {
    color: black;
    font-size: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 1.5rem;
    letter-spacing: 1px; }
    @media (max-width: 640px) {
      footer .copyright span {
        -webkit-transform: scale(0.88);
           -moz-transform: scale(0.88);
            -ms-transform: scale(0.88);
             -o-transform: scale(0.88);
                transform: scale(0.88); } }
    footer .copyright a {
      position: absolute;
      right: 5.4rem;
      color: black;
      opacity: .35;
      font-size: 12px;
      -webkit-transition: all 200ms;
      -o-transition: all 200ms;
      -moz-transition: all 200ms;
      transition: all 200ms;
      text-transform: initial; }
      footer .copyright a:hover {
        opacity: .6; }
    @media (max-width: 640px) {
      footer .copyright {
        padding: .8rem; }
        footer .copyright a {
          position: static;
          -webkit-transform: scale(0.88);
             -moz-transform: scale(0.88);
              -ms-transform: scale(0.88);
               -o-transform: scale(0.88);
                  transform: scale(0.88); } }

/* Grid */
/* color */
/* height */
.p-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 86%;
  max-width: 1440px;
  margin: auto;
  margin-bottom: 2rem; }
  @media (max-width: 980px) {
    .p-wrapper {
      width: 90%; } }
  .p-wrapper .p-wrap {
    width: 29%;
    margin: -1% 2%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content; }
    @media (max-width: 980px) {
      .p-wrapper .p-wrap {
        width: 46%;
        margin: 0 2%; } }
    @media (max-width: 768px) {
      .p-wrapper .p-wrap {
        width: 90%;
        margin: 0 5%; } }
    .p-wrapper .p-wrap:after {
      content: '';
      height: 3.5rem;
      display: block;
      width: 100%;
      background: white; }
      @media (max-width: 768px) {
        .p-wrapper .p-wrap:after {
          height: 1rem; } }
    .p-wrapper .p-wrap .p-item {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 2rem 0 .2rem 0;
      width: 100%; }
      .p-wrapper .p-wrap .p-item img {
        margin: 1.5rem 0;
        width: 90%;
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms; }
      .p-wrapper .p-wrap .p-item h3 {
        color: black;
        text-align: center;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 1.5px;
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms;
        line-height: 1.6rem;
        white-space: nowrap;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        width: 80%;
        display: block;
        overflow: hidden;
        -webkit-font-smoothing: antialiased; }
      @media (max-width: 768px) {
        .p-wrapper .p-wrap .p-item {
          padding: 1.2rem .2rem .2rem .2rem; }
          .p-wrapper .p-wrap .p-item h3 {
            line-height: 1.3rem; }
          .p-wrapper .p-wrap .p-item img {
            margin: .5rem 0 .5rem 0; } }
      .p-wrapper .p-wrap .p-item h4, .p-wrapper .p-wrap .p-item h5, .p-wrapper .p-wrap .p-item p {
        color: #404040;
        text-align: center;
        font-weight: 400;
        font-size: 13px;
        margin: 0;
        color: black; }
      .p-wrapper .p-wrap .p-item h4 {
        white-space: nowrap;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        width: 80%;
        display: block;
        overflow: hidden;
        font-size: 14px; }
      .p-wrapper .p-wrap .p-item:hover h3, .p-wrapper .p-wrap .p-item:hover h4 {
        color: #6E9143;
        opacity: 1; }
    .p-wrapper .p-wrap .p-link {
      width: 100%;
      text-align: center; }
      .p-wrapper .p-wrap .p-link::before {
        content: '';
        display: block;
        margin: auto;
        height: 1px;
        width: 90%;
        background: black;
        opacity: .08;
        display: block; }
      .p-wrapper .p-wrap .p-link h5 {
        opacity: .6;
        line-height: 1.2rem;
        font-size: 12px;
        padding-top: .5rem;
        font-weight: 400;
        color: #404040;
        text-align: center;
        font-weight: 400;
        font-size: 13px;
        margin: 0;
        color: black; }
      .p-wrapper .p-wrap .p-link:hover h5 {
        color: #6E9143;
        opacity: 1; }
    .p-wrapper .p-wrap .wrap {
      font-size: 14px;
      color: black;
      padding-top: .5rem;
      width: 100%;
      text-align: center;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
      .p-wrapper .p-wrap .wrap::before {
        content: '';
        display: block;
        margin: auto;
        height: 1px;
        width: 90%;
        background: black;
        margin-bottom: .4rem;
        opacity: .08;
        display: block; }
    .p-wrapper .p-wrap .btn {
      font-size: 15px;
      padding: 1.4rem 0;
      line-height: 0;
      letter-spacing: 3px;
      display: none;
      position: absolute;
      bottom: 0rem;
      left: 5%;
      z-index: 1;
      width: 90%; }
      .p-wrapper .p-wrap .btn.active {
        -webkit-animation-name: btn;
           -moz-animation-name: btn;
             -o-animation-name: btn;
                animation-name: btn;
        -webkit-animation-duration: 300ms;
           -moz-animation-duration: 300ms;
             -o-animation-duration: 300ms;
                animation-duration: 300ms;
        display: block; }

@-webkit-keyframes btn {
  from {
    bottom: 1.6rem;
    opacity: 0; }
  to {
    bottom: 0rem;
    opacity: 1; } }

@-moz-keyframes btn {
  from {
    bottom: 1.6rem;
    opacity: 0; }
  to {
    bottom: 0rem;
    opacity: 1; } }

@-o-keyframes btn {
  from {
    bottom: 1.6rem;
    opacity: 0; }
  to {
    bottom: 0rem;
    opacity: 1; } }

@keyframes btn {
  from {
    bottom: 1.6rem;
    opacity: 0; }
  to {
    bottom: 0rem;
    opacity: 1; } }
      @media (max-width: 768px) {
        .p-wrapper .p-wrap .btn {
          opacity: 1;
          display: block;
          position: relative;
          margin-top: 1.2rem;
          -webkit-animation: none;
             -moz-animation: none;
               -o-animation: none;
                  animation: none;
          left: 0; }
          .p-wrapper .p-wrap .btn.active {
            -webkit-animation: none;
               -moz-animation: none;
                 -o-animation: none;
                    animation: none; }
          .p-wrapper .p-wrap .btn:hover {
            opacity: .85; } }
    .p-wrapper .p-wrap:hover, .p-wrapper .p-wrap:active {
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms; }
      .p-wrapper .p-wrap:hover .p-item img, .p-wrapper .p-wrap:active .p-item img {
        -webkit-transform: translateY(-8px);
           -moz-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
             -o-transform: translateY(-8px);
                transform: translateY(-8px); }
        @media (max-width: 768px) {
          .p-wrapper .p-wrap:hover .p-item img, .p-wrapper .p-wrap:active .p-item img {
            -webkit-transform: translateY(0);
               -moz-transform: translateY(0);
                -ms-transform: translateY(0);
                 -o-transform: translateY(0);
                    transform: translateY(0); } }
  .p-wrapper .press-info {
    margin-bottom: 2rem;
    padding: 0 2rem;
    opacity: .7; }
    @media (max-width: 768px) {
      .p-wrapper .press-info {
        width: 95%;
        margin: auto;
        margin-bottom: 2rem;
        padding: 0;
        text-align: justify; } }
  .p-wrapper .kit-wrapper {
    list-style-type: none;
    padding: 0;
    padding-left: 2rem;
    width: 95%; }
    @media (max-width: 768px) {
      .p-wrapper .kit-wrapper {
        margin: auto;
        padding-left: 0rem; } }
    .p-wrapper .kit-wrapper li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      padding: 1rem 0;
      border-bottom: 1px solid #F6F6F6; }
      @media (max-width: 768px) {
        .p-wrapper .kit-wrapper li {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
             -moz-box-orient: vertical;
             -moz-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          border-bottom: 1px solid #eee;
          padding: 1.5rem 0; } }
      .p-wrapper .kit-wrapper li time {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex; }
        @media (max-width: 768px) {
          .p-wrapper .kit-wrapper li time {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column; } }
        .p-wrapper .kit-wrapper li time::after {
          content: '';
          margin: 0 1.6rem;
          margin-top: .5rem;
          display: block;
          width: 70px;
          height: 1px;
          background: black;
          opacity: .3; }
          @media (max-width: 980px) {
            .p-wrapper .kit-wrapper li time::after {
              width: 40px; } }
          @media (max-width: 768px) {
            .p-wrapper .kit-wrapper li time::after {
              margin: 1rem 0;
              opacity: .1;
              width: 30px; } }
      .p-wrapper .kit-wrapper li h3 {
        margin-bottom: .5rem;
        font-size: 16px;
        font-weight: 400;
        width: 100%; }
      .p-wrapper .kit-wrapper li h4 {
        opacity: .7;
        font-size: 15px;
        width: 100%; }
      .p-wrapper .kit-wrapper li a {
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        width: 73%; }
        .p-wrapper .kit-wrapper li a::after {
          content: url(../images/round-arrow.svg);
          position: absolute;
          right: -50px;
          width: 40px;
          height: 40px;
          display: block;
          -webkit-transform: translateX(0px);
             -moz-transform: translateX(0px);
              -ms-transform: translateX(0px);
               -o-transform: translateX(0px);
                  transform: translateX(0px);
          -webkit-transition: all 300ms;
          -o-transition: all 300ms;
          -moz-transition: all 300ms;
          transition: all 300ms;
          opacity: 0; }
          @media (max-width: 768px) {
            .p-wrapper .kit-wrapper li a::after {
              display: none; } }
        .p-wrapper .kit-wrapper li a:hover::after {
          -webkit-transform: translateX(15px);
             -moz-transform: translateX(15px);
              -ms-transform: translateX(15px);
               -o-transform: translateX(15px);
                  transform: translateX(15px);
          opacity: 1; }
        .p-wrapper .kit-wrapper li a:hover h3 {
          color: #6E9143; }

/* Grid */
/* color */
/* height */
.p {
  width: 100%;
  margin-top: -78px;
  padding-top: 100px;
  padding-bottom: 70px; }
  @media (max-width: 980px) {
    .p {
      margin-top: -80px;
      padding-top: 80px; } }
  .p .htmlinfo {
    margin-top: 5rem; }
    .p .htmlinfo h3 {
      text-align: center;
      margin-bottom: 1rem; }
    .p .htmlinfo .text-left, .p .htmlinfo .text-right {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
      .p .htmlinfo .text-left div, .p .htmlinfo .text-left .img, .p .htmlinfo .text-right div, .p .htmlinfo .text-right .img {
        width: 50%; }
        @media (max-width: 980px) {
          .p .htmlinfo .text-left div, .p .htmlinfo .text-left .img, .p .htmlinfo .text-right div, .p .htmlinfo .text-right .img {
            width: 100%; } }
      .p .htmlinfo .text-left .text, .p .htmlinfo .text-right .text {
        padding: 3rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
    .p .htmlinfo .text-right .img {
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
         -moz-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1; }
      @media (max-width: 980px) {
        .p .htmlinfo .text-right .img {
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
             -moz-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1; } }
    .p .htmlinfo .text-only {
      padding: 5rem 4rem;
      background: #F6F6F6; }

.over-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  width: 86%;
  margin: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1440px; }
  @media (max-width: 980px) {
    .over-inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  .over-inner .left {
    width: 50%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content; }
    @media (max-width: 980px) {
      .over-inner .left {
        width: 100%; } }
    .over-inner .left .cover {
      margin: 1.5rem 0 3rem 0;
      display: block;
      width: 70%; }
      .over-inner .left .cover img {
        width: 100%; }
      @media (max-width: 980px) {
        .over-inner .left .cover {
          margin: 0rem 0 1.5rem 0;
          width: 100%; }
          .over-inner .left .cover img {
            width: 100%;
            -o-object-fit: scale-down;
               object-fit: scale-down; } }
    .over-inner .left ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
      width: 80%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
         -moz-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      color: black;
      font-weight: 500; }
      .over-inner .left ul li {
        border-left: 1px solid #ddd;
        padding: 10px 0 10px 10%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 30%;
        white-space: nowrap; }
        .over-inner .left ul li::before {
          content: attr(data-name);
          white-space: nowrap;
          font-size: 12px;
          color: #999999; }
        .over-inner .left ul li:first-child {
          border-left: 0;
          padding-left: 0; }
          @media (max-width: 980px) {
            .over-inner .left ul li:first-child {
              padding-left: 6%; } }
      @media (max-width: 980px) {
        .over-inner .left ul {
          width: 100%; }
          .over-inner .left ul li {
            padding: 8px 0 8px 6%; } }
  .over-inner .right {
    color: #131313;
    padding: 1.5rem 0 0 4rem;
    width: 50%; }
    @media (max-width: 980px) {
      .over-inner .right {
        padding: 0;
        width: 100%;
        margin-top: 3.5rem; } }
    .over-inner .right h1 {
      color: black;
      font-size: 20px;
      font-weight: 400;
      line-height: 36px;
      letter-spacing: 2.6px;
      border-bottom: 1px solid #eee;
      padding-bottom: .2rem; }
      @media (max-width: 980px) {
        .over-inner .right h1 {
          line-height: 32px;
          text-align: center;
          padding-bottom: .2rem;
          border-bottom: 0; } }
    .over-inner .right h2 {
      font-size: 19px;
      color: black;
      line-height: 33px;
      letter-spacing: 2px;
      padding-top: .4rem; }
      @media (max-width: 980px) {
        .over-inner .right h2 {
          line-height: 30px;
          text-align: center;
          padding-top: .2rem; } }
    .over-inner .right .input-wrap {
      font-weight: 400;
      margin-bottom: 1.2rem;
      font-size: 14px;
      letter-spacing: 2px;
      margin-left: .2rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (max-width: 980px) {
        .over-inner .right .input-wrap {
          -webkit-box-pack: center;
          -webkit-justify-content: center;
             -moz-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          margin: 2rem 0; } }
    .over-inner .right .type-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      margin-left: .25rem;
      margin-bottom: 3rem; }
      @media (max-width: 980px) {
        .over-inner .right .type-wrapper {
          -webkit-box-pack: center;
          -webkit-justify-content: center;
             -moz-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          margin: 2rem 0; } }
      @media (max-width: 768px) {
        .over-inner .right .type-wrapper {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
             -moz-box-orient: vertical;
             -moz-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; }
          .over-inner .right .type-wrapper .title {
            margin-bottom: 1rem; } }
      .over-inner .right .type-wrapper .title {
        white-space: nowrap;
        margin-right: 4rem;
        font-weight: 400;
        font-size: 15px;
        padding-top: 4px; }
      .over-inner .right .type-wrapper ul.wrap {
        margin: 0;
        padding: 0;
        list-style-type: none;
        width: 100%; }
        .over-inner .right .type-wrapper ul.wrap li {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          -js-display: flex;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
             -moz-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          line-height: 2.2rem; }
          .over-inner .right .type-wrapper ul.wrap li input {
            margin-top: -2px;
            margin-right: .8rem; }
      .over-inner .right .type-wrapper .price {
        font-size: .8rem;
        color: #999;
        margin-left: 1.5rem;
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 15px; }
        .over-inner .right .type-wrapper .price::before {
          content: '';
          display: block;
          width: 115%;
          height: 1px;
          background: #6E9143;
          position: absolute; }
    .over-inner .right money {
      font-weight: 400; }
    .over-inner .right .reg-price {
      line-height: 42px;
      font-size: 12px;
      color: #8C8C8C; }

.inner-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  margin-top: 1rem;
  position: relative; }
  @media (max-width: 640px) {
    .inner-wrap {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
         -moz-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }
  .inner-wrap .title {
    display: contents;
    margin-top: 1px;
    color: #131313;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    margin: 1rem 1rem .5rem 0;
    padding-bottom: .5rem;
    position: relative;
    line-height: 3rem; }
  .inner-wrap .qty-label {
    position: absolute;
    bottom: -36px;
    color: #6E9143;
    font-weight: 400; }
  .inner-wrap .quantity {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    width: 100%;
    background: white;
    margin-right: .8rem;
    border: 1px solid #ddd; }
    @media (max-width: 640px) {
      .inner-wrap .quantity {
        margin-right: 0rem;
        margin-bottom: 1rem; } }
    .inner-wrap .quantity .qty {
      border: 0;
      text-align: center;
      letter-spacing: 2px; }
      .inner-wrap .quantity .qty:focus {
        outline: none; }
    .inner-wrap .quantity .qty-btn {
      font-size: 32px;
      font-weight: 100;
      color: #888;
      padding: 0 1.6rem;
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      cursor: pointer;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      -webkit-font-smoothing: antialiased; }
      .inner-wrap .quantity .qty-btn:hover {
        color: black; }
    .inner-wrap .quantity input {
      background: transparent;
      font-size: 16px;
      width: 100%; }
  .inner-wrap a {
    margin: 0 .2rem; }
    @media (max-width: 980px) {
      .inner-wrap a {
        margin: 0 0 .5rem 0; } }
  .inner-wrap .btn-fixed {
    -webkit-transition: position 100ms;
    -o-transition: position 100ms;
    -moz-transition: position 100ms;
    transition: position 100ms;
    position: fixed;
    right: 2rem;
    width: 300px;
    bottom: 2rem;
    z-index: 99;
    opacity: 1;
    -webkit-animation: btn 200ms ease-in-out;
       -moz-animation: btn 200ms ease-in-out;
         -o-animation: btn 200ms ease-in-out;
            animation: btn 200ms ease-in-out; }

@keyframes btn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
    @media (max-width: 768px) {
      .inner-wrap .btn-fixed {
        width: 100%;
        bottom: -.5rem;
        right: 0; } }

.color-btn-wrap a:hover {
  opacity: 0.8;
  width: 1.35rem;
  height: 1.35rem;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1); }
  .color-btn-wrap a:hover:before {
    display: inline-table; }

.color-btn-wrap a.active {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid white;
  -webkit-box-shadow: 0px 0px 2.5px #5f5f5f;
     -moz-box-shadow: 0px 0px 2.5px #5f5f5f;
          box-shadow: 0px 0px 2.5px #5f5f5f;
  -webkit-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.color-btn-wrap label, .color-btn-wrap a {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  margin-right: .5rem;
  border: 1px solid white;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  -webkit-box-shadow: 0px 0px 1px #a0a0a0;
     -moz-box-shadow: 0px 0px 1px #a0a0a0;
          box-shadow: 0px 0px 1px #a0a0a0;
  -webkit-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  .color-btn-wrap label:before, .color-btn-wrap a:before {
    content: attr(data-name);
    position: absolute;
    bottom: -2.6rem;
    left: -2rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: #F6F6F6;
    padding: .2rem .5rem;
    font-size: 10px;
    -webkit-transform: scale(0.95);
       -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
         -o-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: none; }

.color-btn-wrap .active {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid white;
  -webkit-box-shadow: 0px 0px 1px #5f5f5f;
     -moz-box-shadow: 0px 0px 1px #5f5f5f;
          box-shadow: 0px 0px 1px #5f5f5f;
  -webkit-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.color-btn-wrap input[type="radio"] {
  display: none; }
  .color-btn-wrap input[type="radio"]:hover + label {
    opacity: 0.8;
    width: 1.35rem;
    height: 1.35rem;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1); }
    .color-btn-wrap input[type="radio"]:hover + label:before {
      display: inline-table; }
  .color-btn-wrap input[type="radio"]:checked + label {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid white;
    -webkit-box-shadow: 0px 0px 1px #5f5f5f;
       -moz-box-shadow: 0px 0px 1px #5f5f5f;
            box-shadow: 0px 0px 1px #5f5f5f;
    -webkit-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275); }

@media (max-width: 640px) {
  .color-btn-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .color-btn-wrap label, .color-btn-wrap a {
      width: 1.5rem;
      height: 1.5rem;
      border: 2px solid white;
      -webkit-transform: scale(1);
         -moz-transform: scale(1);
          -ms-transform: scale(1);
           -o-transform: scale(1);
              transform: scale(1);
      -webkit-box-shadow: 0px 0px 1px #a0a0a0;
         -moz-box-shadow: 0px 0px 1px #a0a0a0;
              box-shadow: 0px 0px 1px #a0a0a0;
      margin-bottom: 1rem; }
      .color-btn-wrap label:after, .color-btn-wrap a:after {
        content: attr(data-name);
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        position: absolute;
        left: 2rem;
        font-size: 10px;
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
            -ms-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        opacity: .5; }
      .color-btn-wrap label:before, .color-btn-wrap a:before {
        display: none; }
      .color-btn-wrap label:hover, .color-btn-wrap a:hover {
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
            -ms-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1); }
        .color-btn-wrap label:hover:before, .color-btn-wrap a:hover:before {
          display: none; }
    .color-btn-wrap .active:hover {
      opacity: 0.8;
      width: 1.5rem;
      height: 1.5rem;
      -webkit-transform: scale(1);
         -moz-transform: scale(1);
          -ms-transform: scale(1);
           -o-transform: scale(1);
              transform: scale(1);
      opacity: 1; }
      .color-btn-wrap .active:hover:before {
        display: none; }
    .color-btn-wrap .active:after {
      border-bottom: 1px solid; }
    .color-btn-wrap input[type="radio"] {
      display: none; }
      .color-btn-wrap input[type="radio"]:hover + label {
        opacity: 0.8;
        width: 1.5rem;
        height: 1.5rem;
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
            -ms-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
        opacity: 1; }
        .color-btn-wrap input[type="radio"]:hover + label:before {
          display: none; }
      .color-btn-wrap input[type="radio"]:checked + label {
        border: 2px solid white;
        -webkit-box-shadow: 0px 0px 2px #65676d;
           -moz-box-shadow: 0px 0px 2px #65676d;
                box-shadow: 0px 0px 2px #65676d;
        font-size: 10px;
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
            -ms-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1); }
        .color-btn-wrap input[type="radio"]:checked + label:after {
          -webkit-transform: scale(1);
             -moz-transform: scale(1);
              -ms-transform: scale(1);
               -o-transform: scale(1);
                  transform: scale(1);
          border-bottom: 1px solid;
          padding-bottom: .5rem;
          opacity: 1; } }

.l-label {
  font-size: 12px;
  border: 1px solid #58B571;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding: 1px 17px;
  margin-top: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #58B571;
  line-height: 20px; }
  @media (max-width: 640px) {
    .l-label {
      margin: auto; } }

.s-label {
  font-size: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding: 1px 17px;
  margin-top: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: #fb2b2b;
  color: white;
  line-height: 20px; }
  @media (max-width: 640px) {
    .s-label {
      margin: auto; } }

.player-box {
  z-index: 1;
  margin-top: 2rem; }

.add-to-cart {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.2rem 1.5rem;
  width: 60%;
  background: #F6F6F6;
  color: #65676d;
  margin-top: 2rem;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  font-size: 14px;
  font-weight: 500; }
  .add-to-cart span {
    width: 100%;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 17px;
    font-weight: 100; }
  @media (max-width: 980px) {
    .add-to-cart {
      width: 80%; } }
  @media (max-width: 980px) {
    .add-to-cart {
      width: 100%; } }
  .add-to-cart.disabled {
    cursor: not-allowed !important;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1.2rem 1.5rem;
    width: 60%;
    background: #F6F6F6;
    color: #65676d;
    margin-top: 2rem;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    font-size: 14px;
    font-weight: 500; }
    .add-to-cart.disabled span {
      width: 100%;
      text-align: center;
      font-size: 12px;
      letter-spacing: 1.5px;
      line-height: 17px;
      font-weight: 100; }
    @media (max-width: 980px) {
      .add-to-cart.disabled {
        width: 80%; } }
    @media (max-width: 980px) {
      .add-to-cart.disabled {
        width: 100%; } }
    .add-to-cart.disabled:hover {
      cursor: not-allowed !important; }

.htmlinfo {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: black;
  line-height: 1.9rem;
  width: 86%;
  max-width: 1440px;
  margin: auto;
  text-align: justify;
  margin-top: 3rem;
  margin-bottom: 5rem; }
  @media (max-width: 980px) {
    .htmlinfo {
      width: 90%; } }
  .htmlinfo a {
    color: #6E9143;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms; }
    .htmlinfo a:hover {
      color: #6E9143;
      opacity: .8; }
  .htmlinfo p {
    margin: 0;
    padding: 0; }
  .htmlinfo img {
    display: block;
    margin: auto; }
  .htmlinfo .info-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .htmlinfo hr {
    display: block;
    width: 100%;
    margin: auto;
    opacity: .2;
    border-style: solid;
    border-width: .5px; }
  .htmlinfo h3 {
    font-weight: 400;
    color: #6E9143; }
    .htmlinfo h3:target {
      padding-top: 100px;
      margin-top: -100px; }
  .htmlinfo blockquote {
    border-left: 3px solid #6E9143;
    padding-left: 1rem;
    margin-left: .2rem; }
  .htmlinfo .tip {
    background: #F6F6F6;
    padding: 1.2rem 2.5rem;
    text-align: center;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem; }
    @media (max-width: 768px) {
      .htmlinfo .tip {
        padding: 1.2rem 1.2rem; } }

.photo-credit {
  font-size: .75rem;
  line-height: 1.4;
  letter-spacing: .04rem;
  color: #aeaeae;
  display: block;
  width: 100%;
  text-align: center;
  -webkit-font-smoothing: auto; }

.p-outro .back {
  margin-top: 3rem;
  margin-bottom: -3rem;
  letter-spacing: 4px;
  opacity: .5;
  font-size: 13px; }
  @media (max-width: 980px) {
    .p-outro .back {
      margin-bottom: 0rem; } }
  .p-outro .back:hover {
    opacity: .8; }
    .p-outro .back:hover:before {
      left: -2rem; }

/* Grid */
/* color */
/* height */
#member-edit, #reset-pw, #resetpw {
  width: 60%; }
  #member-edit h3, #reset-pw h3, #resetpw h3 {
    margin: 1rem; }
  @media (max-width: 768px) {
    #member-edit, #reset-pw, #resetpw {
      width: 95%; } }

#member-edit {
  margin-bottom: 1rem; }
  #member-edit input[type="radio"] + label {
    background: transparent;
    padding-left: 0;
    width: 82%;
    padding: .5rem 0; }
    @media (max-width: 900px) {
      #member-edit input[type="radio"] + label {
        width: 80%; } }
  #member-edit .form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: 0;
    outline: 0;
    width: 100%;
    padding-top: 0; }
    @media (max-width: 900px) {
      #member-edit .form label {
        width: 30%; } }
    #member-edit .form h3 {
      margin: 1.5rem 0 -.5rem 0; }

@media (max-width: 768px) {
  .signup-m {
    display: none !important; } }

.s-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
  max-width: 1440px;
  margin: auto;
  padding-top: 1rem; }
  @media (max-width: 768px) {
    .s-wrapper {
      width: 100%; } }
  .s-wrapper h1 {
    margin-top: 2rem; }
  .s-wrapper h1, .s-wrapper h2 {
    width: 100%;
    text-align: center;
    font-weight: 400;
    color: black;
    font-size: 20px;
    text-transform: uppercase; }
  .s-wrapper form, .s-wrapper .form {
    width: 80%; }
  .s-wrapper a {
    letter-spacing: 2px; }
  .s-wrapper a[data-type="done"] {
    width: 65%;
    margin: auto; }
    @media (max-width: 980px) {
      .s-wrapper a[data-type="done"] {
        width: 100%; } }
  .s-wrapper .select {
    margin-bottom: 1.8rem; }
  .s-wrapper .msg {
    width: 65%;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 400px;
    text-align: center;
    background: #F6F6F6;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 3rem;
    font-weight: 300;
    color: black;
    font-size: 17px; }
    @media (max-width: 980px) {
      .s-wrapper .msg {
        width: 100%; } }

.l-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
  max-width: 1440px;
  margin: auto;
  padding-top: 3rem; }
  @media (max-width: 768px) {
    .l-wrapper {
      width: 90%;
      padding-bottom: 3rem; } }
  .l-wrapper h1, .l-wrapper h3, .l-wrapper h4 {
    width: 100%;
    text-align: center; }
  .l-wrapper h1 {
    font-size: 214x; }
  .l-wrapper h3 {
    font-weight: bold;
    padding: 0rem 0 1rem 0; }
  .l-wrapper h4 {
    margin-bottom: 2rem; }
  .l-wrapper #forgetpw {
    display: none; }

form, .form {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 1rem;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  color: black;
  margin: auto; }
  form h2, .form h2 {
    width: 100%;
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 3rem; }
  form#login, .form#login {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    form#login label, .form#login label {
      margin-right: auto; }
    form#login #ltor, .form#login #ltor {
      display: none; }
      @media (max-width: 768px) {
        form#login #ltor, .form#login #ltor {
          display: block;
          width: unset; } }
  @media (max-width: 768px) {
    form, .form {
      width: 100%; } }
  form .rs-pw-p, .form .rs-pw-p {
    width: 100%;
    text-align: center; }
  form label, .form label {
    white-space: nowrap; }
  form input[type="text"], form input[type="password"], form .c-select, form .iti, .form input[type="text"], .form input[type="password"], .form .c-select, .form .iti {
    width: 100%;
    margin: 5px 0;
    margin-bottom: 1.5rem; }
  form #corb, form #m-corb, .form #corb, .form #m-corb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%; }
    form #corb label, form #m-corb label, .form #corb label, .form #m-corb label {
      background: transparent;
      padding: 0;
      width: unset; }
    form #corb #type2:checked + label::after, form #m-corb #type2:checked + label::after, .form #corb #type2:checked + label::after, .form #m-corb #type2:checked + label::after {
      content: '需經過審核';
      color: white;
      background: black;
      padding: 5px 6px;
      font-size: 12px;
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px;
      margin-left: .7rem; }
      @media (max-width: 768px) {
        form #corb #type2:checked + label::after, form #m-corb #type2:checked + label::after, .form #corb #type2:checked + label::after, .form #m-corb #type2:checked + label::after {
          display: none; } }
    form #corb #type2:checked + label::before, form #m-corb #type2:checked + label::before, .form #corb #type2:checked + label::before, .form #m-corb #type2:checked + label::before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 11px 7px 0;
      border-color: transparent #000000 transparent transparent;
      position: absolute;
      right: 4.65rem;
      top: 4px; }
      @media (max-width: 768px) {
        form #corb #type2:checked + label::before, form #m-corb #type2:checked + label::before, .form #corb #type2:checked + label::before, .form #m-corb #type2:checked + label::before {
          display: none; } }
    form #corb label[for="type2"], form #m-corb label[for="type2"], .form #corb label[for="type2"], .form #m-corb label[for="type2"] {
      position: relative; }
      form #corb label[for="type2"]:hover::after, form #m-corb label[for="type2"]:hover::after, .form #corb label[for="type2"]:hover::after, .form #m-corb label[for="type2"]:hover::after {
        content: '需經過審核';
        color: white;
        background: black;
        padding: 5px 6px;
        font-size: 12px;
        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;
        margin-left: .7rem; }
        @media (max-width: 768px) {
          form #corb label[for="type2"]:hover::after, form #m-corb label[for="type2"]:hover::after, .form #corb label[for="type2"]:hover::after, .form #m-corb label[for="type2"]:hover::after {
            display: none; } }
      form #corb label[for="type2"]:hover::before, form #m-corb label[for="type2"]:hover::before, .form #corb label[for="type2"]:hover::before, .form #m-corb label[for="type2"]:hover::before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 7px 11px 7px 0;
        border-color: transparent #000000 transparent transparent;
        position: absolute;
        right: 4.65rem;
        top: 4px; }
        @media (max-width: 768px) {
          form #corb label[for="type2"]:hover::before, form #m-corb label[for="type2"]:hover::before, .form #corb label[for="type2"]:hover::before, .form #m-corb label[for="type2"]:hover::before {
            display: none; } }
  form .link_1, .form .link_1 {
    margin-bottom: -10px;
    text-align: right;
    cursor: pointer !important;
    margin-left: .3rem;
    width: 100%; }
    @media (max-width: 768px) {
      form .link_1#forgetpw-btn, .form .link_1#forgetpw-btn {
        width: unset; } }
  form .btn, .form .btn {
    margin-top: 20px; }

.member-wrap {
  min-height: 38rem; }
  .member-wrap h3 {
    margin: 2rem;
    margin-bottom: 3rem; }
    .member-wrap h3 span {
      display: block;
      font-size: 16px; }
    @media (max-width: 768px) {
      .member-wrap h3 {
        margin: 1.5rem 0; } }
  .member-wrap nav {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: .8rem;
    font-size: .83rem; }
    .member-wrap nav ul {
      list-style: none;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      margin-left: 2rem; }
      .member-wrap nav ul li {
        margin: 0 2rem; }
        .member-wrap nav ul li a {
          color: #bfbfbf; }
        .member-wrap nav ul li a.active {
          color: #131313; }
        @media (max-width: 768px) {
          .member-wrap nav ul li {
            margin: 0 .5rem; } }
      @media (max-width: 768px) {
        .member-wrap nav ul {
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
             -moz-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
             -moz-box-orient: vertical;
             -moz-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          line-height: 36px;
          margin: 0; } }
    @media (max-width: 640px) {
      .member-wrap nav {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  .member-wrap h5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    line-height: 24px; }
    .member-wrap h5 span {
      display: block; }
    .member-wrap h5::after {
      content: '';
      display: block;
      background: black;
      width: 30px;
      height: 1px;
      margin: 8px .8rem; }
  .member-wrap ul {
    padding: 0; }
  .member-wrap .order {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 4rem; }
    .member-wrap .order .order-info-wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      width: 68%; }
      @media (max-width: 961px) {
        .member-wrap .order .order-info-wrap {
          width: 50%; } }
      @media (max-width: 640px) {
        .member-wrap .order .order-info-wrap {
          width: 100%; } }
    .member-wrap .order .order-title {
      width: 100%;
      font-size: .83rem;
      margin-bottom: 1.5rem;
      padding-left: 2rem;
      padding-bottom: .5rem;
      border-bottom: 1px solid #65676d; }
    .member-wrap .order .order-date {
      font-size: .83rem;
      padding-left: 2rem;
      width: 15%; }
    .member-wrap .order .order-info {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 0.83em;
      width: 50%; }
      .member-wrap .order .order-info p {
        margin: 0; }
        .member-wrap .order .order-info p span {
          display: block; }
      @media (max-width: 1100px) {
        .member-wrap .order .order-info {
          width: 100%;
          margin: 1.2rem 0; } }
    @media (max-width: 768px) {
      .member-wrap .order {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .member-wrap .order .order-info {
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
             -moz-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; }
          .member-wrap .order .order-info .status {
            text-align: left; }
        .member-wrap .order .order-date {
          padding: 0;
          width: auto; }
        .member-wrap .order .price {
          margin: 0; } }
    .member-wrap .order .price {
      font-size: 0.83rem;
      margin-right: 2rem; }
    .member-wrap .order .status {
      margin: 1rem 0;
      width: 100%;
      text-align: center; }
    .member-wrap .order .p-btn {
      font-size: .6rem;
      position: absolute;
      right: 2rem;
      top: 0; }
  .member-wrap .order-detail .order .order-title {
    border-bottom: 1px solid #e6e6e6; }
  .member-wrap .order-detail .order .order-info .track {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    margin-top: 2rem; }
  .member-wrap .order-detail .order:nth-child(2) .order-info {
    width: 100%;
    padding-left: 2rem; }
    .member-wrap .order-detail .order:nth-child(2) .order-info p {
      width: 100%;
      line-height: 2rem; }
  .member-wrap .order-detail .order-info-wrap {
    width: 100%; }
    .member-wrap .order-detail .order-info-wrap .order-info {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
         -moz-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      @media (max-width: 1100px) {
        .member-wrap .order-detail .order-info-wrap .order-info {
          padding-left: 2rem; } }
      .member-wrap .order-detail .order-info-wrap .order-info:first-child {
        padding-left: 2rem; }
      @media (max-width: 1100px) {
        .member-wrap .order-detail .order-info-wrap .order-info .p-btn {
          position: relative;
          text-align: center;
          margin: auto;
          margin-top: 0rem; } }
  .member-wrap .member-content h4[data-type="empty"] {
    text-align: center; }
    .member-wrap .member-content h4[data-type="empty"] span {
      display: block; }
  .member-wrap .member-content .btn[data-type="empty"] {
    width: 250px;
    margin: auto;
    margin-top: 2rem; }
  .member-wrap .member-content ul.profile {
    margin-left: 2rem; }
    @media (max-width: 768px) {
      .member-wrap .member-content ul.profile {
        margin-left: 0rem; } }
  .member-wrap .member-content .edit, .member-wrap .member-content .member-edit, .member-wrap .member-content .btn {
    margin-left: 2rem; }
    @media (max-width: 768px) {
      .member-wrap .member-content .edit, .member-wrap .member-content .member-edit, .member-wrap .member-content .btn {
        margin-left: 0rem; } }
  .member-wrap .member-content .list-inner {
    margin-top: 5rem; }
    .member-wrap .member-content .list-inner .item-info {
      width: 50%; }
    .member-wrap .member-content .list-inner .item-qty .qty {
      margin-left: 3.5rem; }
    @media (max-width: 640px) {
      .member-wrap .member-content .list-inner .item-qty .qty {
        position: absolute;
        top: 1rem;
        margin: 0; }
      .member-wrap .member-content .list-inner .items-wrapper .total-wrapper .item-title .name {
        width: 100%; }
      .member-wrap .member-content .list-inner .items-wrapper .total-wrapper .wrap {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
           -moz-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
        .member-wrap .member-content .list-inner .items-wrapper .total-wrapper .wrap span {
          position: static; }
      .member-wrap .member-content .list-inner .items-wrapper .item-total span {
        position: absolute;
        left: 0;
        margin-right: 0; } }
  .member-wrap .member-content .profile .order {
    margin: 0; }
  .member-wrap .member-content .profile .order-info {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem; }
  .member-wrap .member-content .edit {
    font-size: 13px;
    letter-spacing: 2px;
    -webkit-transform: translateY(20px);
       -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
         -o-transform: translateY(20px);
            transform: translateY(20px); }
  .member-wrap .member-edit {
    list-style-type: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 2rem; }
    @media (max-width: 768px) {
      .member-wrap .member-edit {
        margin-left: 0rem; } }
    .member-wrap .member-edit li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
         -moz-box-orient: vertical;
         -moz-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      margin: 1rem 0;
      width: 48%; }
      .member-wrap .member-edit li input[name="no-edit"] {
        cursor: not-allowed;
        background: #F6F6F6; }
        .member-wrap .member-edit li input[name="no-edit"]::after {
          content: '';
          display: block;
          width: 100%; }
      .member-wrap .member-edit li input {
        padding: 1rem; }
    .member-wrap .member-edit label {
      font-size: 13px;
      color: #65676d;
      margin-bottom: 5px;
      padding-left: .8rem; }
  .member-wrap .back {
    width: 20%;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 980px) {
      .member-wrap .back {
        width: 40%; } }
    @media (max-width: 768px) {
      .member-wrap .back {
        width: 60%; } }
  .member-wrap .btn {
    display: block;
    padding: .8rem;
    font-size: 16px;
    line-height: 24px;
    margin-top: 1rem;
    margin-left: 2rem; }
    @media (max-width: 768px) {
      .member-wrap .btn {
        margin-left: 0rem; } }
    .member-wrap .btn span {
      font-size: 14px; }

.member-links {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
  border-bottom: 1px solid #ededed; }
  .member-links a {
    font-size: 18px;
    font-weight: 400;
    color: black;
    letter-spacing: 2px;
    opacity: .4;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms; }
    .member-links a.active, .member-links a:hover {
      opacity: 1; }
  .member-links span {
    font-size: 18px;
    font-weight: 400;
    color: black;
    padding: 0 2rem;
    opacity: 1; }

.l-wrapper[data-type="member"] {
  padding-bottom: 10rem !important; }
  @media (max-width: 768px) {
    .l-wrapper[data-type="member"] {
      padding-bottom: 4rem !important; } }
  .l-wrapper[data-type="member"] h3 {
    font-weight: 400; }
  .l-wrapper[data-type="member"] .m-info {
    width: 65%;
    margin: 0 auto;
    padding: 0;
    padding-top: 5rem !important;
    list-style-type: none;
    margin-bottom: 3rem;
    font-weight: 400; }
    .l-wrapper[data-type="member"] .m-info li {
      margin-bottom: 1.5rem; }
      .l-wrapper[data-type="member"] .m-info li span {
        min-width: 120px !important;
        margin-right: 2rem !important; }
    @media (max-width: 768px) {
      .l-wrapper[data-type="member"] .m-info {
        padding-top: 3rem;
        margin-bottom: 2rem;
        width: 95%; } }
  .l-wrapper[data-type="member"] .o-info, .l-wrapper[data-type="member"] .m-info {
    padding-top: 1rem; }
    .l-wrapper[data-type="member"] .o-info li, .l-wrapper[data-type="member"] .m-info li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .l-wrapper[data-type="member"] .o-info li span, .l-wrapper[data-type="member"] .m-info li span {
        display: block;
        min-width: 160px;
        margin-right: 1rem;
        border-right: 1px solid #ddd; }
      .l-wrapper[data-type="member"] .o-info li div, .l-wrapper[data-type="member"] .m-info li div {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap; }
        .l-wrapper[data-type="member"] .o-info li div .link_1, .l-wrapper[data-type="member"] .m-info li div .link_1 {
          width: auto;
          margin-left: 1rem; }
      @media (max-width: 768px) {
        .l-wrapper[data-type="member"] .o-info li, .l-wrapper[data-type="member"] .m-info li {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
             -moz-box-orient: vertical;
             -moz-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
             -moz-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start; }
          .l-wrapper[data-type="member"] .o-info li span, .l-wrapper[data-type="member"] .m-info li span {
            width: 100%;
            margin-right: 0;
            border-right: 0;
            border-bottom: 1px solid #ddd;
            margin-bottom: 1.2rem; }
          .l-wrapper[data-type="member"] .o-info li div, .l-wrapper[data-type="member"] .m-info li div {
            width: 100%; }
            .l-wrapper[data-type="member"] .o-info li div .link_1, .l-wrapper[data-type="member"] .m-info li div .link_1 {
              width: 100%;
              background: black;
              color: white;
              text-decoration: none;
              padding: .8rem;
              margin-left: 0;
              text-align: center;
              margin-top: .5rem;
              font-size: 15px; } }
  .l-wrapper[data-type="member"] .o-total {
    width: auto;
    padding-top: 1rem;
    margin: 0;
    margin-left: auto !important;
    padding-right: 6.5%; }
    .l-wrapper[data-type="member"] .o-total li {
      padding: 0 2rem;
      text-align: right;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
         -moz-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      white-space: nowrap; }
      .l-wrapper[data-type="member"] .o-total li span {
        display: block;
        min-width: 200px;
        text-align: left; }
    @media (max-width: 768px) {
      .l-wrapper[data-type="member"] .o-total {
        width: 100%; }
        .l-wrapper[data-type="member"] .o-total li {
          padding: 0 1rem;
          margin-left: unset; } }
  .l-wrapper[data-type="member"] .link_1 {
    width: 65%;
    margin: auto;
    text-align: left; }
    @media (max-width: 768px) {
      .l-wrapper[data-type="member"] .link_1 {
        width: 95%; } }
  .l-wrapper[data-type="member"] form:last-child::before {
    height: -webkit-fill-available; }
  .l-wrapper[data-type="member"] table {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
    border-collapse: collapse;
    border-spacing: 0;
    font-weight: 400; }
    @media (max-width: 768px) {
      .l-wrapper[data-type="member"] table {
        margin-top: 2rem; } }
    .l-wrapper[data-type="member"] table thead tr {
      border-bottom: 1px solid; }
      .l-wrapper[data-type="member"] table thead tr th {
        padding: 1.5rem 0;
        font-weight: 400; }
    @media (max-width: 768px) {
      .l-wrapper[data-type="member"] table thead {
        display: none; } }
    .l-wrapper[data-type="member"] table tbody tr td {
      padding: 2.5rem 0; }
    .l-wrapper[data-type="member"] table tbody tr:nth-child(even) {
      background: #f9f9f9; }
    @media (max-width: 768px) {
      .l-wrapper[data-type="member"] table tbody tr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 1rem 0; }
        .l-wrapper[data-type="member"] table tbody tr:nth-child(1) {
          padding-top: 0; }
        .l-wrapper[data-type="member"] table tbody tr:nth-child(even) {
          margin: .5rem 0; }
        .l-wrapper[data-type="member"] table tbody tr td {
          padding: 1rem 0;
          text-align: left;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          -js-display: flex;
          display: flex; }
          .l-wrapper[data-type="member"] table tbody tr td::before {
            content: attr(data-type);
            width: 45%;
            padding-left: 2rem; } }
    .l-wrapper[data-type="member"] table tbody tr a {
      color: black;
      font-size: 14px;
      text-decoration: underline;
      font-weight: 400; }
  .l-wrapper[data-type="member"] .list-inner {
    width: 90%;
    margin: auto;
    margin-top: 2rem; }
    .l-wrapper[data-type="member"] .list-inner h3 {
      margin-bottom: 1rem; }
    .l-wrapper[data-type="member"] .list-inner .items-wrapper {
      padding-bottom: 0;
      padding: 0; }
      .l-wrapper[data-type="member"] .list-inner .items-wrapper .item .item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap; }
        .l-wrapper[data-type="member"] .list-inner .items-wrapper .item .item:first-child {
          padding-top: 1rem; }
        .l-wrapper[data-type="member"] .list-inner .items-wrapper .item .item img {
          max-width: 150px;
          margin-right: 1rem; }
    .l-wrapper[data-type="member"] .list-inner .item-title div:first-child {
      width: 35%; }
      @media (max-width: 768px) {
        .l-wrapper[data-type="member"] .list-inner .item-title div:first-child {
          width: 38%;
          padding-left: 0; } }
    .l-wrapper[data-type="member"] .list-inner .quantity, .l-wrapper[data-type="member"] .list-inner .item-wrap-price, .l-wrapper[data-type="member"] .list-inner .item-wrap-total {
      width: 18%; }
      @media (max-width: 768px) {
        .l-wrapper[data-type="member"] .list-inner .quantity, .l-wrapper[data-type="member"] .list-inner .item-wrap-price, .l-wrapper[data-type="member"] .list-inner .item-wrap-total {
          width: 20%; } }

.gray {
  width: 100%;
  font-weight: 500;
  text-align: center;
  opacity: .4;
  margin: 2rem 0 -.5rem 0;
  letter-spacing: 2px; }

/* Grid */
/* color */
/* height */
.j-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  max-width: 1440px;
  margin: auto;
  width: 90%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  @media (max-width: 900px) {
    .j-wrapper {
      width: 94%; } }
  .j-wrapper .banner {
    margin-top: -1px;
    width: 100%; }
    .j-wrapper .banner img {
      width: 100%; }
  .j-wrapper .p-item {
    margin: 2rem 2.6%;
    width: 28%; }
    @media (max-width: 900px) {
      .j-wrapper .p-item {
        width: 44.8%; } }
    @media (max-width: 768px) {
      .j-wrapper .p-item {
        width: 100%; } }
    .j-wrapper .p-item.hover .img img {
      -webkit-transform: scale(1.05);
         -moz-transform: scale(1.05);
          -ms-transform: scale(1.05);
           -o-transform: scale(1.05);
              transform: scale(1.05); }
    .j-wrapper .p-item.hover .img::after {
      content: '';
      width: 100%;
      height: 100%;
      background: black;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: .35; }
    .j-wrapper .p-item.hover .img::before {
      content: 'MORE，閱讀更多';
      -webkit-transition-delay: 200ms;
         -moz-transition-delay: 200ms;
           -o-transition-delay: 200ms;
              transition-delay: 200ms;
      color: white;
      position: absolute;
      top: 47%;
      left: 32%;
      z-index: 1;
      opacity: 1;
      letter-spacing: 2px;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      -webkit-transition-delay: 100ms;
         -moz-transition-delay: 100ms;
           -o-transition-delay: 100ms;
              transition-delay: 100ms;
      -webkit-transform: translateY(0px);
         -moz-transform: translateY(0px);
          -ms-transform: translateY(0px);
           -o-transform: translateY(0px);
              transform: translateY(0px); }
    .j-wrapper .p-item .img {
      width: 100%;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      overflow: hidden;
      position: relative;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
      .j-wrapper .p-item .img::before {
        content: 'MORE，閱讀更多';
        -webkit-transition-delay: 200ms;
           -moz-transition-delay: 200ms;
             -o-transition-delay: 200ms;
                transition-delay: 200ms;
        color: white;
        position: absolute;
        top: 47%;
        left: 32%;
        z-index: 1;
        opacity: 0;
        letter-spacing: 2px;
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms;
        -webkit-transition-delay: 100ms;
           -moz-transition-delay: 100ms;
             -o-transition-delay: 100ms;
                transition-delay: 100ms;
        -webkit-transform: translateY(20px);
           -moz-transform: translateY(20px);
            -ms-transform: translateY(20px);
             -o-transform: translateY(20px);
                transform: translateY(20px); }
      .j-wrapper .p-item .img img {
        -webkit-transition: all 800ms;
        -o-transition: all 800ms;
        -moz-transition: all 800ms;
        transition: all 800ms;
        -o-object-fit: cover;
           object-fit: cover;
        display: block; }
      .j-wrapper .p-item .img:hover::after, .j-wrapper .p-item .img:active::after, .j-wrapper .p-item .img:focus::after {
        content: '';
        width: 100%;
        height: 100%;
        background: black;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: .35; }
      .j-wrapper .p-item .img:hover::before, .j-wrapper .p-item .img:active::before, .j-wrapper .p-item .img:focus::before {
        opacity: 1;
        -webkit-transform: translateY(0px);
           -moz-transform: translateY(0px);
            -ms-transform: translateY(0px);
             -o-transform: translateY(0px);
                transform: translateY(0px); }
      .j-wrapper .p-item .img:hover img, .j-wrapper .p-item .img:active img, .j-wrapper .p-item .img:focus img {
        -webkit-transform: scale(1.05);
           -moz-transform: scale(1.05);
            -ms-transform: scale(1.05);
             -o-transform: scale(1.05);
                transform: scale(1.05); }
    .j-wrapper .p-item span {
      margin: .5rem 0;
      display: block; }
    .j-wrapper .p-item h3 {
      font-size: 16px;
      line-height: 1.7rem;
      font-weight: 400;
      letter-spacing: 1.5px;
      -webkit-transition: all 500ms;
      -o-transition: all 500ms;
      -moz-transition: all 500ms;
      transition: all 500ms;
      min-height: 3.1rem; }
      @media (max-width: 768px) {
        .j-wrapper .p-item h3 {
          min-height: auto; } }
    .j-wrapper .p-item p {
      margin: 0;
      color: black;
      opacity: .7;
      text-align: justify; }
      .j-wrapper .p-item p::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: black;
        margin: .6rem 0;
        opacity: .3; }
    .j-wrapper .p-item:hover .img::after, .j-wrapper .p-item:active .img::after, .j-wrapper .p-item:focus .img::after {
      content: '';
      width: 100%;
      height: 100%;
      background: black;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: .35; }
    .j-wrapper .p-item:hover .img::before, .j-wrapper .p-item:active .img::before, .j-wrapper .p-item:focus .img::before {
      opacity: 1;
      -webkit-transform: translateY(0px);
         -moz-transform: translateY(0px);
          -ms-transform: translateY(0px);
           -o-transform: translateY(0px);
              transform: translateY(0px); }
    .j-wrapper .p-item:hover .img img, .j-wrapper .p-item:active .img img, .j-wrapper .p-item:focus .img img {
      -webkit-transform: scale(1.05);
         -moz-transform: scale(1.05);
          -ms-transform: scale(1.05);
           -o-transform: scale(1.05);
              transform: scale(1.05); }
    .j-wrapper .p-item:hover h3, .j-wrapper .p-item:active h3, .j-wrapper .p-item:focus h3 {
      color: #6E9143; }
  .j-wrapper .list-wrap {
    width: 96%;
    margin: auto;
    position: relative;
    padding-top: 1.6rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 3rem; }
  .j-wrapper ul.c-list {
    width: 60%;
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 500;
    position: relative; }
    .j-wrapper ul.c-list::before {
      content: attr(data-type);
      position: absolute;
      opacity: .5;
      top: -3rem;
      font-weight: 300;
      letter-spacing: 2px; }
    .j-wrapper ul.c-list li {
      font-size: 18px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      margin-bottom: .8rem; }
      .j-wrapper ul.c-list li a {
        color: #4C4C4C; }
      .j-wrapper ul.c-list li.active {
        position: relative; }
        .j-wrapper ul.c-list li.active a {
          color: #6E9143;
          position: relative; }
          .j-wrapper ul.c-list li.active a::after {
            content: '';
            display: block;
            width: 99%;
            height: 2px;
            background: #6E9143;
            position: absolute;
            bottom: -8px; }
      .j-wrapper ul.c-list li::after {
        content: '';
        display: block;
        width: 1px;
        height: 90%;
        background: #65676d;
        margin: 0 1rem;
        -webkit-transform: rotate(26deg);
           -moz-transform: rotate(26deg);
            -ms-transform: rotate(26deg);
             -o-transform: rotate(26deg);
                transform: rotate(26deg); }
      .j-wrapper ul.c-list li:last-child::after {
        display: none; }
      .j-wrapper ul.c-list li:hover a {
        color: #6E9143; }
    @media (max-width: 768px) {
      .j-wrapper ul.c-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center; }
        .j-wrapper ul.c-list li {
          margin-bottom: 1rem; }
          .j-wrapper ul.c-list li::after {
            display: none; } }
  .j-wrapper .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: auto;
    width: 80%;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e6e6e6; }
    @media (max-width: 768px) {
      .j-wrapper .title {
        width: 90%; } }
  .j-wrapper h1 {
    font-size: 23px;
    font-weight: 400;
    width: 100%;
    margin-top: 5rem;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    line-height: 2rem; }
  .j-wrapper h2 {
    font-size: 16px;
    font-weight: 300;
    color: #65676d;
    width: 80%;
    margin-right: 3rem; }
    @media (max-width: 768px) {
      .j-wrapper h2 {
        width: 100%;
        margin-right: 0; } }
  @media (max-width: 768px) {
    .j-wrapper .info-wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      margin-top: 2rem;
      width: 100%; }
      .j-wrapper .info-wrap time {
        width: 50%; } }
  .j-wrapper .info-wrap time, .j-wrapper .info-wrap .category {
    display: block;
    font-size: 14px;
    margin-bottom: 2rem; }
    .j-wrapper .info-wrap time a, .j-wrapper .info-wrap .category a {
      color: black;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms; }
      .j-wrapper .info-wrap time a:hover, .j-wrapper .info-wrap .category a:hover {
        color: #6E9143; }
    .j-wrapper .info-wrap time::before, .j-wrapper .info-wrap .category::before {
      content: attr(data-type);
      display: block;
      color: #65676d;
      font-size: 14px;
      font-weight: 400;
      opacity: .8;
      -webkit-transform: scale(0.9);
         -moz-transform: scale(0.9);
          -ms-transform: scale(0.9);
           -o-transform: scale(0.9);
              transform: scale(0.9);
      -webkit-transform-origin: left;
         -moz-transform-origin: left;
          -ms-transform-origin: left;
           -o-transform-origin: left;
              transform-origin: left;
      margin-bottom: .2rem; }

/* Grid */
/* color */
/* height */
.pj {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 0rem; }
  @media (max-width: 980px) {
    .pj {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
         -moz-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 4rem; } }
  .pj .wrap {
    width: 27%;
    margin-bottom: 3rem; }
    @media (max-width: 980px) {
      .pj .wrap {
        width: 45%; } }
    @media (max-width: 640px) {
      .pj .wrap {
        width: 100%; } }
    .pj .wrap:nth-child(3n+2) {
      margin-left: 9%;
      margin-right: 9%; }
      @media (max-width: 980px) {
        .pj .wrap:nth-child(3n+2) {
          margin: 0;
          margin-bottom: 3rem; } }
    .pj .wrap img {
      -webkit-box-shadow: none;
         -moz-box-shadow: none;
              box-shadow: none;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms; }
      .pj .wrap img:hover {
        opacity: .8;
        -webkit-transform: scale(1.05);
           -moz-transform: scale(1.05);
            -ms-transform: scale(1.05);
             -o-transform: scale(1.05);
                transform: scale(1.05);
        -webkit-transform: translateY(-5px);
           -moz-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
             -o-transform: translateY(-5px);
                transform: translateY(-5px); }
    .pj .wrap h4 {
      letter-spacing: 1px;
      margin: 1rem 0;
      line-height: 2rem;
      font-weight: 100;
      font-size: 14px;
      margin-left: 1rem; }
    .pj .wrap:hover h4 {
      opacity: .8; }
    .pj .wrap .tag {
      color: #65676d;
      letter-spacing: 1px;
      font-weight: 300;
      font-size: 12px;
      opacity: .8;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      margin-left: 1rem;
      display: block;
      line-height: 3rem; }
      .pj .wrap .tag::before {
        content: "";
        opacity: .6;
        display: block;
        width: 30px;
        height: 1px;
        background: #bfbfbf; }
      .pj .wrap .tag:hover {
        color: black;
        opacity: 1; }

.tag-wrap {
  width: 100%;
  padding: 0;
  margin-bottom: 5rem;
  margin-top: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -1.5rem; }
  .tag-wrap .tag {
    color: #65676d;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 13px;
    opacity: .8;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    margin-left: 3rem;
    display: block;
    line-height: 3rem; }
    .tag-wrap .tag:first-child {
      width: 100%; }
    .tag-wrap .tag:hover {
      color: black; }

.pjh1 {
  font-weight: 100 !important;
  margin-bottom: 1.5rem;
  letter-spacing: 3px !important; }
  @media (max-width: 768px) {
    .pjh1 {
      text-align: center; } }

.tg {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .tg ul {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    padding: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 80%; }
    @media (max-width: 768px) {
      .tg ul {
        width: 100%; } }
    .tg ul li {
      padding-bottom: 2.5rem; }
    .tg ul .tag {
      background: #F6F6F6;
      color: #65676d;
      padding: 1rem 1.2rem;
      -webkit-border-radius: 5px;
         -moz-border-radius: 5px;
              border-radius: 5px;
      margin-right: 1rem;
      font-size: 13px;
      -webkit-transition: all 500ms;
      -o-transition: all 500ms;
      -moz-transition: all 500ms;
      transition: all 500ms; }
      .tg ul .tag:hover {
        color: black;
        opacity: .6; }

.tag-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -4rem; }
  .tag-section .tag {
    background: #F6F6F6;
    color: #65676d;
    padding: 1rem 1.2rem;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    margin-right: 1rem;
    font-size: 13px;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    -moz-transition: all 500ms;
    transition: all 500ms; }

/* Grid */
/* color */
/* height */
#contact-map {
  height: 28rem;
  width: 100%;
  display: block;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: -2rem; }
  @media (max-width: 768px) {
    #contact-map {
      height: 20rem; } }
  @media (max-width: 640px) {
    #contact-map {
      height: 20rem; } }

/* Grid */
/* color */
/* height */
.c {
  overflow-x: hidden;
  margin-top: -6rem !important;
  width: 86%; }
  @media (max-width: 768px) {
    .c {
      width: 95%; } }
  .c h1 {
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee; }
  .c h3 {
    color: black;
    font-weight: 400;
    letter-spacing: 2px;
    -webkit-font-smoothing: antialiased; }
  .c #check-info {
    width: 51%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    @media (max-width: 900px) {
      .c #check-info {
        width: 100%; } }
    .c #check-info:last-child::before {
      display: none; }
    .c #check-info h3 {
      text-align: left; }
    .c #check-info input[type="radio"] + label {
      margin-right: auto;
      background: transparent;
      padding-left: 0;
      width: 86%;
      padding: .5rem 0; }
      @media (max-width: 768px) {
        .c #check-info input[type="radio"] + label {
          padding: .5rem; } }
    .c #check-info .agree {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      width: 100%;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 1.5rem; }
      @media (max-width: 768px) {
        .c #check-info .agree {
          width: 95%;
          margin: auto;
          margin-bottom: 1.5rem; } }
      .c #check-info .agree p {
        margin: 0;
        display: inline-block;
        vertical-align: top;
        font-size: 15px; }
        @media (max-width: 768px) {
          .c #check-info .agree p {
            margin-left: .8rem; } }
      .c #check-info .agree a {
        color: black; }
        .c #check-info .agree a:hover {
          color: #6E9143; }
    .c #check-info .form {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border: 0;
      outline: 0;
      width: 100%;
      padding-top: .5rem;
      margin-bottom: 1rem; }
      @media (max-width: 768px) {
        .c #check-info .form {
          width: 95% !important; } }
      @media (max-width: 900px) {
        .c #check-info .form label {
          white-space: normal;
          margin-top: .2rem;
          margin-left: .2rem; } }
      .c #check-info .form .notify {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: #D5001A;
        margin-right: auto;
        margin-bottom: -2px;
        font-size: 13px; }
        .c #check-info .form .notify::before {
          content: url(../images/info-icon.svg);
          -webkit-transform: scale(0.9);
             -moz-transform: scale(0.9);
              -ms-transform: scale(0.9);
               -o-transform: scale(0.9);
                  transform: scale(0.9);
          margin: 0px .3rem 0 .5rem;
          padding-top: 4px; }
      .c #check-info .form h3 {
        margin: .5rem 0 -.5rem 0;
        -webkit-transform: translateX(-8px);
           -moz-transform: translateX(-8px);
            -ms-transform: translateX(-8px);
             -o-transform: translateX(-8px);
                transform: translateX(-8px); }
        @media (max-width: 768px) {
          .c #check-info .form h3 {
            -webkit-transform: translateX(0px);
               -moz-transform: translateX(0px);
                -ms-transform: translateX(0px);
                 -o-transform: translateX(0px);
                    transform: translateX(0px); } }
      .c #check-info .form#del {
        padding-left: 5%;
        padding-bottom: 1rem; }
      .c #check-info .form .select {
        margin-bottom: 1.5rem; }
      .c #check-info .form#ship-option h3 {
        padding-top: 1rem; }
      .c #check-info .form#receipt-option {
        margin-bottom: .5rem;
        width: 100%; }
        .c #check-info .form#receipt-option h3 {
          -webkit-transform: translateX(-16px);
             -moz-transform: translateX(-16px);
              -ms-transform: translateX(-16px);
               -o-transform: translateX(-16px);
                  transform: translateX(-16px);
          margin-bottom: -.5rem; }
          @media (max-width: 768px) {
            .c #check-info .form#receipt-option h3 {
              -webkit-transform: translateX(0px);
                 -moz-transform: translateX(0px);
                  -ms-transform: translateX(0px);
                   -o-transform: translateX(0px);
                      transform: translateX(0px); } }
        .c #check-info .form#receipt-option input[type="text"] {
          margin-bottom: .5rem; }
      .c #check-info .form#info-option {
        width: 95%; }
        .c #check-info .form#info-option h3 {
          -webkit-transform: translateX(-22px);
             -moz-transform: translateX(-22px);
              -ms-transform: translateX(-22px);
               -o-transform: translateX(-22px);
                  transform: translateX(-22px);
          margin-bottom: -.3rem; }
          @media (max-width: 768px) {
            .c #check-info .form#info-option h3 {
              -webkit-transform: translateX(0px);
                 -moz-transform: translateX(0px);
                  -ms-transform: translateX(0px);
                   -o-transform: translateX(0px);
                      transform: translateX(0px); } }

.co-list {
  background: #F9F9F9;
  width: 44%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem 2rem 0 2rem; }
  @media (max-width: 900px) {
    .co-list {
      width: 100%;
      padding: 1rem; } }
  .co-list h3 {
    padding: 3rem 0; }
    @media (max-width: 900px) {
      .co-list h3 {
        padding: 2rem 0; } }
  .co-list .item-total-wrap {
    position: absolute;
    top: 1rem;
    right: 0; }
  .co-list .item-total-wrap .qty-label {
    color: red;
  }
  .co-list .promo input, .co-list .promo .select, .co-list .promo a {
    margin-bottom: 1rem; }
  .co-list .promo .btn {
    background: #e6e6e6;
    color: black;
    letter-spacing: 1px; }
  .co-list .promo .link_1 {
    width: 100%;
    text-align: center;
    display: block; }
  .co-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    .co-list ul li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      position: relative;
      margin: auto;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 1rem 7rem 1.5rem 0;
      border-top: 1px solid #e6e6e6;
      border-bottom: 1px solid #e6e6e6;
      margin-top: -1px; }
      @media (max-width: 768px) {
        .co-list ul li {
          padding: .5rem 7rem 0 0; } }
      .co-list ul li .cover {
        width: 35%;
        margin-bottom: .5rem; }
        .co-list ul li .cover img {
          width: 100%; }
      .co-list ul li .info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-left: .5rem; }
        .co-list ul li .info p {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          -js-display: flex;
          display: flex;
          margin: 0;
          font-size: 14px;
          font-weight: 400;
          -webkit-font-smoothing: antialiased;
          letter-spacing: 1.5px;
          margin-bottom: .2rem; }
          .co-list ul li .info p:first-child {
            margin: 1rem 0; }
        .co-list ul li .info span {
          margin-left: 5px; }
          .co-list ul li .info span:after {
            display: none; }
      .co-list ul li .item-price {
        font-size: 14px;
        opacity: .5; }
  .co-list .total-wrapper {
    margin: 1rem 0 2rem 0; }
    .co-list .total-wrapper .wrap {
      text-transform: uppercase;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
         -moz-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: .35rem 0;
      font-weight: 400; }
    .co-list .total-wrapper hr {
      display: block;
      width: 100%;
      margin: auto;
      opacity: .1;
      border-style: solid;
      border-width: .5px;
      margin: .5rem 0; }
    .co-list .total-wrapper p {
      text-align: right;
      font-size: 13px;
      opacity: .5; }

.d-wrapper {
  text-align: center;
  padding-bottom: 0rem; }
  .d-wrapper h1 {
    margin-top: 5rem;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 24px;
    color: #6E9143; }
  .d-wrapper h2 {
    font-size: 19px;
    margin: .8rem 0;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #6E9143;
    text-transform: uppercase; }
    .d-wrapper p {
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    .d-wrapper p >span {
      font-weight: 600;
    }
  .d-wrapper .img {
    margin: 4rem 0 3rem 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .d-wrapper .btn {
    display: block;
    width: 30%;
    margin: auto; }
    @media (max-width: 980px) {
      .d-wrapper .btn {
        width: 60%; } }
    @media (max-width: 640px) {
      .d-wrapper .btn {
        width: 80%; } }
  .d-wrapper .link_1 {
    display: block;
    text-align: center;
    padding-top: 1.5rem;
    width: 30%;
    margin: auto; }

.cart-wrapper h1, .l-wrapper[data-type="member"] h1 {
  text-align: center;
  margin-bottom: 3rem; }

@media (max-width: 768px) {
  .cart-wrapper .items-wrapper, .l-wrapper[data-type="member"] .items-wrapper {
    padding: 0 4%; } }

.cart-wrapper .history-item, .l-wrapper[data-type="member"] .history-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 900px) {
    .cart-wrapper .history-item, .l-wrapper[data-type="member"] .history-item {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .cart-wrapper .history-item .item-info, .l-wrapper[data-type="member"] .history-item .item-info {
    white-space: nowrap; }

.cart-wrapper .item-title, .l-wrapper[data-type="member"] .item-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  opacity: .6;
  letter-spacing: 2px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1.3rem; }
  .cart-wrapper .item-title div:first-child, .l-wrapper[data-type="member"] .item-title div:first-child {
    width: 40%;
    text-align: center; }
    @media (max-width: 768px) {
      .cart-wrapper .item-title div:first-child, .l-wrapper[data-type="member"] .item-title div:first-child {
        width: 38%;
        padding-left: 2rem; } }

.cart-wrapper .quantity, .l-wrapper[data-type="member"] .quantity {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  background: white; }
  @media (max-width: 640px) {
    .cart-wrapper .quantity, .l-wrapper[data-type="member"] .quantity {
      margin-right: 0rem;
      margin-bottom: 0rem; } }
  .cart-wrapper .quantity .qty, .l-wrapper[data-type="member"] .quantity .qty {
    border: 0;
    text-align: center; }
    .cart-wrapper .quantity .qty:focus, .l-wrapper[data-type="member"] .quantity .qty:focus {
      outline: none; }
  .cart-wrapper .quantity .qty-btn, .l-wrapper[data-type="member"] .quantity .qty-btn {
    font-size: 26px;
    font-weight: 100;
    color: black;
    padding: 0 .2rem;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .cart-wrapper .quantity .qty-btn:hover, .l-wrapper[data-type="member"] .quantity .qty-btn:hover {
      color: #65676d; }
  .cart-wrapper .quantity .qty, .l-wrapper[data-type="member"] .quantity .qty {
    padding: 0; }
  .cart-wrapper .quantity input, .l-wrapper[data-type="member"] .quantity input {
    background: transparent;
    font-size: 16px;
    width: 100%; }

.cart-wrapper .item-wrap-price, .cart-wrapper .item-wrap-total, .cart-wrapper .quantity, .l-wrapper[data-type="member"] .item-wrap-price, .l-wrapper[data-type="member"] .item-wrap-total, .l-wrapper[data-type="member"] .quantity {
  width: 16%;
  position: relative; }
  @media (max-width: 768px) {
    .cart-wrapper .item-wrap-price, .cart-wrapper .item-wrap-total, .cart-wrapper .quantity, .l-wrapper[data-type="member"] .item-wrap-price, .l-wrapper[data-type="member"] .item-wrap-total, .l-wrapper[data-type="member"] .quantity {
      width: 22%; } }

.cart-wrapper .qty-label, .l-wrapper[data-type="member"] .qty-label {
  text-align: center;
  color: red;
  font-weight: 400;
  font-size: 14px; }

.cart-wrapper .item-wrap-price, .cart-wrapper .item-wrap-total, .l-wrapper[data-type="member"] .item-wrap-price, .l-wrapper[data-type="member"] .item-wrap-total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.cart-wrapper .item, .l-wrapper[data-type="member"] .item {
  padding-bottom: 0;
  border-bottom: 1px solid #eee; }
  .cart-wrapper .item .item, .l-wrapper[data-type="member"] .item .item {
    width: 50%;
    border: 0; }
    .cart-wrapper .item .item .item-tw, .l-wrapper[data-type="member"] .item .item .item-tw {
      margin-bottom: 0; }
    @media (max-width: 768px) {
      .cart-wrapper .item .item, .l-wrapper[data-type="member"] .item .item {
        width: 50%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .cart-wrapper .item .item img, .l-wrapper[data-type="member"] .item .item img {
          width: 80%;
          margin: 0; } }
  @media (max-width: 768px) {
    .cart-wrapper .item, .l-wrapper[data-type="member"] .item {
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.cart-wrapper {
  width: 86%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .cart-wrapper .link_1 {
    text-transform: uppercase;
    margin-top: 1rem; }
  .cart-wrapper .list-inner {
    width: 30%; }
    @media (max-width: 980px) {
      .cart-wrapper .list-inner {
        width: 100%; } }
    .cart-wrapper .list-inner .total-wrapper {
      margin-top: 1rem; }
      .cart-wrapper .list-inner .total-wrapper .wrap {
        text-transform: uppercase;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
           -moz-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: .35rem 0;
        font-weight: 400; }
      .cart-wrapper .list-inner .total-wrapper hr {
        display: block;
        width: 100%;
        margin: auto;
        opacity: .2;
        border-style: solid;
        border-width: .5px;
        margin: .5rem 0; }
      .cart-wrapper .list-inner .total-wrapper p {
        text-align: right;
        font-size: 13px;
        opacity: .5; }
  .cart-wrapper .items-wrapper {
    padding: 0;
    width: 65%; }
    @media (max-width: 980px) {
      .cart-wrapper .items-wrapper {
        width: 100%; } }
    .cart-wrapper .items-wrapper #remove-icon {
      margin-bottom: auto;
      margin-left: .8rem; }
      @media (max-width: 768px) {
        .cart-wrapper .items-wrapper #remove-icon {
          margin-bottom: .5rem; } }
      .cart-wrapper .items-wrapper #remove-icon img {
        width: 14px;
        height: 14px;
        margin-right: 2rem; }
      .cart-wrapper .items-wrapper #remove-icon:hover {
        opacity: .6; }
  .cart-wrapper .item {
    padding: 1rem 0;
    margin-bottom: 0; }
    .cart-wrapper .item:first-child {
      padding: 0; }
    .cart-wrapper .item.add {
      background: rgba(221, 221, 221, 0.25); }
      .cart-wrapper .item.add .quantity {
        background: transparent; }
        .cart-wrapper .item.add .quantity input {
          -webkit-user-select: none;
             -moz-user-select: none;
              -ms-user-select: none;
                  user-select: none; }
        /* .cart-wrapper .item.add .quantity .minus, .cart-wrapper .item.add .quantity .plus {
          display: none; } */
    @media (max-width: 768px) {
      .cart-wrapper .item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap; } }
    .cart-wrapper .item .item {
      width: auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
      @media (max-width: 768px) {
        .cart-wrapper .item .item {
          width: 90%;
          margin: auto;
          margin-bottom: .8rem; } }
      .cart-wrapper .item .item img {
        height: 30%;
        width: 30%;
        margin-right: auto; }
        @media (max-width: 980px) {
          .cart-wrapper .item .item img {
            width: 60%; } }
      .cart-wrapper .item .item .item-info {
        width: 100%; }
        @media (max-width: 980px) {
          .cart-wrapper .item .item .item-info .item-price {
            margin-top: .5rem; } }
    .cart-wrapper .item .item-total-wrapper {
      width: 50%;
      padding-right: 1rem;
      margin-bottom: auto; }
      @media (max-width: 768px) {
        .cart-wrapper .item .item-total-wrapper {
          width: 90%;
          margin: auto;
          padding-right: 0; } }
      .cart-wrapper .item .item-total-wrapper .item-total-wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
           -moz-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-weight: 300;
        white-space: nowrap;
        border-top: 1px solid #e6e6e6; }
        .cart-wrapper .item .item-total-wrapper .item-total-wrap p {
          margin-right: 2.5rem; }
        .cart-wrapper .item .item-total-wrapper .item-total-wrap .quantity {
          width: 50%; }
      .cart-wrapper .item .item-total-wrapper .add-label {
        color: #6E9143;
        background: #C7D4B8;
        font-weight: 400;
        padding: .4rem 0 .2rem 0;
        -webkit-border-radius: 5px;
           -moz-border-radius: 5px;
                border-radius: 5px;
        font-size: 14px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: .5rem; }
      .cart-wrapper .item .item-total-wrapper .item-wrap-total {
        width: 50%;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
           -moz-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        padding-right: .5rem; }
  .cart-wrapper .item-btn[data-type="empty"] {
    display: block;
    width: 40%;
    margin: auto;
    margin-top: 3rem;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms; }
    @media (max-width: 768px) {
      .cart-wrapper .item-btn[data-type="empty"] {
        width: 80%; } }
    .cart-wrapper .item-btn[data-type="empty"]:hover {
      opacity: .9; }
  .cart-wrapper .btn, .cart-wrapper .link_1 {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: auto; }
    @media (max-width: 768px) {
      .cart-wrapper .btn, .cart-wrapper .link_1 {
        width: 100%; } }

/* Grid */
/* color */
/* height */
.recruit .banner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .recruit .banner h1 {
    position: absolute;
    color: white;
    font-weight: 400;
    top: 38%;
    left: 20%;
    font-size: 2.5em;
    line-height: 4rem; }
    .recruit .banner h1 span {
      font-size: .9em;
      letter-spacing: 4px; }
    @media (max-width: 980px) {
      .recruit .banner h1 {
        display: none; } }
  @media (max-width: 980px) {
    .recruit .banner::before {
      content: 'RECRUIT 夥伴招募';
      color: white;
      font-size: 24px;
      text-align: center;
      font-weight: 400;
      letter-spacing: 3px;
      position: absolute;
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background: rgba(0, 0, 0, 0.5); } }

.recruit h2, .recruit .title {
  display: block;
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 2rem 0;
  line-height: 32px; }
  .recruit h2 span, .recruit .title span {
    font-size: 20px; }
  @media (max-width: 980px) {
    .recruit h2, .recruit .title {
      margin: 1.5rem 0; } }

@media (max-width: 980px) {
  .recruit .form {
    width: 86%;
    margin: auto; } }

.recruit .wrapper {
  width: 80%;
  max-width: 1440px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  margin-top: 2rem;
  margin-bottom: 5rem; }
  @media (max-width: 980px) {
    .recruit .wrapper {
      margin-top: 1rem;
      margin-bottom: 3rem;
      width: 90%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .recruit .wrapper .wraps {
    width: 50%; }
    @media (max-width: 980px) {
      .recruit .wrapper .wraps {
        width: 100%; } }
  .recruit .wrapper .wrap {
    width: 90%; }
    @media (max-width: 980px) {
      .recruit .wrapper .wrap {
        width: 100%; } }
    .recruit .wrapper .wrap h3 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: relative;
      height: 70px;
      border-bottom: 1px solid #eee;
      background: white;
      font-weight: 400;
      font-family: -apple-system,'Noto Sans TC', Arial, Helvetica, sans-serif;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      font-size: 16px; }
      .recruit .wrapper .wrap h3::after {
        content: url(../images/b-arrow.svg);
        opacity: .8;
        position: absolute;
        right: 1.5rem;
        top: 18px;
        -webkit-transform: scale(0.8);
           -moz-transform: scale(0.8);
            -ms-transform: scale(0.8);
             -o-transform: scale(0.8);
                transform: scale(0.8);
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms; }
        @media (max-width: 900px) {
          .recruit .wrapper .wrap h3::after {
            right: 1rem;
            top: 18px; } }
      .recruit .wrapper .wrap h3:hover {
        cursor: pointer;
        color: #6E9143;
        background: rgba(221, 221, 221, 0.15); }
    .recruit .wrapper .wrap .info {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: justify;
      width: 100%;
      height: 0;
      display: none;
      line-height: 28px;
      font-weight: 300;
      width: 92%;
      margin: auto;
      margin-top: 2rem;
      margin-bottom: 2rem; }
      .recruit .wrapper .wrap .info h4 {
        margin-top: .8rem;
        color: #6E9143;
        font-weight: 400; }
    .recruit .wrapper .wrap.active h3::after {
      -webkit-transform: scale(0.8) rotate(180deg);
         -moz-transform: scale(0.8) rotate(180deg);
          -ms-transform: scale(0.8) rotate(180deg);
           -o-transform: scale(0.8) rotate(180deg);
              transform: scale(0.8) rotate(180deg); }
    .recruit .wrapper .wrap.active .info {
      height: auto;
      display: block;
      position: relative; }
      .recruit .wrapper .wrap.active .info::after {
        content: '';
        display: block;
        height: 1px;
        width: 110%;
        background: #eee;
        position: absolute;
        bottom: -2rem;
        left: -5%; }
        @media (max-width: 980px) {
          .recruit .wrapper .wrap.active .info::after {
            width: 98%;
            left: 1%; } }

.recruit .grey-btn {
  width: 100%;
  font-size: 15px; }
  .recruit .grey-btn img {
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms; }
  .recruit .grey-btn:hover {
    -webkit-transform: translateY(-4px);
       -moz-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
         -o-transform: translateY(-4px);
            transform: translateY(-4px); }

/* Grid */
/* color */
/* height */
.index-banner-pc {
  width: 100%;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content; }
  .index-banner-pc .banner-wrap {
    display: block;
    position: relative; }
    .index-banner-pc .banner-wrap.slick-active img {
      -webkit-animation: bActive 50s infinite;
         -moz-animation: bActive 50s infinite;
           -o-animation: bActive 50s infinite;
              animation: bActive 50s infinite; }
      @media (max-width: 980px) {
        .index-banner-pc .banner-wrap.slick-active img {
          -webkit-animation: none;
             -moz-animation: none;
               -o-animation: none;
                  animation: none; } }

@-webkit-keyframes bActive {
  from {
    -webkit-transform: scale(1.15) translateX(-60px);
            transform: scale(1.15) translateX(-60px); }
  to {
    -webkit-transform: scale(1.15) translateX(60px);
            transform: scale(1.15) translateX(60px); } }

@-moz-keyframes bActive {
  from {
    -moz-transform: scale(1.15) translateX(-60px);
         transform: scale(1.15) translateX(-60px); }
  to {
    -moz-transform: scale(1.15) translateX(60px);
         transform: scale(1.15) translateX(60px); } }

@-o-keyframes bActive {
  from {
    -o-transform: scale(1.15) translateX(-60px);
       transform: scale(1.15) translateX(-60px); }
  to {
    -o-transform: scale(1.15) translateX(60px);
       transform: scale(1.15) translateX(60px); } }

@keyframes bActive {
  from {
    -webkit-transform: scale(1.15) translateX(-60px);
       -moz-transform: scale(1.15) translateX(-60px);
         -o-transform: scale(1.15) translateX(-60px);
            transform: scale(1.15) translateX(-60px); }
  to {
    -webkit-transform: scale(1.15) translateX(60px);
       -moz-transform: scale(1.15) translateX(60px);
         -o-transform: scale(1.15) translateX(60px);
            transform: scale(1.15) translateX(60px); } }
    .index-banner-pc .banner-wrap .wrap {
      position: absolute;
      top: 37%;
      left: 12rem;
      color: white; }
      .index-banner-pc .banner-wrap .wrap h3, .index-banner-pc .banner-wrap .wrap h4, .index-banner-pc .banner-wrap .wrap p {
        color: white; }
      .index-banner-pc .banner-wrap .wrap h3 {
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 1rem; }
      .index-banner-pc .banner-wrap .wrap h4 {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 3rem;
        line-height: 1rem; }
      .index-banner-pc .banner-wrap .wrap p {
        text-decoration: underline;
        font-size: 14px; }
      @media (max-width: 980px) {
        .index-banner-pc .banner-wrap .wrap {
          left: 4rem;
          top: 30%; } }
      @media (max-width: 768px) {
        .index-banner-pc .banner-wrap .wrap {
          left: 2rem;
          top: 30%;
          width: 85%; }
          .index-banner-pc .banner-wrap .wrap h3 {
            font-size: .9rem;
            margin-bottom: .2rem; }
          .index-banner-pc .banner-wrap .wrap h4 {
            font-size: .9rem; }
          .index-banner-pc .banner-wrap .wrap p {
            display: none; } }

a {
  cursor: pointer !important; }

.index-sec {
  position: relative;
  padding-bottom: 1rem; }
  .index-sec h3[data-type="index"] {
    font-size: 22px;
    margin-top: 35px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center; }
    @media (max-width: 768px) {
      .index-sec h3[data-type="index"] {
        margin-top: 20px; } }
  .index-sec h4[data-type="index"] {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin: auto;
    padding: .6rem 0 1.2rem 0;
    margin-bottom: 3rem;
    width: 86%;
    border-bottom: 1px solid #e6e6e6; }
    @media (max-width: 768px) {
      .index-sec h4[data-type="index"] {
        margin-bottom: .5rem; } }
  .index-sec .link_2 {
    width: auto;
    position: absolute;
    right: 8%;
    top: 1.6rem;
    opacity: .5; }
    .index-sec .link_2:hover {
      opacity: 1; }
  .index-sec .more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: justify;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    color: black;
    position: absolute;
    right: 2.5rem;
    bottom: 0; }
    @media (max-width: 900px) {
      .index-sec .more {
        position: static;
        margin-top: 3rem;
        margin-left: -51px; } }
    .index-sec .more a {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 2px;
      padding: 1rem 2rem;
      color: black;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms; }
    .index-sec .more a[data-type="new"] {
      letter-spacing: 2px; }
    .index-sec .more a[data-type="more"] {
      letter-spacing: 1px; }
    .index-sec .more img {
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      -webkit-transform: translateX(-10px);
         -moz-transform: translateX(-10px);
          -ms-transform: translateX(-10px);
           -o-transform: translateX(-10px);
              transform: translateX(-10px); }
    .index-sec .more span {
      display: block;
      letter-spacing: 1px;
      color: black;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms; }
    .index-sec .more:hover img {
      -webkit-transform: translateX(0px);
         -moz-transform: translateX(0px);
          -ms-transform: translateX(0px);
           -o-transform: translateX(0px);
              transform: translateX(0px); }
    .index-sec .more:hover a, .index-sec .more:hover span {
      opacity: .9; }
  .index-sec .slick-dots {
    margin-top: 0rem !important; }
  .index-sec .c-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    width: 86%;
    margin: auto;
    margin-top: 2rem; }
    .index-sec .c-wrapper .img {
      width: 50%; }
    .index-sec .c-wrapper .c-wrap {
      width: 50%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .index-sec .c-wrapper .c-wrap ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
        width: 70%; }
        @media (max-width: 980px) {
          .index-sec .c-wrapper .c-wrap ul {
            width: 85%; } }
        .index-sec .c-wrapper .c-wrap ul li {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          -js-display: flex;
          display: flex;
          -webkit-flex-wrap: wrap;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
          margin-bottom: 1rem;
          letter-spacing: 2px; }
          .index-sec .c-wrapper .c-wrap ul li a {
            color: black; }
            .index-sec .c-wrapper .c-wrap ul li a:hover {
              color: #6E9143; }
          .index-sec .c-wrapper .c-wrap ul li span {
            width: 80px;
            display: block; }
          .index-sec .c-wrapper .c-wrap ul li address {
            display: block;
            word-break: break-all; }
            @media (max-width: 768px) {
              .index-sec .c-wrapper .c-wrap ul li address {
                margin-top: .5rem; } }
            .index-sec .c-wrapper .c-wrap ul li address:last-child {
              padding-left: 80px; }
              @media (max-width: 768px) {
                .index-sec .c-wrapper .c-wrap ul li address:last-child {
                  padding-left: 0;
                  margin-top: 0; } }
    @media (max-width: 768px) {
      .index-sec .c-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .index-sec .c-wrapper .img, .index-sec .c-wrapper .c-wrap {
          width: 100%; }
        .index-sec .c-wrapper .c-wrap {
          margin-top: 2rem; }
          .index-sec .c-wrapper .c-wrap ul {
            width: 90%; } }

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

.flex-item {
  margin: auto;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 8px; }
  @media (max-width: 980px) {
    .flex-item {
      margin: 5px; } }
  .flex-item .flex-info {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 1.5rem;
    background: rgba(82, 92, 110, 0.6);
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms; }
    @media (max-width: 768px) {
      .flex-item .flex-info {
        padding: .8rem; } }
    .flex-item .flex-info h5 {
      text-align: center;
      color: white;
      font-size: 15px;
      -webkit-transition: all 400ms;
      -o-transition: all 400ms;
      -moz-transition: all 400ms;
      transition: all 400ms;
      -webkit-transition-delay: 100ms;
         -moz-transition-delay: 100ms;
           -o-transition-delay: 100ms;
              transition-delay: 100ms;
      -webkit-transform: translateY(300px);
         -moz-transform: translateY(300px);
          -ms-transform: translateY(300px);
           -o-transform: translateY(300px);
              transform: translateY(300px);
      opacity: 0; }
      .flex-item .flex-info h5::after {
        content: '';
        display: block;
        width: 2.5rem;
        height: 1px;
        background: white;
        margin: auto;
        margin-bottom: .5rem;
        margin-top: .8rem;
        opacity: .6; }
        @media (max-width: 768px) {
          .flex-item .flex-info h5::after {
            margin-bottom: -.2rem;
            margin-top: .4rem;
            width: 1.5rem; } }
      @media (max-width: 768px) {
        .flex-item .flex-info h5 {
          line-height: 20px;
          font-size: 13px;
          padding-top: .3rem;
          -webkit-transform-origin: bottom;
             -moz-transform-origin: bottom;
              -ms-transform-origin: bottom;
               -o-transform-origin: bottom;
                  transform-origin: bottom;
          -webkit-transform: translateY(0px) scale(0.9);
             -moz-transform: translateY(0px) scale(0.9);
              -ms-transform: translateY(0px) scale(0.9);
               -o-transform: translateY(0px) scale(0.9);
                  transform: translateY(0px) scale(0.9); } }
    .flex-item .flex-info p {
      text-align: justify;
      color: white;
      font-size: 13px;
      opacity: .9;
      -webkit-transition: all 400ms;
      -o-transition: all 400ms;
      -moz-transition: all 400ms;
      transition: all 400ms;
      -webkit-transition-delay: 180ms;
         -moz-transition-delay: 180ms;
           -o-transition-delay: 180ms;
              transition-delay: 180ms;
      -webkit-transform: translateY(300px);
         -moz-transform: translateY(300px);
          -ms-transform: translateY(300px);
           -o-transform: translateY(300px);
              transform: translateY(300px);
      opacity: 0; }
      @media (max-width: 768px) {
        .flex-item .flex-info p {
          line-height: 18px;
          font-size: 12px;
          -webkit-transform-origin: top;
             -moz-transform-origin: top;
              -ms-transform-origin: top;
               -o-transform-origin: top;
                  transform-origin: top;
          -webkit-transform: translateY(0px) scale(0.9);
             -moz-transform: translateY(0px) scale(0.9);
              -ms-transform: translateY(0px) scale(0.9);
               -o-transform: translateY(0px) scale(0.9);
                  transform: translateY(0px) scale(0.9); } }
  .flex-item:hover img, .flex-item:active img, .flex-item .info-over img {
    -webkit-transition: all 800ms;
    -o-transition: all 800ms;
    -moz-transition: all 800ms;
    transition: all 800ms;
    opacity: .85; }
  .flex-item:hover .flex-info, .flex-item:active .flex-info, .flex-item .info-over .flex-info {
    opacity: 1; }
    .flex-item:hover .flex-info h5, .flex-item:active .flex-info h5, .flex-item .info-over .flex-info h5 {
      -webkit-transform: translateY(0px);
         -moz-transform: translateY(0px);
          -ms-transform: translateY(0px);
           -o-transform: translateY(0px);
              transform: translateY(0px);
      opacity: 1; }
      @media (max-width: 768px) {
        .flex-item:hover .flex-info h5, .flex-item:active .flex-info h5, .flex-item .info-over .flex-info h5 {
          -webkit-transform: translateY(0px) scale(0.95);
             -moz-transform: translateY(0px) scale(0.95);
              -ms-transform: translateY(0px) scale(0.95);
               -o-transform: translateY(0px) scale(0.95);
                  transform: translateY(0px) scale(0.95); } }
    .flex-item:hover .flex-info p, .flex-item:active .flex-info p, .flex-item .info-over .flex-info p {
      -webkit-transform: translateY(0px);
         -moz-transform: translateY(0px);
          -ms-transform: translateY(0px);
           -o-transform: translateY(0px);
              transform: translateY(0px);
      opacity: 1; }
      @media (max-width: 768px) {
        .flex-item:hover .flex-info p, .flex-item:active .flex-info p, .flex-item .info-over .flex-info p {
          -webkit-transform: translateY(0px) scale(0.95);
             -moz-transform: translateY(0px) scale(0.95);
              -ms-transform: translateY(0px) scale(0.95);
               -o-transform: translateY(0px) scale(0.95);
                  transform: translateY(0px) scale(0.95); } }

.s {
  width: -webkit-calc(25% - 16px) !important;
  width: -moz-calc(25% - 16px) !important;
  width: calc(25% - 16px) !important; }

.big {
  width: -webkit-calc(50% - 16px) !important;
  width: -moz-calc(50% - 16px) !important;
  width: calc(50% - 16px) !important; }
  .big .flex-info {
    padding: 0 20%; }
    @media (max-width: 768px) {
      .big .flex-info {
        padding: 0 5%; } }

@media (max-width: 980px) {
  .s {
    width: -webkit-calc(50% - 10px) !important;
    width: -moz-calc(50% - 10px) !important;
    width: calc(50% - 10px) !important; }
  .big {
    width: -webkit-calc(100% - 10px) !important;
    width: -moz-calc(100% - 10px) !important;
    width: calc(100% - 10px) !important; } }

.order {
  background: #F8F8F8;
  padding: 5px 0 40px 0;
  margin: 35px 0; }
  @media (max-width: 768px) {
    .order {
      margin: 10px 0; } }
  .order p {
    width: 60%;
    margin: auto;
    text-align: center;
    padding: 2rem 0;
    line-height: 1.8rem; }
    @media (max-width: 768px) {
      .order p {
        width: 82%;
        text-align: justify;
        color: black;
        font-size: 16px;
        font-weight: 300;
        line-height: 2rem; } }

.order-wrap {
  width: 100%;
  max-width: 1400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  list-style-type: none;
  margin: 0 auto;
  padding: 0; }
  .order-wrap li {
    width: 24%;
    padding: 4% 0;
    background: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #E4E4E4;
    margin-left: -1px;
    margin-top: -1px;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    @media (max-width: 900px) {
      .order-wrap li {
        width: 42%; }
        .order-wrap li:nth-child(2):after, .order-wrap li:nth-child(2)::before {
          -webkit-transform: rotate(90deg);
             -moz-transform: rotate(90deg);
              -ms-transform: rotate(90deg);
               -o-transform: rotate(90deg);
                  transform: rotate(90deg);
          bottom: -31px;
          left: 45%; }
        .order-wrap li:nth-child(2)::before {
          bottom: -32px; }
        .order-wrap li:nth-child(3) {
          -webkit-box-ordinal-group: 5;
          -webkit-order: 4;
             -moz-box-ordinal-group: 5;
              -ms-flex-order: 4;
                  order: 4; }
          .order-wrap li:nth-child(3):after, .order-wrap li:nth-child(3)::before {
            -webkit-transform: rotate(180deg);
               -moz-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                 -o-transform: rotate(180deg);
                    transform: rotate(180deg);
            left: -24px; }
          .order-wrap li:nth-child(3)::before {
            left: -25px; } }
    .order-wrap li::after {
      content: '';
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 20px 0 20px 25px;
      border-color: transparent transparent transparent #ffffff;
      right: -24px;
      z-index: 2; }
    .order-wrap li::before {
      content: '';
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 20px 0 20px 25px;
      border-color: transparent transparent transparent #E4E4E4;
      right: -25px;
      z-index: 1; }
    .order-wrap li:last-child::after {
      display: none; }
    .order-wrap li:last-child::before {
      display: none; }
    .order-wrap li img {
      max-height: 80px;
      margin-top: 1.5rem; }
      @media (max-width: 900px) {
        .order-wrap li img {
          height: 60px; } }
      .order-wrap li img:first-child {
        display: block; }
      .order-wrap li img:nth-child(2) {
        display: none; }
    .order-wrap li span {
      font-weight: 400;
      margin-top: 2rem;
      line-height: 1.8rem; }
      @media (max-width: 900px) {
        .order-wrap li span {
          font-size: 13px;
          line-height: 1.5rem; } }
    .order-wrap li:hover {
      background: #6E9143;
      color: white;
      border: 1px solid #6E9143; }
      .order-wrap li:hover:after {
        border-width: 20px 0 20px 25px;
        border-color: transparent transparent transparent #6E9143;
        z-index: 4; }
      .order-wrap li:hover:before {
        border-width: 20px 0 20px 25px;
        border-color: transparent transparent transparent #6E9143;
        z-index: 5; }
      .order-wrap li:hover img:first-child {
        display: none; }
      .order-wrap li:hover img:nth-child(2) {
        display: block; }
    .order-wrap li.active {
      background: #6E9143;
      color: white;
      border: 1px solid #6E9143; }
      .order-wrap li.active:after {
        border-width: 20px 0 20px 25px;
        border-color: transparent transparent transparent #6E9143;
        z-index: 4; }
      .order-wrap li.active:before {
        border-width: 20px 0 20px 25px;
        border-color: transparent transparent transparent #6E9143;
        z-index: 5; }
      .order-wrap li.active img:first-child {
        display: none; }
      .order-wrap li.active img:nth-child(2) {
        display: block; }

.index-about {
  max-width: 1440px;
  width: 87%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex; }
  .index-about .ap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #F6F6F6;
    line-height: 2.5rem;
    color: black;
    font-weight: 400;
    font-size: 21px;
    letter-spacing: 3px;
    position: relative;
    -webkit-font-smoothing: antialiased; }
    .index-about .ap span {
      font-size: 17px;
      letter-spacing: .6px;
      -webkit-font-smoothing: auto;
      margin-left: -2px; }
    .index-about .ap .link_1 {
      opacity: .6;
      letter-spacing: 1px;
      position: absolute;
      bottom: 2rem;
      left: 42%; }
    .index-about .ap .drop {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: -5rem;
      width: 3px;
      height: 150px;
      overflow: hidden;
      margin-bottom: 2rem; }
      .index-about .ap .drop span {
        display: block;
        width: 1px;
        height: 150px;
        background: black;
        -webkit-transition: all;
        -o-transition: all;
        -moz-transition: all;
        transition: all; }
        .index-about .ap .drop span:first-child {
          -webkit-animation: drop 5s infinite;
             -moz-animation: drop 5s infinite;
               -o-animation: drop 5s infinite;
                  animation: drop 5s infinite; }
        .index-about .ap .drop span:nth-child(2) {
          -webkit-animation: drop2 5s infinite;
             -moz-animation: drop2 5s infinite;
               -o-animation: drop2 5s infinite;
                  animation: drop2 5s infinite;
          -webkit-animation-delay: 3s;
             -moz-animation-delay: 3s;
               -o-animation-delay: 3s;
                  animation-delay: 3s; }

@-webkit-keyframes drop {
  from {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px); }
  to {
    -webkit-transform: translateY(150px);
            transform: translateY(150px); } }

@-moz-keyframes drop {
  from {
    -moz-transform: translateY(-50px);
         transform: translateY(-50px); }
  to {
    -moz-transform: translateY(150px);
         transform: translateY(150px); } }

@-o-keyframes drop {
  from {
    -o-transform: translateY(-50px);
       transform: translateY(-50px); }
  to {
    -o-transform: translateY(150px);
       transform: translateY(150px); } }

@keyframes drop {
  from {
    -webkit-transform: translateY(-50px);
       -moz-transform: translateY(-50px);
         -o-transform: translateY(-50px);
            transform: translateY(-50px); }
  to {
    -webkit-transform: translateY(150px);
       -moz-transform: translateY(150px);
         -o-transform: translateY(150px);
            transform: translateY(150px); } }

@-webkit-keyframes drop2 {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px); }
  to {
    -webkit-transform: translateY(150px);
            transform: translateY(150px); } }

@-moz-keyframes drop2 {
  from {
    -moz-transform: translateY(-100px);
         transform: translateY(-100px); }
  to {
    -moz-transform: translateY(150px);
         transform: translateY(150px); } }

@-o-keyframes drop2 {
  from {
    -o-transform: translateY(-100px);
       transform: translateY(-100px); }
  to {
    -o-transform: translateY(150px);
       transform: translateY(150px); } }

@keyframes drop2 {
  from {
    -webkit-transform: translateY(-100px);
       -moz-transform: translateY(-100px);
         -o-transform: translateY(-100px);
            transform: translateY(-100px); }
  to {
    -webkit-transform: translateY(150px);
       -moz-transform: translateY(150px);
         -o-transform: translateY(150px);
            transform: translateY(150px); } }
    .index-about .ap img {
      width: 22px;
      margin-bottom: 3rem; }
      .index-about .ap img.white {
        display: none; }
      .index-about .ap img.black {
        -webkit-transform-origin: top;
           -moz-transform-origin: top;
            -ms-transform-origin: top;
             -o-transform-origin: top;
                transform-origin: top;
        -webkit-animation: dropImg 3s;
           -moz-animation: dropImg 3s;
             -o-animation: dropImg 3s;
                animation: dropImg 3s;
        -webkit-animation-delay: 5s;
           -moz-animation-delay: 5s;
             -o-animation-delay: 5s;
                animation-delay: 5s; }

@-webkit-keyframes dropImg {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-moz-keyframes dropImg {
  0% {
    -moz-transform: scale(0);
         transform: scale(0); }
  50% {
    -moz-transform: scale(0);
         transform: scale(0); }
  100% {
    -moz-transform: scale(1);
         transform: scale(1); } }

@-o-keyframes dropImg {
  0% {
    -o-transform: scale(0);
       transform: scale(0); }
  50% {
    -o-transform: scale(0);
       transform: scale(0); }
  100% {
    -o-transform: scale(1);
       transform: scale(1); } }

@keyframes dropImg {
  0% {
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1); } }
  .index-about .img {
    width: 50%; }
  @media (max-width: 768px) {
    .index-about {
      position: relative;
      display: block; }
      .index-about .ap {
        width: 100%;
        height: 98%;
        position: absolute;
        background: rgba(0, 0, 0, 0.3);
        color: white;
        font-size: 19px; }
        .index-about .ap span {
          font-size: 15px;
          margin-left: -4px; }
        .index-about .ap .black {
          display: none; }
        .index-about .ap img.white {
          display: block; }
        .index-about .ap .drop {
          height: 100px; }
          .index-about .ap .drop span {
            background: white; }
      .index-about .link_1 {
        color: white; }
      .index-about .img {
        width: 100%; } }

.index-banner {
  position: relative;
  padding-bottom: 45%; }
  @media (max-width: 800px) {
    .index-banner {
      padding-top: 0;
      overflow: hidden;
      padding-bottom: 0; } }
  .index-banner .banner-wrapper {
    top: 0; }
    .index-banner .banner-wrapper .banner-wrap {
      display: block;
      -webkit-transition: all 500ms;
      -o-transition: all 500ms;
      -moz-transition: all 500ms;
      transition: all 500ms;
      display: none; }
      .index-banner .banner-wrapper .banner-wrap img {
        display: block;
        -o-object-fit: contain;
           object-fit: contain;
        position: absolute; }
        @media (max-width: 800px) {
          .index-banner .banner-wrapper .banner-wrap img {
            position: relative;
            z-index: -1; } }
      .index-banner .banner-wrapper .banner-wrap.active {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex; }
    @media (max-width: 800px) {
      .index-banner .banner-wrapper {
        position: relative; }
        .index-banner .banner-wrapper .banner-wrap {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          -js-display: flex;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
             -moz-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          .index-banner .banner-wrapper .banner-wrap::before {
            content: attr(data-type-title);
            display: block;
            position: absolute;
            padding-left: 24px;
            padding-bottom: 2rem;
            color: white;
            font-size: .8rem;
            line-height: 1.8rem;
            text-transform: uppercase;
            white-space: pre;
            -webkit-font-smoothing: antialiased; }
          .index-banner .banner-wrapper .banner-wrap::after {
            content: 'READ MORE';
            position: absolute;
            padding-left: 30px;
            padding-top: 5rem;
            font-size: 12px;
            color: white;
            opacity: .6;
            -webkit-transform: scale(0.8);
               -moz-transform: scale(0.8);
                -ms-transform: scale(0.8);
                 -o-transform: scale(0.8);
                    transform: scale(0.8);
            -webkit-transform-origin: left;
               -moz-transform-origin: left;
                -ms-transform-origin: left;
                 -o-transform-origin: left;
                    transform-origin: left; } }
  .index-banner .banner-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 1440px;
    padding: 0 10% 0 12%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    height: 100%; }
    @media (max-width: 800px) {
      .index-banner .banner-info {
        display: none; } }
    .index-banner .banner-info a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
         -moz-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      height: 100%;
      color: white;
      padding-bottom: 10%;
      opacity: .8;
      -webkit-transition: all 300ms;
      -o-transition: all 300ms;
      -moz-transition: all 300ms;
      transition: all 300ms;
      -webkit-transform-origin: top;
         -moz-transform-origin: top;
          -ms-transform-origin: top;
           -o-transform-origin: top;
              transform-origin: top;
      position: relative; }
      .index-banner .banner-info a div {
        -webkit-transition: all 500ms;
        -o-transition: all 500ms;
        -moz-transition: all 500ms;
        transition: all 500ms;
        -webkit-transform-origin: top;
           -moz-transform-origin: top;
            -ms-transform-origin: top;
             -o-transform-origin: top;
                transform-origin: top;
        padding-left: 12%;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        height: 80px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        white-space: nowrap; }
        .index-banner .banner-info a div h3, .index-banner .banner-info a div h4 {
          color: white;
          text-transform: uppercase; }
        .index-banner .banner-info a div h3 {
          font-size: 16px;
          letter-spacing: 2px;
          font-weight: 500; }
        .index-banner .banner-info a div h4 {
          font-size: 15px;
          opacity: 1;
          letter-spacing: 1px; }
        .index-banner .banner-info a div p {
          font-size: 12px;
          display: none;
          -webkit-transition: all 500ms;
          -o-transition: all 500ms;
          -moz-transition: all 500ms;
          transition: all 500ms;
          -webkit-transition-delay: 200ms;
             -moz-transition-delay: 200ms;
               -o-transition-delay: 200ms;
                  transition-delay: 200ms;
          -webkit-transform: translateX(30);
             -moz-transform: translateX(30);
              -ms-transform: translateX(30);
               -o-transform: translateX(30);
                  transform: translateX(30);
          -webkit-transform: scale(0.95);
             -moz-transform: scale(0.95);
              -ms-transform: scale(0.95);
               -o-transform: scale(0.95);
                  transform: scale(0.95);
          -webkit-transform-origin: left;
             -moz-transform-origin: left;
              -ms-transform-origin: left;
               -o-transform-origin: left;
                  transform-origin: left;
          opacity: 0;
          padding-top: 10px;
          margin: 0; }
          @media (max-width: 800px) {
            .index-banner .banner-info a div p {
              -webkit-transition-delay: 0;
                 -moz-transition-delay: 0;
                   -o-transition-delay: 0;
                      transition-delay: 0; } }
      .index-banner .banner-info a:hover {
        opacity: 1; }
        .index-banner .banner-info a:hover div {
          -webkit-transform-origin: top;
             -moz-transform-origin: top;
              -ms-transform-origin: top;
               -o-transform-origin: top;
                  transform-origin: top;
          height: 110px;
          border-left: 1px solid rgba(255, 255, 255, 0.3); }
          .index-banner .banner-info a:hover div p {
            -webkit-transform: translateX(0);
               -moz-transform: translateX(0);
                -ms-transform: translateX(0);
                 -o-transform: translateX(0);
                    transform: translateX(0);
            display: block;
            opacity: .6; }

.word {
  width: 86%;
  margin: auto;
  font-size: 20px;
  text-align: center;
  line-height: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 200px;
  font-weight: 400; }
  .word span {
    font-size: 18px;
    font-size: 300; }

.no-result {
  width: 86%;
  margin: auto;
  font-size: 20px;
  text-align: center;
  line-height: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 300px;
  opacity: .6; }

/* Grid */
/* color */
/* height */
.about .about-header {
  position: relative;
  margin-bottom: 3rem; }
  .about .about-header::before {
    content: '';
    padding-top: 45%;
    display: block; }
  @media (max-width: 768px) {
    .about .about-header {
      margin-bottom: 80px; }
      .about .about-header::before {
        display: none; } }
  .about .about-header .about-img {
    position: absolute;
    z-index: -1;
    top: 0; }
    @media (max-width: 768px) {
      .about .about-header .about-img {
        position: relative; }
        .about .about-header .about-img::before {
          content: '十年來我們為了更好的咖啡而堅持';
          color: white;
          font-size: 16px;
          text-align: center;
          font-weight: 400;
          letter-spacing: 3px;
          position: absolute;
          width: 100%;
          height: 97%;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          -js-display: flex;
          display: flex;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
             -moz-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: center;
             -moz-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          background: rgba(0, 0, 0, 0.5); } }
  .about .about-header .wrap {
    position: absolute;
    width: 50%;
    max-width: 800px;
    padding-left: 9%;
    top: 18%; }
    .about .about-header .wrap h1 {
      color: white;
      font-size: 18px;
      text-align: center;
      font-weight: 400;
      letter-spacing: 3px; }
    .about .about-header .wrap nav {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      -js-display: flex;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 2rem; }
      .about .about-header .wrap nav a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        -js-display: flex;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        color: white;
        height: 100px;
        width: 70%;
        padding-top: .5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        -webkit-transition: all 100ms;
        -o-transition: all 100ms;
        -moz-transition: all 100ms;
        transition: all 100ms;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 2.5px;
        opacity: .8; }
        .about .about-header .wrap nav a::before {
          content: '→';
          position: absolute;
          font-size: 24px;
          opacity: 0;
          left: 10px;
          top: 42%;
          -webkit-transition: all 300ms;
          -o-transition: all 300ms;
          -moz-transition: all 300ms;
          transition: all 300ms; }
        .about .about-header .wrap nav a:hover {
          background: rgba(255, 255, 255, 0.3);
          opacity: 1; }
          .about .about-header .wrap nav a:hover::before {
            opacity: 1;
            left: 45px; }
    @media (max-width: 1200px) {
      .about .about-header .wrap {
        padding-left: 5%;
        top: 8%; }
        .about .about-header .wrap nav {
          margin-top: .5rem; } }
    @media (max-width: 980px) {
      .about .about-header .wrap nav {
        margin-top: 1rem; }
        .about .about-header .wrap nav a {
          height: 80px; } }
    @media (max-width: 768px) {
      .about .about-header .wrap {
        position: relative;
        width: 100%;
        padding-left: 0;
        top: 0; }
        .about .about-header .wrap h1 {
          display: none; }
        .about .about-header .wrap nav {
          width: 100%;
          margin-top: 0px;
          border-bottom: 1px solid #ddd; }
          .about .about-header .wrap nav a {
            width: 100%;
            color: black; }
            .about .about-header .wrap nav a:nth-child(2) {
              border-top: 1px solid #ddd;
              border-bottom: 1px solid #ddd; }
            .about .about-header .wrap nav a::before {
              opacity: .2;
              left: 50px;
              font-size: 24px; }
            .about .about-header .wrap nav a:hover::before, .about .about-header .wrap nav a:active::before {
              left: 50px; } }

.about #about, .about #team {
  width: 85%;
  margin: auto; }
  @media (max-width: 768px) {
    .about #about, .about #team {
      width: 95%; } }
  .about #about:target, .about #team:target {
    padding-top: 100px;
    margin-top: -100px; }
  .about #about h2[data-type="title"], .about #about h3[data-type="title"], .about #team h2[data-type="title"], .about #team h3[data-type="title"] {
    width: 86%;
    margin: auto;
    font-weight: 500; }
    @media (max-width: 768px) {
      .about #about h2[data-type="title"], .about #about h3[data-type="title"], .about #team h2[data-type="title"], .about #team h3[data-type="title"] {
        width: 91%; } }
  .about #about h2[data-type="title"], .about #team h2[data-type="title"] {
    text-transform: uppercase;
    font-size: 22px; }
  .about #about h3[data-type="title"], .about #team h3[data-type="title"] {
    text-transform: uppercase;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    padding-top: .5rem;
    padding-bottom: 1.5rem; }
  .about #about .info-wrapper, .about #team .info-wrapper {
    margin: 1.8rem 0; }
    @media (max-width: 768px) {
      .about #about .info-wrapper div, .about #team .info-wrapper div {
        margin-bottom: 1.5rem; }
      .about #about .info-wrapper .left, .about #team .info-wrapper .left {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
           -moz-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }
  .about #about .htmlinfo h3, .about #team .htmlinfo h3 {
    color: black;
    font-size: 20px; }
  .about #about .htmlinfo .center, .about #team .htmlinfo .center {
    color: black;
    font-size: 20px;
    text-align: center;
    margin-top: 3rem;
    font-weight: 500;
    -webkit-font-smoothing: antialiased; }
  .about #about .htmlinfo .deco, .about #team .htmlinfo .deco {
    width: 100%;
    margin: auto;
    height: 1px;
    background: black;
    opacity: .08;
    display: block;
    margin: 1.5rem 0 2rem 0; }

.about #team .wrap {
  width: 48%;
  padding: 1rem 3rem; }
  .about #team .wrap img {
    width: 100%;
    display: block; }
  @media (max-width: 768px) {
    .about #team .wrap {
      width: 100% !important;
      padding: .5rem 1rem; } }

.about #team .htmlinfo {
  margin-bottom: 0; }

.resume {
  margin-top: 1.5rem; }
