@font-face {
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-family: open-sans;
  font-weight: 400;
}
@font-face {
  src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-family: open-sans;
  font-weight: 700;
}
@font-face {
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-family: open-sans;
  font-weight: 900;
}
@font-face {
  src: url("../fonts/OpenSans-Light.ttf") format("truetype");
  font-family: open-sans;
  font-weight: 100;
}
@font-face {
  src: url("../fonts/BRANDON_REG.OTF") format("opentype");
  font-family: Brandon;
  font-weight: 400;
}
@font-face {
  src: url("../fonts/BRANDON_THIN.OTF") format("opentype");
  font-family: Brandon;
  font-weight: 100;
}
@font-face {
  src: url("../fonts/BRANDON_BLD.OTF") format("opentype");
  font-family: Brandon;
  font-weight: 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: open-sans;
  overflow-x: hidden;
}
body.non-scrollable {
  overflow: hidden;
}

.account {
  position: relative;
}

#hamburger-menu {
  display: none;
}
@media screen and (max-width: 1023px) {
  #hamburger-menu {
    width: 30px;
    margin-right: 17px;
    display: flex;
    align-items: center;
    z-index: 10;
  }
  #hamburger-menu.active .icon-line {
    background-color: white;
    visibility: hidden;
  }
  #hamburger-menu.active .icon-line:before {
    background-color: white;
    visibility: visible;
    transform: rotate(-130deg) translate(-5.1px, -4px);
  }
  #hamburger-menu.active .icon-line:after {
    background-color: white;
    visibility: visible;
    transform: rotate(130deg) translate(-8px, 6px);
  }
  #hamburger-menu .icon-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #414042;
    position: relative;
    transition: background-color 500ms ease;
  }
  #hamburger-menu .icon-line:before, #hamburger-menu .icon-line:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #414042;
    display: block;
    position: absolute;
    transition: background-color 500ms ease, transform 500ms ease;
  }
  #hamburger-menu .icon-line:before {
    top: -8px;
  }
  #hamburger-menu .icon-line:after {
    bottom: -8.5px;
  }
}

