* {
  -webkit-overflow-scrolling: touch;
}

html {
  overflow: scroll;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
  width: 0px;
  background: transparent;
}

.CSSfadeIn {
  animation: fadein 0.5s;
}

.text-capitalize {
  text-transform: capitalize;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.link {
  cursor: pointer;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.logo {
  width: 200px;
  height: auto;
}

a {
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  letter-spacing: 1px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  opacity: 0.75;
}

img {
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif, 'Avenir',
    sans-serif;
  line-height: 1.5;
  font-size: 18px;
  color: #333;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px;
  font-weight: 200;
}

/* h2,
h3 {
  color: #eeae00;
} */

.text-success {
  color: #008080;
}

.text-danger {
  color: #b40000;
}

.link {
  cursor: pointer;
}

.h-scroll {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}

.h-scroll ul {
  height: 98vh;
  padding: 2px 0;
  margin: 0 auto 20px;
  text-align: center;
}

.h-scroll ul li {
  display: inline-block;
  width: auto;
  padding: 5px 10px;
}

.h-scroll ul li img {
  height: 96vh;
  width: auto;
}

.zoom {
  position: fixed;
  top: -40px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 2;
}

.zoom,
.zoom li {
  height: 100vh;
}

/*.zoom .h-scroll ul li {
  height: 100vh;
}*/

.zoom img {
  height: 98vh !important;
}

.background-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}

.backgroundimg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.backgroundimgblurred {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  filter: blur(300px);
  -webkit-filter: blur(300px);
  height: 100vh;
  opacity: 0.3;
  position: absolute;
}

.panel {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;

  max-width: 500px;
  margin: auto;
  margin-top: 35px;
}

.card {
  width: 32.9%;
  float: left;
  text-align: center;
  min-height: 360px;
}

.card-info {
  padding: 0 10px;
}

.card-info h5 {
  margin-bottom: 0;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

small,
.small {
  font-size: 75%;
}

.block {
  display: block;
}

.center {
  text-align: center;
}

.btn {
  background-color: #008080;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
}

.btn-secondary {
  background-color: #eee;
  padding: 10px 20px;
  color: #000;
  border-radius: 5px;
  text-align: center;
}

input {
  padding: 5px 10px;
  margin-left: 5px;
}

.input-group {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 5px 0;
  margin-bottom: 15px;
}

.input-group input {
  font-weight: 600;
  font-size: 1.1em;
  width: 50px;
  border: none;
  box-shadow: none;
  margin-left: 5px;
  margin-right: 5px;
}

.container-product-detail {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
}

.container-order-form {
  padding: 20px 0;
}

/* Cart */
.cart-container {
  position: fixed;
  right: 0;
  z-index: 98;
  top: 0;
}

.cart-container .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding-bottom: 5px;
  cursor: pointer;
  max-width: 150px;
  right: 0;
  background-color: gold;
  padding: 10px;
  border-radius: 0 0 0 5px;
  overflow: hidden;
}

.cart-container .cart-summary {
  border-top: 2px solid rgba(0, 0, 0, 0.075);
  background-color: #fff;
  padding: 0 20px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: scroll;
  max-width: 600px;
  margin: auto;
}

.cart-container .checkbox-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-container h2 {
  margin-bottom: 0;
  margin-top: 10px;
}

.cart-container .center.small {
  padding: 5px;
}

.checkout-container {
  margin-top: 1em;
}
.checkout-container .btn-sm {
  display: block;
  font-size: 0.8em;
  padding: 5px;
  margin: 5px auto;
  cursor: pointer;
}

.cart-container .cart-summary .cart-item {
  display: table;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 5px 0;
  font-size: 1em;
  vertical-align: middle;
}

.cart-container .cart-summary .cart-item div {
  display: table-cell;
  vertical-align: middle;
}

.cart-container .cart-summary .cart-item div:first-child {
  width: 30px;
}

.cart-container .cart-summary .cart-item div:nth-child(2) {
  width: calc(100% - 100px);
}

.cart-container .cart-summary .cart-item div:last-child {
  width: 70px;
  text-align: right;
}

.cart-container .cart-summary .cart-item-container {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-container .cart-summary .cart-item-container img {
  height: 40px;
  width: 60px;
  object-fit: contain;
  display: block;
  border: 1px solid #eee;
  border-radius: 5px;
}

.cart-container .cart-summary h1 {
  margin-bottom: 0;
}

.cart-container .cart-summary .cart-item i {
  cursor: pointer;
  font-size: 1.5em;
}

.ion-ios-close-empty {
  cursor: pointer;
  font-size: 1.5em;
}

.cart-container .cart-summary .cart-item i {
  margin-right: 5px;
}

.cart-container .cart-summary .cart-item-total {
  font-size: 1.25em;
  font-weight: 600;
}

/* Menu */
.menu-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #fff;
}

.menu-container img {
  height: 80px;
  width: auto;
  padding: 20px;
}

.menu-container .ion-ios-close-empty {
  float: right;
  font-size: 3em;
  padding-right: 15px;
  opacity: 0.75;
  cursor: pointer;
}

.menu-container .ion-ios-close-empty:hover {
  opacity: 1;
}

.menu-container .menu-item {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0.75;
  font-size: 1.25em;
}

/* Navigation */
#navigation {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#navigation .nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

#navigation a {
  font-size: 1.5em;
  padding: 5px 10px;
  vertical-align: middle;
}

#navigation a.search-btn {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  font-size: 3em;
}

.search-container {
  padding: 0 10px;
  position: fixed;
  overflow: scroll;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
}

.search-container input {
  margin: auto;
  font-size: 1em;
  width: 90%;
  border: 2px solid #ccc;
}