#page-header {
  height: 65px;
  display: flex;
  justify-content: space-evenly;
  border-bottom: 1px solid #BEC0C2;
  font-weight: 600;
  background-color: #E6E7E8;
}
@media screen and (max-width: 1023px) {
  #page-header {
    height: 57px;
    position: relative;
    box-shadow: 0 0 3px grey;
    justify-content: space-between;
    align-items: center;
  }
}
#page-header .brand-holder {
  width: 22.5%;
}
#page-header .brand-holder .back-button {
  display: none;
}
@media screen and (max-width: 1023px) {
  #page-header .brand-holder {
    width: 45px;
    height: 45px;
  }
}
#page-header .brand-holder .brand-logo {
  display: flex;
  align-items: center;
  margin: 0 33px;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  #page-header .brand-holder .brand-logo {
    margin: 0 18px;
    width: 100%;
  }
}
#page-header .brand-holder .brand-logo img {
  display: block;
  width: 62px;
  height: 42px;
}
@media screen and (max-width: 1023px) {
  #page-header .brand-holder .brand-logo img {
    width: 100%;
    object-fit: contain;
  }
}
#page-header nav {
  width: 35%;
  display: flex;
  justify-content: center;
  font-family: Brandon;
}
@media screen and (max-width: 1023px) {
  #page-header nav {
    display: none;
  }
}
#page-header nav ul {
  display: flex;
  justify-content: space-between;
  align-self: center;
  width: 90%;
}
#page-header nav ul li {
  list-style: none;
  align-self: center;
  position: relative;
}
#page-header nav ul li:after {
  content: "";
  position: absolute;
  background-color: #414042;
  width: 100%;
  height: 3px;
  bottom: -22px;
  left: 0;
  opacity: 0;
  transition: opacity 500ms ease, bottom 500ms ease;
}
#page-header nav ul li.active:after {
  bottom: -20px;
  opacity: 1;
}
#page-header nav ul li:hover:after {
  bottom: -20px;
  opacity: 1;
}
#page-header nav ul li a {
  text-decoration: none;
  color: #414042;
  font-size: 15px;
  letter-spacing: 0.6px;
  font-weight: 400;
  font-family: Brandon;
}
#page-header .city-logo {
  width: 60px;
  object-fit: contain;
  margin: 15px;
  cursor: pointer;
}
#page-header .city-logo.desktop {
  display: none;
}
@media screen and (min-width: 1023px) {
  #page-header .city-logo.desktop {
    display: block;
  }
}
@media screen and (min-width: 1023px) {
  #page-header .city-logo.mobile {
    display: none;
  }
}
#page-header .header-other-content {
  display: flex;
  width: 26.7%;
  font-family: Brandon;
  position: relative;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  #page-header .header-other-content {
    width: 90%;
  }
}
#page-header .header-other-content .search-button {
  position: absolute;
  left: -2%;
  height: 100%;
  border-right: 0;
  transition: left 500ms ease, width 500ms ease;
  width: 73px;
  padding: 0;
  background-color: #E6E7E8;
}
@media screen and (max-width: 1023px) {
  #page-header .header-other-content .search-button {
    left: 78%;
  }
}
#page-header .header-other-content .search-button .search-icon {
  right: 29px;
  position: absolute;
  transition: right 500ms ease;
}
#page-header .header-other-content .search-button input {
  visibility: hidden;
  width: 0;
  transition: width 500ms ease;
  border: none;
  background-color: transparent;
  outline: none;
  position: absolute;
  left: 10px;
}
#page-header .header-other-content .search-button input[type=search]::-webkit-search-decoration,
#page-header .header-other-content .search-button input[type=search]::-webkit-search-cancel-button,
#page-header .header-other-content .search-button input[type=search]::-webkit-search-results-button,
#page-header .header-other-content .search-button input[type=search]::-webkit-search-results-decoration {
  display: none;
}
#page-header .header-other-content .search-button.active {
  left: -28%;
  width: 175px;
}
@media screen and (max-width: 1023px) {
  #page-header .header-other-content .search-button.active {
    left: 15%;
    width: 80%;
  }
}
@media screen and (max-width: 1023px) {
  #page-header .header-other-content .search-button.active .search-icon {
    right: 0;
  }
}
#page-header .header-other-content .search-button.active input {
  display: block;
  width: 82%;
  opacity: 1;
  visibility: visible;
}
#page-header .header-other-content li {
  list-style: none;
  border-left: 1px solid #BEC0C2;
  border-right: 1px solid #BEC0C2;
  padding: 0 28px;
  font-size: 15px;
  letter-spacing: 1px;
  color: #414042;
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
  opacity: 1;
  transition: opacity 500ms ease;
}
#page-header .header-other-content li > :hover {
  opacity: 0.8;
}
#page-header .header-other-content li a {
  text-decoration: none;
}
#page-header .header-other-content li:nth-of-type(2) {
  width: 42%;
  justify-content: center;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  #page-header .header-other-content li:nth-of-type(2) {
    display: none;
  }
}
#page-header .header-other-content li:last-child {
  width: 30%;
  justify-content: center;
  padding: 0;
}
#page-header .header-other-content li:last-child a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  #page-header .header-other-content li:last-child {
    display: none;
  }
}
#page-header .header-other-content li .search-icon {
  width: 18px;
}
#page-header .header-other-content li .user-icon {
  width: 15px;
  margin-right: 10px;
}
#page-header .header-other-content li .cart-icon {
  width: 20px;
  margin-right: 14px;
}
#page-header .header-other-content li .drop-down-menu,
#page-header .header-other-content li .search-drop-down {
  position: absolute;
  top: 60px;
  background-color: #414042;
  z-index: 10;
  width: calc(100% + 1px);
  left: 0;
  display: none;
  max-height: 40vh;
  overflow-y: auto;
}
@media screen and (max-width: 1023px) {
  #page-header .header-other-content li .drop-down-menu,
#page-header .header-other-content li .search-drop-down {
    top: 30px;
  }
}
#page-header .header-other-content li .drop-down-menu:hover,
#page-header .header-other-content li .search-drop-down:hover {
  opacity: 1;
}
#page-header .header-other-content li .drop-down-menu.active,
#page-header .header-other-content li .search-drop-down.active {
  display: block;
}
#page-header .header-other-content li .drop-down-menu li,
#page-header .header-other-content li .search-drop-down li {
  text-align: center;
  border: none;
  display: block;
  margin: 0;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #BEC0C2;
}
#page-header .header-other-content li .drop-down-menu li a,
#page-header .header-other-content li .search-drop-down li a {
  text-decoration: none;
  color: white;
  display: inline-block;
  height: 100%;
  width: 100%;
  padding: 10px 28px;
}

.mobile-button {
  display: none;
}
@media screen and (max-width: 1023px) {
  .mobile-button {
    display: flex;
    justify-content: center;
  }
  .mobile-button button {
    padding: 10px;
    background-color: white;
    width: 50px;
  }
  .mobile-button button img {
    width: 20px;
    margin: 0 auto;
    display: block;
  }
  .mobile-button .light-button-mobile {
    background-color: white;
  }
  .mobile-button .dark-button-mobile {
    background-color: #414042;
  }
  .mobile-button .dark-button-mobile img {
    width: 25px;
  }
}

#mobile-navigation {
  background-color: black;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  display: none;
}
@media screen and (max-width: 1023px) {
  #mobile-navigation {
    display: block;
  }
}
#mobile-navigation ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding: 15px 0;
}
#mobile-navigation ul li {
  position: relative;
  padding: 3px 5px;
  border-radius: 5px;
}
#mobile-navigation ul li.active {
  background-color: #dbdbdb;
}
#mobile-navigation ul li.active .icon svg {
  fill: #414042;
}
#mobile-navigation ul li .icon {
  display: inline-block;
  width: 20px;
}
#mobile-navigation ul li .icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}
#mobile-navigation ul li .cart-counter {
  background-color: white;
  position: absolute;
  top: -5px;
  right: -10px;
  color: black;
  padding: 1px 3px;
  font-size: 8px;
  border-radius: 3px;
}

button {
  border: none;
  font-family: Brandon;
  font-weight: bold;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 1px;
}

.light-button {
  background-color: white;
  font-size: 14px;
  padding: 16px 30px;
  color: #414042;
}

.dark-button {
  background-color: #414042;
  font-size: 14px;
  padding: 26px 29px;
  color: white;
  letter-spacing: 1px;
}

#news-letter {
  background-color: #D1E4F3;
  padding: 40px 0;
  background-image: url("../images/footer-bg.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  height: 64vh;
  margin-bottom: -3px;
}
@media screen and (max-width: 1023px) {
  #news-letter {
    height: auto;
  }
}
#news-letter .inner-contents {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  #news-letter .inner-contents {
    flex-direction: column;
    padding-bottom: 80px;
  }
}
#news-letter .inner-contents .description {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  #news-letter .inner-contents .description {
    width: 100%;
  }
}
#news-letter .inner-contents .description h5 {
  font-size: 40px;
  letter-spacing: 1.7px;
  font-family: Brandon;
  color: #404142;
  font-weight: 400;
}
#news-letter .inner-contents .description p {
  padding-top: 32px;
  font-size: 17px;
  font-weight: 600;
  word-spacing: 3px;
  width: 59%;
  color: #808285;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  #news-letter .inner-contents .description p {
    width: 80%;
  }
}
#news-letter .inner-contents .subscription {
  width: 50%;
  margin-top: -20px;
}
@media screen and (max-width: 1023px) {
  #news-letter .inner-contents .subscription {
    width: 100%;
    margin-top: 20px;
  }
}
#news-letter .inner-contents form input {
  width: 85.7%;
  float: right;
  border-bottom: 2px solid #aeafb2;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  padding-top: 39px;
  padding-bottom: 10px;
  font-size: 30px;
  outline: none;
  padding-left: 9px;
}
@media screen and (max-width: 1023px) {
  #news-letter .inner-contents form input {
    width: 100%;
    float: none;
  }
}
#news-letter .inner-contents form ::-webkit-input-placeholder {
  color: #414042;
  font-family: Brandon;
  font-size: 40px;
  letter-spacing: 1.7px;
  font-weight: lighter;
  padding-left: 9px;
}
#news-letter .inner-contents form button {
  display: block;
  float: right;
  padding: 27px 37px;
  color: white;
  background-color: #F7C452;
  clear: both;
  letter-spacing: 0.4px;
}
@media screen and (max-width: 1023px) {
  #news-letter .inner-contents form button {
    padding: 20px 30px;
  }
}