.search-container .search-result td {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.search-container h1 {
  margin-bottom: -5px !important;
}
.search-container .search-result {
  font-weight: 600;
  cursor: pointer;
}

.search-container .search-result img {
  height: 40px;
  width: 60px;
  object-fit: contain;
  display: block;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-right: 5px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clearfix {
  clear: both;
}

.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bank-info,
.size-info {
  margin-bottom: 20px;
  background-color: #eee;
  width: 100%;
}

.size-info {
  background-color: transparent;
}

.bank-info td {
  padding: 5px;
  vertical-align: bottom;
}

.bank-info td:first-child,
.size-info td:first-child {
  text-transform: uppercase;
  font-size: 80%;
  /* text-align: right; */
  font-weight: 600;
  max-width: 150px;
}

.size-info td:first-child {
  text-align: left;
  width: 100px;
}

.show-mobile {
  display: none;
}

.show-desktop {
  display: block;
}

.no-fade {
  animation: none;
}

label,
.label {
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.active {
  color: #008080;
}

.hidden {
  display: none;
}

.sub-nav {
  padding: 7.5px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1;
  font-size: 1.25em;
}

#navigation .show-desktop {
  width: 100%;
  text-align: center;
}

.page-container {
  padding: 10px 15px 60px;
}

.page-container h5 {
  margin-bottom: 0;
}

.page-container .table .table-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
}

.page-container .table .table-row div {
  width: calc(100% - 200px);
}

.page-container .table .table-row div.table-label {
  width: 200px;
  font-weight: 600;
}

.quantity-selector {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.quantity-selector i {
  font-size: 2em;
  margin: 0 15px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.3;
}

.quantity-selector i:hover {
  font-size: 2em;
  margin: 0 15px;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
}

/* Landing */
.landing .menubar-container {
  background-color: #000;
  padding-bottom: 20px;
  text-align: center;
}

.landing .menubar-container a {
  padding: 0 10px 10px;
  color: rgba(255, 255, 255, 0.849);
}
.logo-container {
  background-color: #000;
  text-align: center;
}

.logo-container img {
  height: 130px;
  width: auto;
}

.full-background {
  background-position: center top;
  background-size: cover;
  height: 300px;
  position: relative;
  background-color: #000;
  background-repeat: no-repeat;
  vertical-align: bottom;
}

.full-background.contain {
  background-position: center center;
  background-size: contain;
}

.full-background .overlay {
  height: 300px;
  width: 100%;
  color: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.full-background .overlay h1 {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 200px;
  padding: 0px 15px;
  font-size: 3em;
  text-align: center;
}

.landing .container {
  padding: 10px 20px;
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.landing h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.5em;
  color: #444;
  letter-spacing: -1px;
  font-family: georgia;
  line-height: 1.75;
}

.landing p {
  margin-top: 0;
}

.landing .time-line {
  padding: 10px;
  margin: 0;
  list-style: none;
}

.landing .time-line li {
  padding-bottom: 10px;
}

.landing blockquote {
  font-size: 1.75em;
  font-weight: 200;
  font-family: georgia;
}

.trio-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.trio-container img {
  width: auto;
  height: 100px;
  object-fit: cover;
}

.footer {
  text-align: center;
  margin-bottom: 2em;
}

@media screen and (max-width: 700px) {
  .full-background {
    height: 110px;
  }

  .full-background .overlay {
    height: 110px;
  }

  .landing blockquote {
    font-size: 1em;
  }

  .full-background .overlay h1 {
    margin-top: 20px;
    font-size: 2.5em;
    font-family: Georgia;
  }

  body {
    font-size: 16px;
    font-weight: 400;
  }

  .panel {
    padding: 0;
    border: none;
    padding-bottom: 40px;
  }

  .panel h1 {
    font-size: 1.25em;
  }

  .container {
    text-align: center;
    padding-top: 10px;
  }

  .show-mobile {
    display: block;
    position: relative;
  }

  .show-desktop {
    display: none;
  }

  #navigation {
    padding: 5px 0 0;
    font-size: 8px;
  }

  #navigation .nav-items {
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-transform: uppercase;
    justify-content: center;
    z-index: 9;
  }

  .nav-items a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 25%;
    padding: 5px;
  }

  .nav-items img {
    height: 20px;
    width: auto;
    margin-bottom: 2.5px;
  }

  .logo {
    width: 220px;
    height: auto;
  }

  #navigation a {
    font-size: 1em;
  }

  .card {
    width: 43%;
    float: left;
    padding: 10px;
    min-height: 200px;
  }

  .card h5 {
    height: 32px;
    line-height: 1.2;
    overflow: hidden;
  }

  .card-info {
    padding: 0;
  }

  .card img {
    width: 100%;
    height: 110px;
    object-fit: contain;
  }

  .container-product-detail {
    width: 90%;
  }

  .container-product-detail .panel {
    margin-top: 15px;
  }

  .h-scroll {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    margin-top: 40px;
  }

  .h-scroll ul {
    height: 280px;
    padding: 2px 0;
    margin: 0 auto;
    text-align: center;
  }

  .h-scroll ul li {
    display: inline-block;
    width: auto;
    padding: 5px 10px;
  }

  .h-scroll ul li img {
    height: 280px;
    width: auto;
  }

  .page-container .table .table-row {
    display: block;
    margin-top: 15px;
  }

  .page-container .table .table-row div,
  .page-container .table .table-row div.table-label {
    width: 100%;
    display: block;
  }

  .page-container.contact-container a {
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 200px;
    margin-bottom: 5px;
    display: block;
  }

  .cart-container .cart-summary {
    padding: 0 10px;
  }
}