.toast {
  position: fixed;
  top: 0;
  background-color: #414042;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  z-index: 10;
  color: white;
  font-size: 14px;
  transform: translateY(-100%);
  transition: transform 500ms ease;
}
.toast.show {
  transform: translateY(0);
}
.toast#cart-toast {
  background-color: #27c24c;
}

.desktop-button {
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .desktop-button {
    display: none;
  }
}

.customer-product {
  width: 87%;
  margin: 29px auto 0;
  padding-bottom: 29px;
}
.customer-product .items {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 11px;
  font-family: Brandon;
  color: #414042;
}
.customer-product table {
  width: 100%;
}
.customer-product table td {
  font-weight: 600;
  font-size: 14px;
  color: #414042;
  padding: 10px 0;
}
.customer-product table td:nth-of-type(1) {
  width: 72%;
}
.customer-product table .item-total {
  height: 53px;
  color: #414042;
  font-family: Brandon;
}
.customer-product table .item-total td {
  font-size: 19px;
  font-weight: bold;
  padding: 10px 0;
}

#footer {
  background-color: #231F20;
}
#footer .inner-content {
  display: flex;
  width: 85%;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 40px;
  color: white;
}
@media screen and (max-width: 1023px) {
  #footer .inner-content {
    flex-direction: column;
  }
}
#footer .inner-content .brand-details {
  width: 50%;
  color: #414042;
}
@media screen and (max-width: 1023px) {
  #footer .inner-content .brand-details {
    width: 100%;
  }
}
#footer .inner-content .brand-details h1 {
  font-size: 36px;
  letter-spacing: 7px;
  color: #bcbec0;
}
#footer .inner-content .brand-details address {
  width: 58%;
  font-style: normal;
  word-spacing: 6px;
  padding-top: 23px;
  font-size: 16px;
  color: #bcbec0;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  #footer .inner-content .brand-details address {
    width: 90%;
  }
}
#footer .inner-content .brand-details ul {
  display: flex;
  justify-content: space-between;
  width: 28%;
  margin-top: 20px;
}
#footer .inner-content .brand-details ul li {
  list-style: none;
}
#footer .inner-content .brand-details ul li img {
  width: 30px;
  height: 30px;
}
#footer .inner-content .navigational-links {
  width: 45%;
  display: flex;
  margin-top: 7px;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  #footer .inner-content .navigational-links {
    flex-direction: column;
  }
}
@media screen and (max-width: 1023px) {
  #footer .inner-content .navigational-links ul {
    margin-bottom: 20px;
  }
}
#footer .inner-content .navigational-links ul h5 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #bcbec0;
}
#footer .inner-content .navigational-links ul li {
  list-style: none;
  padding-bottom: 5px;
}
#footer .inner-content .navigational-links ul li a {
  color: #bcbec0;
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
}
#footer small {
  border-top: 1px solid #403e41;
  height: 11vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #bcbec0;
  background-color: #231F20;
}
@media screen and (max-width: 1023px) {
  #footer small {
    height: auto;
    padding: 20px 0 70px;
    flex-direction: column;
  }
  #footer small span {
    display: block;
  }
}
#footer small strong {
  font-weight: bolder;
}

#page-navigator {
  background-color: black;
  display: none;
}
@media screen and (max-width: 1023px) {
  #page-navigator {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    height: 0;
    overflow: hidden;
    transition: height 500ms ease;
  }
  #page-navigator.active {
    height: 100vh;
  }
}
#page-navigator .brand {
  display: block;
  margin: 20px auto;
  width: 25%;
}
#page-navigator .brand img {
  width: 100%;
}
#page-navigator .navigational-list {
  text-align: center;
  position: relative;
  padding: 20px 0;
}
#page-navigator .navigational-list li {
  padding: 10px 0;
}
#page-navigator .navigational-list li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
#page-navigator .navigational-list:after {
  content: "";
  background-color: white;
  width: 40%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#page-navigator .social-list {
  display: flex;
  justify-content: space-between;
  width: 45%;
  margin: 35px auto 0;
}
#page-navigator .social-list li img {
  width: 30px;
}
#page-navigator .signup-button {
  display: block;
  margin: 20px auto;
  text-decoration: none;
}
#page-navigator .signup-button button {
  border: 2px solid white;
  color: white;
  font-size: 18px;
  display: block;
  margin: 0 auto;
  background-color: transparent;
  padding: 10px 16px;
}

.product-collection {
  width: 75%;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
@media screen and (max-width: 1023px) {
  .product-collection {
    margin: 0 auto;
    width: 100%;
    justify-content: flex-start;
    background-color: #E6E7E8;
  }
}
.product-collection .product {
  width: 32.4%;
  position: relative;
  margin-bottom: 23px;
  background-color: #F1F1F1;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-height: 60vh;
}
@media screen and (max-width: 1023px) {
  .product-collection .product {
    margin: 0 3px 6px;
    width: 48%;
  }
  .product-collection .product:nth-of-type(1), .product-collection .product:nth-of-type(2) {
    margin-top: 20px;
  }
}
.product-collection .product .product-availibity {
  position: absolute;
  top: 0;
  left: -2.8%;
  width: 32.1%;
  background-color: #F7C452;
  padding: 2px 0;
  text-align: center;
  transform: rotate(-90deg) translate(-35%, -100%);
  font-weight: 400;
  font-family: Brandon;
  color: white;
  font-size: 12px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1023px) {
  .product-collection .product .product-availibity {
    top: -3px;
    left: 4%;
  }
}
.product-collection .product .product-image {
  width: 145px;
  display: block;
  margin: 13px auto 0;
}
.product-collection .product .product-image img {
  width: 100%;
  height: 25vh;
}
.product-collection .product .product-name {
  text-align: center;
  font-weight: bold;
  font-family: Brandon;
  margin: 9px auto 0;
  font-size: 24px;
  color: #403e41;
  display: block;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
@media screen and (max-width: 1023px) {
  .product-collection .product .product-name {
    color: #414042;
    font-size: 18px;
  }
}
.product-collection .product .product-manufacturer {
  text-align: center;
  font-size: 14px;
  font-family: Brandon;
  color: #BEC0C2;
}
@media screen and (max-width: 1023px) {
  .product-collection .product .product-manufacturer {
    font-size: 12px;
    font-weight: 600;
  }
}
@media screen and (max-width: 1023px) {
  .product-collection .product .mobile-button {
    padding-bottom: 20px;
  }
  .product-collection .product .mobile-button .buy-button {
    font-size: 10px;
    padding: 10px 8px;
  }
}
.product-collection .product .cost {
  text-align: center;
  font-size: 21px;
  margin-top: 8px;
  font-weight: bold;
  font-family: Brandon;
  color: #403e41;
}
.product-collection .product button {
  padding: 19px 10px;
  width: 49.5%;
  border: none;
  margin-top: 20px;
  letter-spacing: 1px;
  font-size: 14px;
}
.product-collection .product button:nth-of-type(1) {
  margin-right: -4px;
}
@media screen and (max-width: 1023px) {
  .product-collection .product button {
    width: auto;
    padding: 10px 12px;
    margin-top: 10px;
  }
  .product-collection .product button img {
    width: 14px;
  }
  .product-collection .product button:nth-of-type(1) {
    margin-right: 0;
  }
}

form input[type=radio] {
  appearance: none;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-appearance: none;
  border: 1px solid gray;
  margin: 0 10px 0 0;
  padding: 0;
  outline: none;
  background-color: #E6E7E8;
}
form input[type=radio]:checked {
  border: 1px solid #F7C452;
  box-shadow: inset 0 0 0 3px #E6E7E8;
  background-color: #F7C452;
}

.coming-soon {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coming-soon img {
  width: 50%;
}

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