:root {
  --font-base: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: UnifrakturMaguntia;
  src: url(/assets/fonts/UnifrakturMaguntia/UnifrakturMaguntia-Regular.ttf);
  font-weight: 400;
}

/*
@font-face {
  font-family: Montserrat;
  src:
    url(/assets/fonts/Montserrat/Montserrat-Thin.ttf),
    url(/assets/fonts/Montserrat/Montserrat-ExtraLight.ttf),
    url(/assets/fonts/Montserrat/Montserrat-Light.ttf),
    url(/assets/fonts/Montserrat/Montserrat-Regular.ttf),
    url(/assets/fonts/Montserrat/Montserrat-Medium.ttf),
    url(/assets/fonts/Montserrat/Montserrat-SemiBold.ttf),
    url(/assets/fonts/Montserrat/Montserrat-Bold.ttf),
    url(/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf),
    url(/assets/fonts/Montserrat/Montserrat-Black.ttf);
}
*/

* {
  font-family: Montserrat;
  /*
  font-family: UnifrakturMaguntia;
  */
  padding: 0;
  margin: 0;
}

html {
  overflow: unset;
  overscroll-behavior: none;
}

body {
  height: 100%;
  width: 100%;
  overflow: auto;
  overscroll-behavior: none;
}

h1, h2, h3, h4, h5, p {
  cursor: text;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
}

h1 {
  font-size: 28px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 14px;
}

button, a, button *, a * {
  cursor: pointer;
}
button[disabled], button[disabled] * {
  cursor: default;
}

div.spacer {
  width: 100%;
  height: 100%;
}

button {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

button.div {
  color: black;
  background: none;
  border: none;
  outline: none;
}

a {
  color: #333;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:hover {
  color: #000;
}

button.a {
  background: none;
  border: none;
  outline: none;
  text-decoration: underline;
  font-weight: 500;
  color: #333;
  font-size: 14px;
  transition: color 0.3s;
}
button.a:hover {
  color: #000;
}

button.a-hover {
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  font-size: 14px;
}
button.a-hover:hover {
  text-decoration: underline;
}

button.primary {
  width: 100%;
  padding: 15px 0px;
  background-color: #111;
  color: #fff;
  border: 1px solid #111;
  outline: none;
  border-radius: 25px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}
button.primary:hover {
  background-color: #000;
  color: #fff;
}
button.primary.loading {
  background-color: #fff;
  min-height: 50px;
}
button.primary[disabled] {
  pointer-events: none;
  background-color: #333;
}

button.secondary {
  width: 100%;
  padding: 15px 0px;
  background-color: #fff;
  color: #000;
  border: 1px solid #111;
  outline: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
}
button.secondary:hover {
  background-color: #f2f2f2;
}

p.secondary {
  color: #333;
}

a.button-primary {
  width: calc(100% - 50px);
  padding: 15px 0px;
  background-color: #111;
  color: #fff;
  border: 1px solid #111;
  outline: none;
  border-radius: 25px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 25px;
  display: block;
  text-align: center;
}
a.button-primary:hover {
  background-color: #000;
  color: #fff;
}
a.button-primary.loading {
  background-color: #fff;
  min-height: 50px;
}

a.button-secondary {
  width: calc(100% - 50px);
  padding: 15px 0px;
  background-color: #fff;
  color: #000;
  border: 1px solid #111;
  outline: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 25px;
  display: block;
  text-align: center;
}
a.button-secondary:hover {
  background-color: #f2f2f2;
}

[placeholder]:empty:before {
  content: attr(placeholder);
  color: #555;
  cursor: text;
}

#react-root {
  position: relative;
}

#react-root > .container {
}

.waitlist-home {
}

.waitlist-home main {
  padding-top: 30vh;
  padding-left: 5vw;
  padding-right: 5vw;
  width: 36vw;
  margin: 0 auto;
  min-height: 100vh;
}

@media only screen and (max-width: 768px) {
  .waitlist-home main {
    width: fit-content;
    text-align: center;
  }
}

.waitlist-home .email-signup {
  text-align: left;
}

.waitlist-home .email-signup > p {
  font-size: 14px !important;
}
.waitlist-home .email-signup > p * {
  font-size: 14px !important;
}

.waitlist-home .email-signup .form {
  margin-top: 5px;
}

.waitlist-home .email-signup input[type="email"] {
  display: block;
  padding: 10px 15px;
  outline: none;
  width: calc(100% - 34px);
}

.waitlist-home .email-signup button {
  width: 100%;
  margin-top: 10px;
  font-size: 14px !important;
}
@media only screen and (max-width: 768px) {
  .waitlist-home .email-signup button {
    font-size: clamp(1rem, 4vw, 1.2rem) !important;
  }
}

.waitlist-home .email-signup > p.disclaimer {
  margin-top: 5px;
  font-size: 12px;
}

.contact-us-home {
  background-color: #f2f2f2;
  padding-bottom: 5vh;
}

.contact-us-home main {
  width: 50%;
  padding: 0 5%;
  margin-left: 5%;
}
@media only screen and (max-width: 768px) {
  .contact-us-home main {
    width: 90%;
    margin: 0;
  }
}

.contact-us-home h1 {
  font-size: 28px;
  font-weight: 500;
  padding-top: 30px;
  padding-bottom: 15px;
}

.contact-us-home .description {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-size: 14px;
}

.contact-us-home .contact-methods {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  font-size: 14px;
}

.contact-us-home .contact-methods .panel {
  position: relative;
  padding: 15px;
}

.required-fields {
  text-align: left;
  margin-top: 20px;
  font-size: 12px;
}

label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  cursor: text;
}

.input {
  margin-bottom: 20px;
}

.input.phone-number .phone-number-type {
  margin-bottom: 10px;
}

.input.post-code {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .input.post-code {
    margin-bottom: 5px;
  }
}
.input.post-code .input-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .input.post-code .input-button {
    flex-direction: column;
  }
}
.input.post-code input {
  width: calc(33% - 30px);
}
.input.post-code button {
  width: 33%;
  white-space: nowrap;

  margin-top: 0px;
  margin-left: 15px;
  height: 50px;
}
@media only screen and (max-width: 768px) {
  .input.post-code input {
    width: calc(100% - 30px);
  }
  .input.post-code button {
    margin-top: 30px;
    width: 100%;
    margin-left: 0;
  }
}

input {
  font-size: 14px;
}
input[disabled] {
  pointer-events: none;
}

input[type="text"] {
  width: calc(100% - 30px);
  padding: 15px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #f2f2f2;
  transition: all 0.3s;
}
input[type="text"]:focus,
input[type="text"]:hover
{
  border: 1px solid #000;
}

input[type="email"] {
  width: calc(100% - 30px);
  padding: 15px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #f2f2f2;
  transition: all 0.3s;
}
input[type="email"]:focus,
input[type="email"]:hover
{
  border: 1px solid #000;
}

.input.checkbox {
  margin-bottom: 15px;
  font-size: 12px;
}

.input.checkbox span.label {
  user-select: none;
}

.input.checkbox input[type="checkbox"] {
  margin-top: 3px;
  margin-left: 1px;
  margin-right: 10px;
}

.input.checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

input[type="checkbox"] {
  outline: none;
  color: #333;
  accent-color: black;
  border: 1px solid #111;
  cursor: pointer;
  transition: all 0.3s;
}
input[type="checkbox"]:focus,
input[type="checkbox"]:hover {
  color: #000;
}

.contact-us-home h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us-home .hr {
}

.contact-us-home .textarea-container {
  width: 100%;
  overflow-x: hidden;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  transition: all 0.3s;
}

.contact-us-home .textarea-container.active {
  border: 1px solid #000;
}

.contact-us-home textarea {
  padding: 5px 10px;
  width: calc(100% - 5px);
  resize: none;
  height: 15vh;
  border: none;
  outline: none;
  transition: all 0.3s;
}

.contact-us-home .input.message {
  position: relative;
}

.characters-remaining {
  font-size: 12px;
  text-align: right;
  color: #f2f2f2;
  transition: all 0.3s;
}
.characters-remaining.active {
  color: #000;
}
.characters-remaining.error {
  color: red;
}

.input.error .error-message {
  display: block;
}
.input.error label {
  color: red;
}
.error-message {
  color: red;
  margin-top: 5px;
  font-size: 12px;
  display: none;
}

.contact-us-home .policy {
  margin-top: 30px;
  font-size: 12px;
  padding: 0px 15px;
}

.bare {
  min-height: 150vh;
}

.bare main {
  padding-top: 36vh;
  padding-bottom: 36vh;
  width: 36vw;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .bare main {
    width: 90vw;
  }
}

.legal-document {
  width: 550px;
  margin: 5vh auto;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .legal-document {
    width: 90%
  }
}

.legal-document * {
  font-size: 12px;
}

.legal-document h1 {
  font-size: 22px;
  margin-bottom: 3vh;
}

.legal-document h2 {
  font-size: 18px;
  margin-top: 1vh;
  margin-bottom: 2vh;
  padding-top: 1vh;
}

.legal-document h3 {
  font-size: 16px;
}

.legal-document ul > li > h3 {
  margin-top: 2vh;
}
.legal-document ul > li > ul {
  margin-top: 1vh;
  margin-bottom: 2vh;
}

.legal-document p {
  margin-bottom: 2vh;
}

.legal-document ol {
  list-style-position: inside;
  margin-bottom: 2vh;
}

.legal-document ol li {
  padding-left: 10px;
  margin-bottom: 2vh;
}

.legal-document ul {
  list-style-position: inside;
  margin-bottom: 2vh;
}

.legal-document ul li {
  padding-left: 10px;
  margin-bottom: 1vh;
}

.legal-document > .last-updated {
  margin-bottom: 2vh;
}

.legal-document .row {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .legal-document .row {
    flex-direction: column;
  }
}

#police-orders {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #police-orders {
    margin: 5vh auto;
  }
}

#police-orders .row > img {
  padding: 0 5px;
  height: 150px;
}
#police-orders .row > img:first-child {
  padding-left: 0px;
  padding-right: 5px;
}
#police-orders .row > img:last-child {
  padding-left: 5px;
  padding-right: 0px;
}
@media only screen and (max-width: 768px) {
  #police-orders .row > img {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
  #police-orders .row > img:first-child {
    padding: 0;
    padding-top: 0;
    padding-bottom: 10px;
  }
  #police-orders .row > img:last-child {
    padding: 0;
    padding-top: 10px;
    padding-bottom: 0px;
  }
}

#citizen-authorizations {
  margin: 5vh auto;
}
@media only screen and (max-width: 768px) {
  #citizen-authorizations {
    margin: 5vh auto;
  }
}

#citizen-authorizations .row {
  margin-top: 10px;
}

#citizen-authorizations .row > img {
  padding: 0 5px;
  height: 150px;
}
#citizen-authorizations .row > img:first-child {
  padding-left: 0px;
  padding-right: 5px;
}
#citizen-authorizations .row > img:last-child {
  padding-left: 5px;
  padding-right: 0px;
}
@media only screen and (max-width: 768px) {
  #citizen-authorizations .row > img {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
  #citizen-authorizations .row > img:first-child {
    padding: 0;
    padding-top: 0;
    padding-bottom: 10px;
  }
  #citizen-authorizations .row > img:last-child {
    padding: 0;
    padding-top: 10px;
    padding-bottom: 0px;
  }
}

#citizen-authorizations.legal-document ol li {
  margin-bottom: 5vh;
}

.nav-bars {
}

.nav-bar-padding {
  height: 81px;
}
@media only screen and (max-width: 768px) {
  .nav-bar-padding {
    height: 56px;
  }
}

.nav-top {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  pointer-events: none;
}

.nav-top > nav {
  transition: background-color 0.25s, border-color 0.25s;
  background-color: transparent;
  border-bottom: 1px solid;
  border-color: transparent;
}
.nav-top.opaque > nav {
  background-color: #fff;
  border-bottom: 1px solid #000;
  border-color: #f2f2f2;
}

.nav-top > nav.primary {
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 35px;
  padding-top: 25px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .nav-top > nav.primary {
    height: 28px;
    padding-top: 17px;
    padding-bottom: 10px;
  }
}

.nav-top > nav.primary > .left {
  display: flex;
  width: 33%;
  pointer-events: none;
}
.nav-top > nav.primary > .left {
  pointer-events: all;
}

.nav-top > nav.primary > .middle {
  width: 33%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-top > nav.primary > .middle * {
  pointer-events: all;
}

.nav-top > nav.primary > .right {
  display: flex;
  flex-direction: row-reverse;
  width: 33%;
  pointer-events: none;
}
.nav-top > nav.primary > .right * {
  pointer-events: all;
}

.nav-top > nav.search {
  display: flex;
  justify-content: start;
  height: 28px;
  padding: 8px 0px;
}

.nav-top .right .anchors {
  position: relative;
  right: 35px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .nav-top .right .anchors {
    right: 20px;
  }
}

.wishlist-anchor {
  position: relative;
  top: -2px;
  margin-right: 15px;
}
@media only screen and (max-width: 768px) {
  .wishlist-anchor {
    margin-right: 8px;
  }
}

.wishlist-anchor .heart svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  fill: #fff;
}
.wishlist-anchor.active .heart svg {
  fill: red;
}

.logo a {
  display: inline-block;
  outline: none;
}

.logo img {
  width: 150px;
}
@media only screen and (max-width: 768px) {
  .logo img {
    width: 110px;
  }
}

.absolute-elements {
  position: relative;
}

footer {
  font-size: .8em;
  background-color: #fff;
  color: #000;
  font-weight: 500;
}

footer .logo {
  width: 100%;
  text-align: center;
  padding-top: 35px;
  padding-bottom: 30px;
}

footer .mobile {
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  /*
  */
  /*
  padding: 0px 20px;
  padding-bottom: 5px;
  */
}

footer .mobile .hr {
  width: 100%;
  border-top: 1px solid #f2f2f2;
}

footer .primary {
}

footer .dropdown-section .title {
  padding: 15px 20px;
  width: 100%;
}
footer .dropdown-section .dropdown {
  padding: 5px 35px;
}

.dropdown-section {
  width: 100%;
}
.dropdown-section .title-description h6 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.dropdown-section .icon-container {
  margin-right: 10px;
}
.dropdown-section .title {
  color: black;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.dropdown-section .title .caret {
  transition: transform 0.2s;
}
.dropdown-section .title .caret.down {
  transform: rotate(90deg);
}
.dropdown-section .title .caret svg {
  width: 12px;
  height: 12px;
}

.dropdown-section h6 {
  font-size: 14px;
  font-weight: 500;
}

.dropdown-section h6.fraktur {
  font-size: 16px;
  position: relative;
  top: 2px;
}

.dropdown-section .title-description > p {
  margin-top: 5px;
  font-size: 12px;
}

.dropdown-section .dropdown-container {
  overflow: hidden;
}
.dropdown-section .dropdown-container.opening {
  height: 0;
}

.dropdown-section .dropdown {
}
.dropdown-section .dropdown.open {
  visibility: visible;
  transition: all 0.3s;
}
.dropdown-section .dropdown.closed {
  /*
  margin-top: -10%;
  */
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s;
}
.dropdown-section .dropdown.opening {
  transition: all 0.3s;
}
.dropdown-section .dropdown.closing {
  transition: all 0.3s;
}

footer .mobile .dropdown-section .dropdown .link {
  padding: 10px 0px;
}

footer .mobile .dropdown-section .dropdown a {
  text-decoration: none;
  color: black;
}

footer .mobile .dropdown-section .dropdown a .fraktur {
  font-size: 13px;
}

footer .primary {
  padding-top: 50px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  min-height: 30vh;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}

@media only screen and (max-width: 768px) {
  footer .primary {
    flex-direction: column;
  }
}

footer .primary section {
  width: 25%;

  /*
  border-top: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  */

  padding: 2vh 1vw;
}

@media only screen and (max-width: 768px) {
  footer .primary section {
    padding: 2vh 3vw;
    width: calc(100% - 6vw - 2px);
    border-right: none;
    border-bottom: none;
  }
}

footer .primary section:last-child {
  border-right: none;
}

footer .primary h6 {
  margin-bottom: 30px;
  font-size: 10px;
  font-weight: 500;
}

footer .primary h6.fraktur {
  font-size: 12px;
  position: relative;
  top: 2px;
}

footer .primary .link {
  margin-bottom: 30px;
}

footer .primary .link a {
  text-decoration: none;
  color: #000;
}

footer .primary .link a.mailing-list {
  text-decoration: underline;
}
footer .primary .link a.mailing-list .fraktur {
  font-size: 13px;
}

footer .copyright {
  padding-top: 6vh;
  padding-bottom: 6vh;
}

footer .copyright .statement {
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

footer .copyright .statement .fraktur {
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.cover {
  position: relative;
  overflow: hidden;
}

.cover a {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.cover .collection {
  position: absolute;
  bottom: 55%;
  font-weight: 700;
  color: #fff;
  font-size: 1.2em;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .cover .collection {
  }
}

.cover .collection * {
  font-family: UnifrakturMaguntia;
  font-size: 48px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
}

.cover .button-imitation {
  position: absolute;
  bottom: 40%;
  background: none;
  padding: 12px 1.5vw;
  border: 3px solid #fff;
  border-radius: 5px;
  z-index: 1;
  width: 462px;
  text-align: center;
  font-weight: 500;
  font-size: 0.7em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .cover .button-imitation {
    width: 50%;
    bottom: 15%;
  }
}

.cover .button-imitation * {
  font-family: UnifrakturMaguntia;
  font-size: 22px;
}

.cover .button-imitation {
}
/*
@media only screen and (max-width: 768px) {
  .cover h1 {
    font-size: 5vw;
  }
}
*/

.cover .cover-image {
  width: 100%;
  aspect-ratio: 2;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .cover .cover-image {
    aspect-ratio: 0.8;
  }
}

.cover .cover-image picture {
  object-fit: cover;
  object-position: center top;
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cover .cover-image picture img {
  position: absolute;
  width: 100%;
  max-width: 100%;
  /*
  object-fit: cover;
  object-position: center top;
  */
}
@media only screen and (max-width: 768px) {
  /*
  .cover .cover-image img {
    width: 100%;
  }
  */
}

.search-bar {
  padding-left: 2px;
  width: 100%;
  display: flex;
  align-items: center;
}

.search-bar input {
  border: none;
  outline: none;
  font-size: 1em;
  color: #111;
  width: 100%;
}

.magnifying-glass {
  padding: 0px 10px;
}

.magnifying-glass svg {
  width: 18px;
  height: 18px;
  position: relative;
  top: 2px;
}

.shopping-bag-icon {
}

.shopping-bag-icon svg {
  position: relative;
  width: 20px;
  height: 20px;
  top: -2px;
}

.shopping-bag-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.shopping-bag-button .x-icon {
  position: absolute;
  left: 6px;
  top: 3px;
}
.shopping-bag-button .x-icon svg {
  width: 8px;
  height: 8px;
}
.shopping-bag-button .cart-length {
  background-color: #111;
  color: #fff;
  border-radius: 25px;
  font-size: 10px;
  font-weight: 500;
  width: fit-content;
  height: fit-content;
  padding: 1px 4px;
  position: absolute;
  top: -5px;
  right: -12px;
}

.popup-container {
  position: relative;
}

.popup-container .popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 101;
  transition: opacity 0.5s, visibility 0.5s;
  height: 100%;
}

.popup-container.closed .popup {
  opacity: 0;
  visibility: hidden;
}
.popup-container.open .popup {
  opacity: 0.5;
  visibility: visible;
}

.popup-container .background {
  position: fixed;
  width: 50vw;
  height: 100%;
  background-color: #fff;
  z-index: 102;
  transition: right 0.33s ease-in, opacity 0.5s;
  overflow-y: scroll;
}
.popup-container.closed .background {
  opacity: 0;
  right: -50vw;
}

@media only screen and (max-width: 768px) {
  .popup-container .background {
    width: 100vw;
  }
  .popup-container.closed .background {
    right: -100vw;
  }
}

.popup-container.open .background {
  opacity: 1;
  right: 0vw;
}

.popup-container .background .content {
  position: relative;
  padding: 8vh 10%;
  transition: all 0.3s ease-in;
}
.popup-container.closed .background .content {
  opacity: 0;
}
.popup-container.open .background .content {
  opacity: 1;
}

.popup-container .background .content .row {
  display: flex;
  justify-content: space-between;
}

.popup-container .background .content h3 {
  font-weight: 500;
}

.popup-container .background .content button.x {
  background: none;
  border: none;
  outline: none;
}

.popup-container.top-right-bottom-full > .background {
  height: fit-content;
  overflow-y: hidden;
}
@media only screen and (max-width: 768px) {
  .popup-container.top-right-bottom-full > .background {
    transition: bottom 0.33s ease-in, opacity 0.5s;
    bottom: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  .popup-container.top-right-bottom-full.closed .background {
    bottom: -50vh;
    right: 0;
  }
}

.popup-container.fade-in-out > .background {
  width: 100vw;
  height: 100vh;
  transition: opacity 0.5s;
}
.popup-container.fade-in-out.open > .background {
  opacity: 1;
  right: 0vw;
}
.popup-container.fade-in-out.closing > .background {
  opacity: 0;
  right: 0vw;
}
.popup-container.fade-in-out.closed > .background {
  opacity: 0;
  right: -100vw;
}
@media only screen and (max-width: 768px) {
  .popup-container.fade-in-out > .background {
    height: 200vh;
  }
  .popup-container.fade-in-out.open > .background {
  }
  .popup-container.fade-in-out.closed > .background {
  }
}

.popup-container.center > .background {
  height: fit-content;
  overflow-y: hidden;
  width: 50vw;
  right: 25vw;
  transition: bottom 0.33s ease-in, opacity 0.5s;
}
.popup-container.center.open > .background {
  bottom: 30vh;
  border-radius: 15px;
}
.popup-container.center.closed > .background {
  bottom: -50vh;
}
@media only screen and (max-width: 768px) {
  .popup-container.center > .background {
    width: 100vw;
    right: 0vw;
  }
  .popup-container.center.open > .background {
    bottom: 0vh;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .popup-container.center-center.closed > .background {
  }
}

.disclaimer {
}

.x-icon {
}

.x-icon svg {
  width: 10px;
  height: 10px;
  fill: #000;
  opacity: 0.7;
}

.link-placeholder {
  color: #666;
}

.shop-cta {
  text-align: center;
  padding-top: 10vh;
}

.shop-cta h2 {
  font-size: 48px;
  font-family: UnifrakturMaguntia;
}
.shop-cta h2 .logo-name {
}

.shop-home {
  min-height: 90vh;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-grid-item {
  text-decoration: none;
  color: black;
  height: calc(100% - 25px);
  position: relative;
}
.product-grid-item a {
  color: black;
  text-decoration: none;
}

.product-grid-item .product-info {
  text-align: center;
  font-size: 12px;
  padding-left: 15%;
  padding-right: 15%;
}
@media only screen and (max-width: 768px) {
}

.product-grid-item .product-info .price {
  margin: 5px 0;
}

.product-grid-item img {
  width: 100%;
  object-fit: cover;
  min-height: 50vh;
}
@media only screen and (max-width: 768px) {
  .product-grid-item img {
    min-height: 30vh;
  }
}

.product-home {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .product-home {
    flex-direction: column;
  }
}

.product-images {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .product-images {
    width: 100%;
  }
}

.product-image {
  /*
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  */
}
.product-image.last {
  border-bottom: none;
}
.product-images img {
  width: 100%;
  cursor: zoom-in;
  display: block;
}
.product-images img.last {
}

.product-home .product-control-container {
  width: 50%;
  padding-top: 30px;
}
@media only screen and (max-width: 768px) {
  .product-home .product-control-container {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    width: calc(100% - 60px);
  }
}

.product-home .product-control {
  width: 80%;
  border-top: none;
  text-align: center;
  padding-top: 100px;
  margin-left: 6%;
  margin-right: 14%;
  right: 0;
  position: sticky;
  top: 10px;
  padding-bottom: 30vh;
}
@media only screen and (max-width: 768px) {
  .product-home .product-control {
    width: 100%;
    margin-left: unset;
    margin-right: unset;
    padding-top: unset;
  }
}

.product-control.fixed {
  position: fixed;
}

.product-control .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.product-control .heading .heart {
  position: absolute;
  right: 0;
  top: 0;
}

.product-control .heading .heart svg {
  width: 20px;
  height: 20px;
  transition: all 0.5s ease;
  fill: #fff;
}

.product-control .heading .heart svg {
  fill: #fff;
}
.product-control .heading button.active .heart svg {
  fill: red;
}
.product-control .heading button.active:hover .heart svg {
  fill: red;
}

.product-control .heading h1 {
  text-align: left;
  font-size: 18px;
  padding-right: 25px;
}

.product-control .hr {
  width: 100%;
  border-top: 1px solid #f2f2f2;
}

.product-home .product-control .price {
  text-align: left;
  margin: 10px 0;
  font-weight: 400;
  font-size: 14px;
}

.carousel {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

.product-grid-item .carousel {
  cursor: pointer;
}

.carousel .slider {
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.carousel .pagination {
  position: absolute;
  display: flex;
  z-index: 1;
  bottom: calc(3vh - 5px);
  width: 100%;
  justify-content: center;
}

.carousel .pagination .bullet {
  width: 5px;
  height: 5px;
  border-radius: 10px;
  opacity: 0.2;
  transition: opacity 0.25s;
  background-color: #000;
  margin: 0px 3px;
}
.carousel .pagination .bullet.active {
  opacity: 1;
}

.carousel .slider .item {
  position: relative;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel .slider img {
}

.carousel .pagers {
  opacity: 0;
  transition: opacity 0.0s;
}
.carousel .pagers.visible {
  opacity: 1;
}

.carousel button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border: 1px solid #f2f2f2;
  border-radius: 50px;
  background-color: #fff;
}
.carousel button.prev .caret-right {
  position: relative;
  right: 1px;
}
.carousel button.next .caret-right {
  position: relative;
  left: 1px;
}
@media only screen and (max-width: 768px) {
.carousel button.prev .caret-right {
  top: 1px;
}
.carousel button.next .caret-right {
  top: 1px;
}
}
.carousel button .caret-right svg {
  width: 12px;
  height: 12px;
}

.carousel button:hover {
  background-color: #f2f2f2;
}

.carousel button.next {
  position: absolute;
  top: calc(50% - 30px);
  right: 15px;
  z-index: 10;
}
.carousel button.prev {
  position: absolute;
  top: calc(50% - 30px);
  left: 15px;
  z-index: 10;
}
.carousel button.prev .caret-right svg {
  transform: rotate(180deg);
}

.product-home .size-selector {
  text-align: left;
  width: 100%;
  padding-top: 20px;
}
@media only screen and (max-width: 768px) {
  .product-home .size-selector {
    width: 100%;
  }
}

.product-home .size-selector .label {
  display: flex;
  justify-content: space-between;
}

.product-home .size-selector .selector {
}

.product-home .size-guide-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.product-home .info-links {
  margin-top: 25px;
}
.product-home .info-links button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px 0px;
  font-weight: 500;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .product-home .info-links button {
    padding: 10px 0px;
  }
}
.product-home .info-links button svg {
  width: 12px;
  height: 12px;
}

.selector {
  width: 100%;
  position: relative;
  user-select: none;
  cursor: pointer;
}

.selector .options {
  z-index: 100;
  position: absolute;
  width: 100%;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
  overflow-x: hidden;
}

.selector .options .option-items {
  width: calc(100% + 15px);
  overflow-y: scroll;
  max-height: 50vh;
}

.selector.down .options {
  z-index: 100;
  top: calc(100% - 2px);
  bottom: unset;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #111;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #fff;
  overflow-x: hidden;
}
.selector.up .options {
  bottom: calc(100% - 4px);
  top: unset;
  border-top: 1px solid #111;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.selector .selected {
  display: block;
  width: 100%;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  outline: none;
  color: #000;
  background-color: #fff;
  font-weight: 500;
  text-align: left;
  transition: border-color 0.2s;
}
.selector .selected:hover {
  border-color: #111;
}

.selector .selected .selected-text {
  outline: none;
  display: block;
  padding: 15px;
  min-height: 12px;
  padding-right: 25px;
  font-size: 12px;
}

.selector .selected.dropdown {
  border-bottom: 1px solid #111;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
  border-top: 1px solid #111;
  transition: border-color 0s;
}

.selector.down .selected.dropdown {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.selector.up .selected.dropdown {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.selector .option {
  display: block;
  width: 100%;
  padding: 10px 0px;
  border: none;
  outline: none;
  color: #000;
  background-color: #fff;
  font-weight: 500;
  text-align: left;
}
.selector .option {
  border-radius: 0px;
  padding: 10px 15px;
}
.selector.down .option.last {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.selector.up .option.first {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.selector .option:hover {
  background-color: #333;
  color: #fff;
}
.selector .selected:hover {
  color: #000;
  background-color: #fff;
}
.selector .option:disabled {
  color: #555;
  cursor: default;
  pointer-events: none;
}

.selector .caret {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
  transform: rotate(90deg);
  position: absolute;
  right: 12px;
  top: 40%;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.selector.open .caret {
  transform: rotate(-90deg);
}
.selector .caret svg {
  width: 12px;
  height: 12px;
}


.add-to-cart {
  margin-top: 25px;
}

.shopping-bag {
  display: flex;
  flex-direction: row;
  padding: 0;
  background-color: #f2f2f2;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .shopping-bag {
    flex-direction: column;
  }
}

.cart-empty {
  text-align: center;
  padding-top: 30vh;
  padding-bottom: 50vh;
  padding-left: 4vw;
  padding-right: 4vw;
  width: calc(100% - 8vw);
}

.cart-empty .start-shopping {
  margin: auto;
  margin-top: 15px;
  width: 250px;
}
@media only screen and (max-width: 768px) {
  .cart-empty .start-shopping {
    width: 80%;
  }
}

.wishlist-home .wishlist-empty .start-shopping {
  margin: auto;
  margin-top: 15px;
  width: 250px;
}
@media only screen and (max-width: 768px) {
  .wishlist-home .wishlist-empty .start-shopping {
    width: 80%;
  }
}

.shopping-bag > .left {
  width: 60%;
}
.shopping-bag > .right {
  background-color: #f2f2f2;
  width: 28%;
  margin-right: 4%;
  margin-left: 2%;
}

.shopping-bag > .right .dropdown-sections {
  padding: 25px 4vw;
  margin-bottom: 20px;
}

.shopping-bag .dropdown-sections {
  border-bottom: none;
  margin-top: 20px;
  background-color: #fff;
}
.shopping-bag .dropdown-sections.mobile {
  padding: 25px 4vw;
  background-color: #fff;
  border-bottom: none;
  border-top: 1px solid #f2f2f2;
  padding-bottom: 50px;
}

.shopping-bag .top.row {
  margin-top: 35px;
}
.shopping-bag > .left > .top.row {
  margin-top: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.shopping-bag .heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.shopping-bag .heading .cart-size {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  top: -6px;
  left: 6px;
}

.shopping-bag .logo {
  width: 100%;
  text-align: center;
  padding-top: 17px;
  padding-bottom: 10px;
  background-color: #fff;
}

.shopping-bag .buttons.bottom {
  margin-top: 25px;
  margin-bottom: 35px;
}
.shopping-bag > .right > .buttons.bottom {
  margin-top: 35px;
  padding: 0;
}

.shopping-bag .buttons.top {
  margin-top: 50px;
}

.shopping-bag > .left > .buttons {
  width: 100%;
  display: flex;
  align-items: end;
  flex-direction: column;
}
.shopping-bag > .left > .buttons > * {
  padding: 0;
}
.shopping-bag > .left > .buttons > .proceed-to-checkout {
  width: 38%;
}
.shopping-bag > .left .buttons > .continue-shopping {
  width: 38%;
}

.shopping-bag > .buttons.top,
.shopping-bag .row,
.shopping-bag .cart-items
{
  padding: 0 4vw;
}

.shopping-bag > .left {
  margin-left: 4%;
  margin-right: 2%;
  margin-bottom: 50px;
}

.shopping-bag > .left > .buttons,
.shopping-bag > .left > .row,
.shopping-bag > .left > .cart-items {
  padding: 0;
}

.shopping-bag > .left > .buttons {
  margin-top: 30px;
}

.shopping-bag > .left .cart-items {
  margin-top: 30px;
}

.shopping-bag .cart-items {
  padding-top: 30px;
}

.shopping-bag .cart-item-container {
  position: relative;
  margin-bottom: 25px;
  transition: all 0.3s;
}
.shopping-bag .cart-item-container.last {
}
.shopping-bag .cart-item-container.removing-overflow {
  overflow: hidden;
}
.shopping-bag .cart-item-container.removing-margin {
  margin-bottom: 0px;
}
.shopping-bag .cart-item-container .remove-cover {
  position: absolute;
  width: 100%;
  opacity: 0;
  height: 100%;
  min-height: 70vh;
  top: 0;
  left: 100%;
  transition: left 0.3s ease-in-out;
  z-index: 10;
  background-color: #e5e5e5;
  display: flex;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.shopping-bag .cart-item-container .remove-cover.active {
  opacity: 1;
  left: 0%;
  pointer-events: all;
}
.shopping-bag .cart-item-container .remove-cover .message {
  opacity: 0;
  transition: opacity 0.3s;
}
.shopping-bag .cart-item-container .remove-cover .message.active {
  opacity: 1;
}
.shopping-bag .cart-item-container .remove-cover.active.removing {
  /*
  margin-top: -100%;
  */
}

.shopping-bag .cart-item-container .remove-cover .message {
  padding: 0px 15%;
  padding-top: 28vh;
}
@media only screen and (max-width: 768px) {
  .shopping-bag .cart-item-container .remove-cover .message {
    padding-top: 20vh;
  }
}
.shopping-bag .cart-item-container .remove-cover .remove {
  margin-bottom: 5px;
}
.shopping-bag .cart-item-container .remove-cover .remove svg {
  height: 20px;
  width: 20px;
}

.shopping-bag .cart-item {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  border: 1px solid #f2f2f2;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .shopping-bag .cart-item {
    flex-direction: column;
  }
}

.shopping-bag .cart-item.removing {
  margin-top: -108%;
}

.cart-item img {
  cursor: zoom-in;
}

.cart-item > .left {
  width: 50%;
  padding: 10px;
  border-left: 1px solid #f2f2f2;
}
.shopping-bag .cart-item > .left > .cover {
  /*
  border: none;
  */
}

.cart-item > .right {
  width: 50%;
  position: relative;
  min-height: 50vh;
}

.shopping-bag .cart-item.last {
  margin-bottom: 0px;
}
.shopping-bag .cart-item .cover {
  display: flex;
  justify-content: center;
  align-items: center;

  /*
  border: 1px solid #f2f2f2;
  */
}
@media only screen and (max-width: 768px) {
  .shopping-bag .cart-item .cover {
    /*
    width: 38%;
    */
  }
}

.shopping-bag .cart-item .cover img {
  height: 60vh;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .shopping-bag .cart-item .cover img {
    height: 20vh;
  }
}

.shopping-bag .cart-item .product-info {
  font-size: 12px;
  padding-left: 15px;
}

.cart-item .info-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item .info-heading .left {
  padding: 10px;
  border-left: 1px solid #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .cart-item .info-heading .left {
    width: 38%;
  }
}

.cart-item .info-heading .middle {
  width: 100%;
}
.cart-item .info-heading .right {
}
.cart-item .info-heading .right .product-details-button {
}
.cart-item .info-heading .product-details-button button {
  padding: 10px;
  padding-top: 25px;
  padding-bottom: 25px;
  background: none;
  outline: none;
  border: none;
  /*
  padding-right: 15px;
  */
}
@media only screen and (max-width: 768px) {
  .cart-item .info-heading .product-details-button button {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cart-item .info-heading .product-details-button svg {
  width: 12px;
  height: 12px;
}

.cart-item .magnifying-glass-plus-container {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.magnifying-glass-plus-container .magnifying-glass-plus {
}

.magnifying-glass-plus {
}
.magnifying-glass-plus svg {
  width: 15px;
  height: 15px;
}

.cart-item > .right .info-heading {
}

.cart-item .info-heading .product-name {
  padding-left: 10px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 16px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .cart-item .info-heading .product-name {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.cart-item .sub-info {
  border-top: 1px solid #f2f2f2;
  padding: 15px;
  font-size: 14px;
}
.cart-item .right > .sub-info {
  /*
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  */
}
.cart-item .right > .sub-info > .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.cart-item .right > .sub-info > .bottom > .qty-price {
  padding: 15px;
}
.cart-item .buttons {
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-top: 1px solid #f2f2f2;
}
.cart-item .buttons > .button {
  width: 50%;
}
.cart-item .buttons > .button.left {
  border-right: 1px solid #f2f2f2;
}
.cart-item .buttons > .button button {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-item .buttons > .button .heart {
  width: fit-content;
  margin-right: 8px;
  position: relative;
  bottom: -1px;
}

.cart-item .buttons > .button .heart svg {
  width: 14px;
  height: 14px;
  transition: all 0.5s ease;
  fill: #fff;
}
.cart-item .buttons > .button:hover .heart svg {
  fill: #fff;
}
.cart-item .buttons > .button button.active .heart svg {
  fill: red;
}
.cart-item .buttons > .button:hover button.active .heart svg {
  fill: red;
}

.cart-item .buttons > .button .remove {
  width: fit-content;
  margin-right: 8px;
  position: relative;
  bottom: -2px;
}
.cart-item .buttons > .button .remove svg {
  width: 14px;
  height: 14px;
  transition: fill 0.2s ease;
  fill: none;
}
.cart-item .buttons > .button:hover {
  background-color: #fcfcfc;
}


.cart-item .info-item {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-item .qty-price {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item .qty-selector .selector {
  width: 60px;
}
.cart-item .qty-selector .selector .options .option-items {
  max-height: 30vh;
}

.shopping-bag .summary {
  padding: 20px 4vw;
  padding-bottom: 0;
  background-color: #fff;
}

.shopping-bag .right > .summary {
  margin-top: 20px;
  padding-top: 35px;
  padding-bottom: 5px;
}

.shopping-bag .hr {
  width: 100%;
  border-bottom: 1px solid #f2f2f2;
  margin: 20px 0px;
}

.shopping-bag .line-item {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.shopping-bag .shipping, .shopping-bag .tax {
  margin-top: 15px;
}

.shopping-bag .tax {
}

.shopping-bag .disclaimer {
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

.shopping-bag .total {
  margin-top: 30px;
  font-size: 16px;
}

.shopping-bag .footer-container {
  margin-top: 25px;
}

.proceed-to-checkout {
  margin-bottom: 10px;
}
.continue-shopping {
  text-align: center;
}

.proceed-to-checkout.bottom {
  margin-top: 25px;
}

.add-to-cart-success {
}
.add-to-cart-success .product-container {
  padding-top: 15px;
}

.add-to-cart-success .product.small {
  margin-bottom: 15px;
}

.product.small {
  display: flex;
  align-items: center;
}
.product.small .cover {
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;

  /*
  border: 1px solid #f2f2f2;
  */
}
.product.small .cover img {
  width: 100%;
  height: 100%;
}
.product.small .product-info {
  font-size: 12px;
  padding-left: 15px;
  width: 67%;
}

/*
.popup-container .background {
  position: fixed;
  width: 50vw;
  height: 100vh;
  background-color: #fff;
  z-index: 102;
  transition: right 0.33s ease-in, opacity 0.5s;
  overflow-y: scroll;
}
*/

.add-to-cart-success .buttons {
  padding-top: 15px;
}
.add-to-cart-success .buttons.right {
  text-align: right;
}
.add-to-cart-success .view-my-cart-container {
  margin-bottom: 10px;
}

.remove-product-popup h5 {
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}
.remove-product-popup .product-container {
  margin-top: 20px;
}

.remove-product-popup .buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 15px;
  width: 100%;
}
.remove-product-popup .buttons .left {
  width: calc(50% - 5px);
  margin-right: 5px;
}
.remove-product-popup .buttons .right {
  width: calc(50% - 5px);
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  .remove-product-popup .buttons {
    flex-direction: column-reverse;
  }
  .remove-product-popup .buttons .left {
    width: 100%;
    margin-top: 5px;
    margin-right: 0px;
  }
  .remove-product-popup .buttons .right {
    width: 100%;
    margin-left: 0px;
  }
}

.add-to-wishlist-success .buttons,
.remove-from-wishlist-success .buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .add-to-wishlist-success .buttons,
  .remove-from-wishlist-success .buttons {
    flex-direction: column-reverse;
  }
}

.add-to-wishlist-success .buttons .left,
.remove-from-wishlist-success .buttons .left {
  width: calc(50% - 5px);
  margin-right: 5px;
}
.add-to-wishlist-success .buttons .right,
.remove-from-wishlist-success .buttons .right {
  width: calc(50% - 5px);
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  .add-to-wishlist-success .buttons .left,
  .remove-from-wishlist-success .buttons .left {
    width: 100%;
    margin-right: 0px;
  }
  .add-to-wishlist-success .buttons .right,
  .remove-from-wishlist-success .buttons .right {
    width: 100%;
    margin-left: 0px;
  }
}

.add-to-wishlist-success .close, .remove-from-wishlist-success .close {
  margin-bottom: 0px;
}
@media only screen and (max-width: 768px) {
  .add-to-wishlist-success .close, .remove-from-wishlist-success .close {
    margin-bottom: 10px;
  }
}

.wishlist-home {
  background-color: #f2f2f2;
  min-height: 50vh;
  padding: 0 4vw;
  padding-bottom: 4vh;
  width: calc(100% - 8vw);
}

.wishlist-home .wishlist-empty {
  text-align: center;
  padding-top: 30vh;
  padding-bottom: 50vh;
  width: 100%;
}

.wishlist-home .wishlist-empty .start-shopping {
  margin: auto;
  margin-top: 15px;
  width: 250px;
}
@media only screen and (max-width: 768px) {
  .wishlist-home .wishlist-empty .start-shopping {
    width: 80%;
  }
}

.wishlist-home .heading {
  display: flex;
  align-items: center;
}
.wishlist-home .wishlist-size {
  font-size: 16px;
  position: relative;
  top: -3px;
  left: 6px;
}

.wishlist-home .top.row {
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .wishlist-home .top.row {
    padding-top: 30px;
  }
}

.wishlist-home .wishlist-items {
  margin-top: 25px;
  margin-bottom: 25px;
}

.wishlist-items {
  display: grid;
  justify-items: start;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .wishlist-items {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.wishlist-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.wishlist-item .product-info {
  position: absolute;
  bottom: 0;
  padding: 25px;
  padding-top: 15vh;
  padding-bottom: 3vh;
  width: calc(100% - 50px);
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  color: #fff;
}

.wishlist-item .product-info .product-name {
  font-weight: 500;
  width: fit-content;
}
.wishlist-item .product-info .size {
  font-size: 12px;
  width: fit-content;
  font-weight: 400;
}
.wishlist-item .product-info .price {
  font-size: 12px;
  width: fit-content;
  font-weight: 400;
}

.wishlist-item .cover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-item .cover img {
  width: 100%;
}

.wishlist-item .button-cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}
.wishlist-item .button-cover:hover {
  /*
  opacity: 1;
  */
}
.wishlist-item.hover .button-cover {
  opacity: 1;
}
.wishlist-item .product-link .product-name {
  transition: all 0.3s;
}
.wishlist-item.hover .product-link .product-name {
  text-decoration: underline;
}
.wishlist-item .button-cover .buttons {
  width: 80%;
}
.wishlist-item .button-cover .buttons button {
  pointer-events: none;
}
.wishlist-item .button-cover .buttons button.hover {
  pointer-events: auto;
}
.wishlist-item .button-cover .buttons .left {
  margin-bottom: 5px;
}

.remove-from-wishlist-confirm .buttons {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}
.remove-from-wishlist-confirm .buttons .left {
  width: calc(50% - 5px);
  margin-right: 5px;
}
.remove-from-wishlist-confirm .buttons .right {
  width: calc(50% - 5px);
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  .remove-from-wishlist-confirm .buttons {
    flex-direction: column-reverse;
  }
  .remove-from-wishlist-confirm .buttons .left {
    width: 100%;
    margin-top: 5px;
  }
  .remove-from-wishlist-confirm .buttons .right {
    width: 100%;
    margin-left: 0px;
  }
}

.remove-from-wishlist-confirm h5 {
  margin-top: 15px;
  font-weight: 400;
}

.product-link {
  text-align: left;
  position: relative;
  z-index: 1;
}
.product-link a {
  text-decoration: none;
  height: 100%;
}
.product-link a:hover {
  text-decoration: underline;
}

.wishlist-item .product-link a {
  color: #fff;
  width: fit-content;
  display: block;
}
.wishlist-item .product-link a:hover {
  text-decoration: none;
}

.carousel-popup .close {
  width: 100vw;
}
.carousel-popup .close .x-icon {
  /*
  position: relative;
  top: 1px;
  */
}
@media only screen and (max-width: 768px) {
  .carousel-popup .close .x-icon {
    position: relative;
    top: 0.5px;
  }
}

.carousel-popup .close button {
  position: fixed;
  right: 3vw;
  top: 2vw;
  z-index: 1;
  border-radius: 36px;
  width: 36px;
  height: 36px;
  border: 1px solid #f2f2f2;
  background-color: #fff;
}
.carousel-popup .close button:hover {
  background-color: #f2f2f2;
}
.carousel-popup .carousel .item {
}

.carousel-popup .carousel img {
  width: 100vw;
  cursor: zoom-out;
}
@media only screen and (max-width: 768px) {
  .carousel-popup .carousel img {
    position: relative;
    width: 200vw;
    right: 50vw;
    top: -8vh;
  }
}

.carousel-popup.popup-container .popup {
  display: none;
}
.carousel-popup.popup-container .background {
}
.carousel-popup.popup-container .background .content {
  padding: 0;
  background-color: transparent;
}

.carousel-popup .carousel {
}

.product-details-popup {
}
.product-details-popup .product-container {
  margin-top: 15px;
}

.product-details-popup .hr {
  width: 100%;
  border-top: 1px solid #f2f2f2;
  margin-top: 10px;
  margin-bottom: 30px;
}

.product-details-popup .product-care-dropdown {
  margin-top: 20px;
}
.product-details-popup .product-care-dropdown .product-care {
  font-size: 12px;
}
.product-details-popup .product-care-dropdown .product-care p {
}
.product-details-popup .product-care-dropdown .product-care ul {
  margin-top: 10px;
  padding-left: 45px;
}

.product-detail-list {
  padding: 0 15px;
}
.product-detail-list li {
  font-size: 12px;
}
.product-detail-list li > span {
  font-size: 12px;
}

.product-details-popup .product-ecolabels {
  margin-top: 30px;
}

.product-ecolabels {
  display: block;
  width: 100%;
}

.product-ecolabels > img {
  height: 50px;
  padding: 0px 5px;
}
.product-ecolabels > img:first-child {
  padding: 0px;
  padding-left: 0px;
  padding-right: 5px;
}
.product-ecolabels > img:last-child {
  padding: 0px;
  padding-left: 5px;
  padding-right: 0px;
}

.product-info-popup .heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: sticky;
  top: 0px;
  background-color: #fff;
  padding: 5px 0;
  z-index: 10;
}
.product-info-popup .heading .back {
}
.product-info-popup .heading .back button {
  padding: 10px;
  position: relative;
  top: 1px;
}
.product-info-popup .heading .back svg {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
}

.product-info-popup .buttons {
  margin-top: 25px;
}
.product-info-popup .buttons button {
  margin-bottom: 5px;
}

.size-chart {
  margin-top: 30px;
}

.size-chart > h3 {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-left: 15px;
}

.size-chart .table {
  display: flex;
  align-items: center;
  justify-content: center;

  /*
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  */

  font-size: 12px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  width: fit-content;
  margin: 0 auto;
}

.size-chart .table .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.size-chart .table .row span {
  padding: 5px 25px;
}

.size-chart .table .col {
  display: flex;
  justify-content: center;
  align-items: normal;
  flex-direction: column;
  border-left: 1px solid #111;
  text-align: center;
}
.size-chart .table .col:last-child {
  border-right: 1px solid #111;
}
.size-chart .table .col span {
  padding: 5px;
  border-bottom: 1px solid #111;
}
.size-chart .table .col span:last-child {
  border-bottom: none;
}

.size-chart .how-to-measure-container {
  margin-top: 45px;
}
.size-chart .how-to-measure-container > h3 {
  padding-left: 15px;
}
.size-chart .how-to-measure-container .diagram {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}
.size-chart .how-to-measure-container svg {
  width: 100%;
  height: auto;
  max-height: 40vh;
}
.size-chart .how-to-measure-container .description {
  margin-top: 30px;
  font-size: 12px;
  padding: 0px 15px;
}

.delivery-and-returns-popup .dropdown-sections {
  margin-top: 30px;
}
.dropdown-sections .section {
  padding-top: 15px;
  white-space: break-spaces;
}
.dropdown-sections .section p {
  margin-bottom: 15px;
  font-size: 12px;
}

.dropdown-sections .dropdown-section {
  margin-bottom: 30px;
}
.dropdown-sections .dropdown-section:last-child {
  margin-bottom: 0;
}

.flex-30-70 {
  display: flex;
  width: 100%;
}
.flex-30-70 .left {
  width: calc(30% - 5px);
  padding-right: 5px;
}
.flex-30-70 .right {
  width: calc(70% - 5px);
  padding-left: 5px;
}

.checkout-home {
  background-color: #f2f2f2;
  padding-top: 6vh;
  padding-bottom: 8vh;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .checkout-home {
    padding-bottom: 0px;
    padding-top: 0px;
  }
}
.checkout-home.cart-empty {
  padding-top: 0;
  padding-bottom: 0;
}

.checkout-home > .left {
  width: 63%;
  margin-left: 2%;
  margin-right: 1%;
}
.checkout-home > .right {
  width: 31%;
  margin-right: 2%;
  margin-left: 1%;
}
@media only screen and (max-width: 768px) {
  .checkout-home {
    flex-direction: column;
  }
  .checkout-home > .left {
    width: 100%;
    margin: 0;
  }
  .checkout-home > .right {
    width: 100%;
    margin: 0;
  }
}

.checkout-home section .heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.checkout-home section .heading .modify {
  margin-left: 10px;
}

.checkout-home .cart-items .modify {
  margin-left: 10px;
}
.checkout-home .cart-items .modify a {
  font-size: 14px;
}

.checkout-home section .heading h2 {
  margin-left: 10px;
  font-weight: 500;
  font-size: 22px;
}


.checkout-home .cart-items .heading .cart-size {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  top: -6px;
  left: 6px;
}

.filled-circle {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  border-radius: 33px;
  height: 33px;
  width: 33px;
  user-select: none;
  opacity: 1;
  transition: all 0.3s;
}

.filled-circle.transitioning {
  opacity: 0;
}

.checkout-home section {
  background-color: #fff;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .checkout-home section {
    margin-bottom: 1px;
  }
}

.checkout-home section .content {
  transition: all 0.3s;
  opacity: 1;
}
.checkout-home section.transitioning .content {
  opacity: 0;
}

.checkout-home section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*
  border-bottom: 1px solid #f2f2f2;
  */
}

.checkout-home section .heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 35px;
  color: #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .checkout-home section .heading {
    padding: 15px 20px;
    padding-right: 0px;
  }
}
.checkout-home section .heading .filled-circle {
  background-color: #f2f2f2;
}
.checkout-home section .heading .filled-circle .checkmark {
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkout-home section .heading .filled-circle .checkmark svg {
  width: 20px;
  height: 20px;
}
.checkout-home section.active .heading .filled-circle {
  background-color: #000;
}
.checkout-home section.active .row {
  border-top: none;
  border-bottom: 1px solid #f2f2f2;
}
.checkout-home section.active h2 {
  color: #000;
}
.checkout-home section.complete .heading .filled-circle {
  background-color: #228B22;
}
.checkout-home section.complete .row {
  border-top: none;
  border-bottom: 1px solid #f2f2f2;
}
.checkout-home section.complete h2 {
  color: #000;
}

.checkout-home section .content {
  padding: 30px 35px;
}
@media only screen and (max-width: 768px) {
  .checkout-home section .content {
    padding: 30px 15px;
  }
}
.checkout-home section .instruction {
  margin-bottom: 30px;
}
.checkout-home section p {
  font-size: 12px;
}
.checkout-home section .form {
  position: relative;
  padding-top: 15px;
}

.checkout-home section .form .buttons {
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .checkout-home section .form .buttons {
    padding-top: 0;
  }
}
.checkout-home section .buttons > .left {
  width: calc(50% - 30px);
  margin-right: 15px;
  margin-left: 15px;
}
.checkout-home section .buttons > .right {
  width: calc(50% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}
@media only screen and (max-width: 768px) {
  .checkout-home section .form .buttons {
    flex-direction: column-reverse;
  }
  .checkout-home section .form .buttons > div {
    width: 100%;
  }
  .checkout-home section .form .buttons > .left {
    width: 100%;
    margin: 0;
  }
  .checkout-home section .form .buttons > .right {
    width: 100%;
    margin: 0;
    margin-bottom: 5px;
  }
}

.checkout-home section .modify {
  padding: 0 30px;
  padding-left: 0px;
  transition: all 0.3s;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .checkout-home section .modify {
    padding-right: 15px;
  }
}

.checkout-home section .modify.transitioning {
  opacity: 0;
}

.checkout-home .delivery-options .input.country-region {
  margin-bottom: 5px;
}

.available-delivery-options {
  margin: 15px 0;
}
.available-delivery-options.empty {
  margin: 0;
}

.radio-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f2f2f2;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 15px;
  cursor: pointer;
  width: calc(100% - 30px);
  background-color: #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .radio-option {
    flex-direction: column;
    align-items: flex-start;
  }
}

.radio-option .radio-description {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.radio-option .radio-description .label {
  text-align: left;
}
.radio-option .radio-description h3 {
  font-size: 16px;
  margin-bottom: 5px;
  cursor: pointer;
}
.radio-option .radio-description p {
  font-size: 12px;
  cursor: pointer;
}

.radio-option .radio-description input[type="radio"] {
  cursor: pointer;
  margin-right: 15px;
  accent-color: black;
}

.available-delivery-options .radio-option .cost {
  padding-left: 30px;
  margin-top: 0px;
}
.available-delivery-options .radio-option .cost {
}
@media only screen and (max-width: 768px) {
  .available-delivery-options .radio-option .cost {
    padding-left: 0px;
    margin-top: 15px;
  }
  .available-delivery-options .radio-option .cost p {
  }
}

.spinner-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 12px;
}

.spinner {
  position: absolute;
  left: calc(50% + 10px);
  top: 15px;
  animation: rotate 2s linear infinite;
  z-index: 2;
  margin: -25px 0 0 -25px;
  width: 30px;
  height: 30px;
  
  
}

.spinner .path {
  stroke: black;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.checkout-nav-top {
}

.checkout-nav-top nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  border-bottom: 1px solid #f2f2f2;
  overflow-x: hidden;
  min-width: 300px;
}

.checkout-nav-top nav .logo {
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  top: 2px;
}
@media only screen and (max-width: 768px) {
  .checkout-nav-top nav .logo {
  }
}
.checkout-nav-top nav .logo img {
  width: 110px;
}

.checkout-nav-top nav .left {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .checkout-nav-top nav .left {
    width: 50%;
  }
}

.checkout-nav-top nav .right {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .checkout-nav-top nav .right {
    width: 50%;
  }
}

.secure-payment {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 15px;
  background: none;
  outline: none;
  border: none;
  color: black;
}

.secure-payment span {
  position: relative;
  top: -2px;
  white-space: nowrap;
}

.secure-payment .lock {
  margin-right: 10px;
  position: relative;
  top: 0px;
}

.lock svg {
  width: 15px;
  height: fit-content;
}

.secure-payment-popup > .background > .content {
  padding: 30px;
}

.secure-payment-popup h3 {
  margin-bottom: 30px;
}
.secure-payment-popup p {
  font-size: 12px;
  margin-bottom: 15px;
}

.secure-payment-popup .buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.secure-payment-popup .buttons .button {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .secure-payment-popup .buttons .button {
    width: 100%;
  }
}

.shipping-address-popup .buttons {
  margin-top: 30px;
}

.shipping-address-popup .form {
  position: relative;
  padding-top: 5px;
  margin-top: 15px;
}

.shipping-address-popup .phone-number .selector .selected .selected-text {
  white-space: nowrap;
}

.checkout-home .heading h1 {
  padding: 30px 0;
}

.checkout-home .row.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-home .cart-items {
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 30px;
}

.checkout-home .cart-items .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.checkout-home .cart-items .product {
  margin-bottom: 15px;
}

.checkout-home .summary {
  background-color: #fff;
  padding: 30px 4vw;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .checkout-home .summary {
    margin-bottom: 1px;
  }
}

.checkout-home .line-item {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.checkout-home .disclaimer {
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

.checkout-home .line-item.subtotal,
.checkout-home .line-item.shipping,
.checkout-home .disclaimer
{
  margin-bottom: 15px;
}

.checkout-home .total {
  margin-top: 30px;
  font-size: 16px;
}

.checkout-home .dropdown-sections {
  background-color: #fff;
  padding: 30px 4vw;
}
@media only screen and (max-width: 768px) {
  .checkout-home .dropdown-sections {
    padding-bottom: 50px;
  }
}

.checkout-home section.complete .info-item {
  margin-bottom: 30px;
}
.checkout-home section.complete .info-item:last-child {
  margin-bottom: 0px;
}
.checkout-home section.complete h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.checkout-home section .buttons {
  display: flex;
  align-items: center;
}
.checkout-home section .buttons > div {
  width: 50%;
}

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

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

@media only screen and (max-width: 768px) {
  .payment .radio-option {
    flex-direction: row;
  }
}

.payment .radio-option .radio-description h3 {
  margin: 0;
}

.shipping-address-popup .input.address1 {
  position: relative;
}

.shipping-address-popup .input.address1 .autocomplete-addresses {
  visibility: hidden;
}
.shipping-address-popup .input.address1.active .autocomplete-addresses {
  visibility: visible;
}

.autocomplete-addresses {
  position: absolute;
  top: initial;
  left: 0;
  background-color: #fff;
  width: 100%;
  border: 1px solid #f2f2f2;
  border-top: none;
}

.autocomplete-addresses button {
  padding: 15px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.autocomplete-addresses button:hover {
  background-color: #111;
  color: #fff;
}

.autocomplete-addresses .main-text {
}
.autocomplete-addresses .secondary-text {
  margin-left: 5px;
  color: #333;
  font-size: 12px;
}

#paypal-button-container {
  margin-top: 30px;
}

.confirmation {
  background-color: #fff;
  width: 768px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  .confirmation {
    width: 90%;
  }
}

.confirmation h1 {
  font-size: 28px;
  font-weight: 500;
}
.confirmation .heading {
  text-align: left;
}
.confirmation .heading .top-info {
  font-size: 14px;
  margin-top: 15px;
}
.confirmation .heading .message {
  font-size: 14px;
  margin-top: 15px;
}

.confirmation-nav-top {
}
.confirmation-nav-top .middle {
  padding-top: 50px;
  text-align: center;
}

.confirmation-nav-top .logo img {
  width: 200px;
}

.confirmation-home .cart-empty {
  padding-top: 15vh;
}

.product.line-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.returns-home .product.line-item {
  border: 1px solid #000;
  border-bottom: none;
}
.returns-home .product.line-item:last-child {
  border-bottom: 1px solid #000;
}

.product.line-item .qty-selector {
  padding-right: 15px;
}

.product.line-item .cover {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .product.line-item .cover {
    width: 33%;
  }
}

.product.line-item .cover img {
  width: 100%;
  object-fit: cover;
}

.product.line-item .product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 150px);
}
@media only screen and (max-width: 768px) {
  .product.line-item .product-info {
    width: 67%;
  }
}

.product.line-item .price-container {
  margin-left: 30px;
}
.product.line-item .price {
  font-weight: 500;
  font-size: 14px;
}
.product.line-item .details {
  font-size: 14px;
}

.confirmation .cart-items {
  margin-top: 30px;
}

.confirmation .line-items {
  margin-top: 45px;
}
.confirmation .line-items > .line-item {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 15px;
}

.confirmation .hr {
  border-bottom: 1px solid #f2f2f2;
  margin: 30px 0;
}

#credit-card-container {
  margin-top: 30px;
  min-height: 563px;
}

#credit-card-container button.pay-now {
  margin-top: 30px;
  min-height: 50px;
}

.stripe-popup .heading p {
  font-size: 14px;
  margin-top: 15px;
}

.stripe-popup .buttons {
  margin-top: 5px;
}

.alert-popup .children-container {
  margin: 15px 0;
}

.out-of-stock {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.credit-card-icon svg {
  width: 36px;
  height: auto;
}
.delivery-truck-icon svg {
  width: 50px;
  height: auto;
}
.product-exchange-icon svg {
  width: 32px;
  height: auto;
}

.services {
}

.services main {
  width: 500px;
  margin: 0 auto;
  min-height: 100vh;
}
@media only screen and (max-width: 768px) {
  .services main {
    width: 90%;
  }
}

.services main .header {
  padding-top: 20vh;
  transition: padding-top 0.3s ease-in-out;
}
.services main .header.initial {
  padding-top: 5vh;
}

.services main .order-number {
  padding: 2vh 0;
}

.services main .order-number input {
  margin-top: 5px;
}
.services main .order-number button {
  margin-top: 10px;
}

.services .returns {
  padding-top: 15px;
}

.services .returns .order-products {
  margin-top: 10px;
}

.services .returns .return-reason {
  margin-top: 15px;
}

.services .returns .continue {
  margin-top: 10px;
}

.returns-home .return-policy {
  font-size: 12px;
  padding: 15px 0;
}

footer p.placeholder {
  padding: 0;
  margin-bottom: 30px;
  color: #555;
}
@media only screen and (max-width: 768px) {
  footer p.placeholder {
    padding: 10px 0;
    margin: 0;
  }
}

/*
@media only screen and (max-width: 768px) {
  h1 {font-size:clamp(2.2rem, 9vw, 3rem) !important;}
  h2 {font-size:clamp(1.8rem, 7vw, 2.6rem) !important;}
  h3 {font-size:clamp(1.6rem, 6vw, 2.2rem) !important;}
  h4 {font-size:clamp(1.4rem, 5vw, 2rem) !important;}
  p {font-size:clamp(1.1rem, 4vw, 1.3rem) !important;}
  button {font-size:clamp(1.1rem, 4vw, 1.3rem) !important;}
  li {font-size:clamp(1.1rem, 4vw, 1.3rem) !important;}
  a {font-size:clamp(1.1rem, 4vw, 1.3rem) !important;}
}
*/

.about-home * {
  font-family: UnifrakturMaguntia;
}
.about-home main {
  width: fit-content;
  padding: 36vh 2vw;
  padding-top: 34vh;
}
.about-home main p {
  font-size: 22px;
  font-weight: 500;
}

.commandments-home {
}
.commandments-home * {
  font-family: UnifrakturMaguntia;
}
.commandments-home.bare > main {
  padding-top: 35vh;
}
.commandments-home h1 {
  text-align: left;
  margin-bottom: 15px;
}
.commandments-home li {
  text-align: left;
  list-style: none;
  margin-bottom: 10px;
}

.religion-home {
}
.religion-home * {
  font-family: UnifrakturMaguntia;
}
.religion-home.bare > main {
  padding-top: 25vh;
}
@media only screen and (max-width: 768px) {
  .religion-home.bare > main {
    padding-top: 16vh;
  }
}

.religion-home section {
  margin-bottom: 50px;
}

.religion-home h1 {
  text-align: left;
  margin-bottom: 42px;
  font-size: 80px;
}
.religion-home p {
  font-size: 16px;
  text-align: left;
  margin-bottom: 10px;
}
.religion-home h2 {
  text-align: left;
  margin-bottom: 28px;
  font-size: 28px;
}
.religion-home li {
  text-align: left;
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
}

.religion-home li .first-verse-number {
  font-size: 24px;
  position: relative;
  top: 4px;
  margin-right: 12px;
}

.religion-home li .verse-number {
  font-size: 12px;
  position: relative;
  bottom: 6px;
  margin-right: 6px;
}

.religion-home .chapter-annotation {
  font-size: 22px;
}

.religion-home .verse-annotation {
  font-size: 12px;
  position: relative;
  bottom: 6px;
}

#not-found-home {
}

#not-found-home {
  text-align: center;
  padding-top: 30vh;
  padding-bottom: 50vh;
  padding-left: 4vw;
  padding-right: 4vw;
  width: calc(100% - 8vw);
}

#not-found-home .start-shopping {
  margin: auto;
  margin-top: 15px;
  width: 250px;
}
@media only screen and (max-width: 768px) {
  #not-found-home .start-shopping {
    width: 80%;
  }
}

.measurements-disclaimer {
  font-size: 10px;
  padding-top: 15px;
  text-align: right;
}

.confessional-home main {
  position: relative;
  min-height: 100vh;
  overflow-y: hidden;
}
@media only screen and (max-width: 768px) {
  .confessional-home main {
    min-height: 100vh;
  }
}
.confessional-home main .background {
  width: 100%;
  margin: 0 auto;
  background-color: #000;
  overflow-x: hidden;
  overflow-y: hidden;
  position: absolute;
  z-index: 0;
}

.monogram-pattern {
}
@media only screen and (max-width: 768px) {
  .monogram-pattern {
  }
}

.confessional-home .background .monogram-pattern {
}

.monogram-pattern img, .monogram-pattern svg {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .monogram-pattern img, .monogram-pattern svg {
    width: 275%;
  }
}

.confessional-home main .editor-container {
  position: relative;
  z-index: 1;
  width: 500px;
  margin: 0 auto;
  margin-top: 15vh;
  margin-bottom: 15vh;
}
@media only screen and (max-width: 768px) {
  .confessional-home main .editor-container {
    width: 92%;
  }
}

.confessional-home .editor {
  border-radius: 25px;
  background-color: #fff;
  border: none;
  outline: none;
  padding: 20px 25px;
  height: 50vh;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.confessional-home .done-message {
  margin: 0 auto;
  margin-top: 38vh;
  position: relative;
  border-radius: 25px;
  padding: 20px 25px;
  background-color: #fff;
  width: calc(500px - 50px);
}
@media only screen and (max-width: 768px) {
  .confessional-home .done-message {
    width: calc(92% - 50px);
  }
}

.fitness-home {
}
.fitness-home.bare > main {
  padding-top: 25vh;
}
@media only screen and (max-width: 768px) {
  .fitness-home.bare > main {
    padding-top: 16vh;
  }
}

.fitness-home section {
  margin-bottom: 50px;
}

.fitness-home * {
  font-family: UnifrakturMaguntia;
}
.fitness-home h1 {
  text-align: left;
  margin-bottom: 42px;
  font-size: 42px;
}
.fitness-home h2 {
  text-align: left;
  margin-bottom: 28px;
  font-size: 28px;
}
.fitness-home li {
  text-align: left;
  list-style: none;
  margin-bottom: 10px;
  font-size: 22px;
}
.fitness-home p {
  text-align: left;
}

.fitness-home .dropdown-section {
  margin-bottom: 15px;
}

.fitness-home .dropdown-section h6 {
  font-size: 22px;
}

.fitness-home .dropdown-section p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.fitness-home .activities .link {
  text-align: left;
  margin-bottom: 10px;
}

.fitness-home a {
  font-size: 16px;
}

.fitness-home .activities a {
  font-size: 22px;
}

.rules-home.bare > main {
  padding-top: 25vh;
}
@media only screen and (max-width: 768px) {
  .rules-home.bare > main {
    padding-top: 16vh;
  }
}

.rules-home * {
  font-family: UnifrakturMaguntia;
}
.rules-home h1 {
  text-align: left;
}
.rules-home ul li {
  text-align: left;
  list-style: none;
}

.rules-home h1 {
  text-align: left;
  margin-bottom: 42px;
  font-size: 42px;
}
.rules-home h2 {
  text-align: left;
  margin-bottom: 28px;
  font-size: 28px;
}
.rules-home li {
  text-align: left;
  list-style: none;
  margin-bottom: 5px;
  font-size: 22px;
}

.company-home {
}
.company-home * {
  font-family: Montserrat;
  font-size: 16px;
}

.company-home.bare > main {
  padding-top: 8vh;
}
@media only screen and (max-width: 768px) {
  .company-home.bare > main {
    padding-top: 6vh;
  }
}
.company-home h1 {
  text-align: left;
  margin-bottom: 42px;
  font-size: 42px;
}
.company-home h2 {
  text-align: left;
  margin-bottom: 18px;
  font-size: 28px;
}
.company-home li {
  text-align: left;
  list-style: none;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.company-home .about {
  text-align: left;
}

.company-home .about p {
  font-size: 18px;
  font-weight: 500;
}

.company-home .founders {
  /*
  display: flex;
  justify-content: center;
  align-items: center;
  */
  width: 100%;
}

.company-home section {
  margin-bottom: 30px;
}
.company-home .founders .founder.card {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.company-home .founders .founder.card .title {
  font-weight: 500;
  text-align: center;
  margin-top: 5px;
  width: 150px;
}

.company-home .founders .founder.card .majesty {
  font-family: UnifrakturMaguntia;
}

.company-home .founders .founder.card .role {
  font-weight: 500;
  width: 140px;
  text-align: center;
  margin-top: 5px;
}
.company-home .founders .founder.card .mask {
  border-radius: 100px;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.company-home .founders .founder.card .mask img {
  width: 100px;
  height: auto;
}

.company-home .careers p {
  text-align: left;
}

.ofr-home {
}
.ofr-home * {
  font-family: Montserrat;
}
.ofr-home.bare > main {
  padding-top: 18vh;
}
@media only screen and (max-width: 768px) {
  .ofr-home.bare > main {
    padding-top: 18vh;
  }
}
.ofr-home h1 {
  text-align: center;
  margin-bottom: 42px;
  font-size: 42px;
  font-family: UnifrakturMaguntia;
}

.ofr-home .description * {
  text-align: center;
  font-size: 18px;
  font-family: UnifrakturMaguntia;
  margin-bottom: 42px;
}

.ofr-home h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 28px;
}
.ofr-home li {
  text-align: center;
  list-style: none;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 500;
}
.ofr-home li a {
  font-size: 18px;
  font-weight: 500;
}

.ofr-home .description {
  font-family: UnifrakturMaguntia;
  text-align: center;
}

.ofr-home section {
  margin-bottom: 48px;
}

.university-home {
}

.university-home * {
  font-family: UnifrakturMaguntia;
}

.university-home .cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.university-home .cover .collection {
  bottom: 50%;
}
@media only screen and (max-width: 768px) {
  .university-home .cover .collection {
    bottom: 40%;
  }
}

.university-home .info {
  padding: 8vh 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .university-home .info {
    width: 90%;
  }
}

.university-home .info h2 {
  font-size: 48px;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 30px;
}

.university-home .apply {
  width: 500px;
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .university-home .apply {
    width: 90%;
  }
}

.university-home .info.general-institute-requirements ul {
  margin-top: 10px;
  width: 100%;
}
.university-home .info.general-institute-requirements ul li {
  text-align: left;
  list-style: outside;
  margin-bottom: 10px;
  margin-left: 18px;
}
.university-home .info.general-institute-requirements ul * {
  font-family: Montserrat;
}

.fraktur {
  font-family: UnifrakturMaguntia;
}

.montserrat {
  font-family: Montserrat !important;
  font-weight: 600;
}

.university-home .info > p {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 500;
  text-align: center;
}

.university-home .info li {
  list-style: none;
}

.university-home .degrees-list {
  text-align: left;
  width: 500px;
}
@media only screen and (max-width: 768px) {
  .university-home .degrees-list {
    width: 90%;
  }
}
.university-home .degrees-list * {
  font-family: Montserrat;
  font-weight: 500;
}

.university-home .degrees-list .degree {
  margin-bottom: 20px;
}
.university-home .degrees-list .degree .dropdown-section {
}
.university-home .degrees-list .degree .dropdown-section .title {
}
.university-home .degrees-list .degree .dropdown-section .title h6 {
  font-size: 16px;
}
.university-home .degrees-list .degree .dropdown-section .dropdown p {
  font-size: 16px;
}
.university-home .degrees-list .degree-units {
  margin: 10px 0;
}

.university-home .degrees-list .courses {
  margin-top: 20px;
  margin-bottom: 20px;
}

.university-home .degrees-list .course {
  border-radius: 5px;
}

.university-home .degrees-list .course .course-type {
  margin-top: 10px;
  margin-bottom: 15px;
}

.university-home .degrees-list .course .course-type .tag {
  border-radius: 15px;
  padding: 5px;
}
.university-home .degrees-list .course .course-type .tag.elective {
  background-color: yellow;
  color: black;
}
.university-home .degrees-list .course .course-type .tag.general-education {
  background-color: #00AB66;
  color: black;
}

.university-home .course {
  padding: 10px;
}
.university-home .course:nth-child(odd) {
  background-color: #f2f2f2;
}

.university-home button.apply {
  font-family: Montserrat;
  margin-bottom: 10px;
}

.government-home {
}
.government-home * {
  /*
  font-family: Montserrat;
  */
  font-family: UnifrakturMaguntia;
}
.government-home.bare > main {
  padding-top: 10vh;
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .government-home.bare > main {
    padding-top: 10vh;
    width: 90%;
  }
}
.government-home h1 {
  text-align: center;
  margin-bottom: 42px;
  font-size: 42px;
  font-family: UnifrakturMaguntia;
}

.government-home ol li {
  text-align: center;
  font-size: 16px;
}

.government-home .description * {
  text-align: center;
  font-size: 18px;
  font-family: UnifrakturMaguntia;
  margin-bottom: 42px;
}

.government-home ol {
  margin-bottom: 25px;
}

.government-home h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
}

.government-home h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 32px;
}

.government-home h4 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
}

.government-home li {
  text-align: center;
  list-style: none;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 500;
}
.government-home li a {
  font-size: 18px;
  font-weight: 500;
}

.government-home .description {
  font-family: UnifrakturMaguntia;
  text-align: center;
}

.government-home section {
  margin-bottom: 48px;
}


.government-home .rulers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.government-home section {
  margin-bottom: 45px;
}
.government-home section > section {
  margin-bottom: 25px;
}
.government-home section > section p {
  margin-bottom: 25px;
}
.government-home .rulers .ruler.card {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.government-home .rulers .ruler.card .text {
  margin-top: 5px;
}
.government-home .rulers .ruler.card .title {
  font-weight: 500;
  text-align: center;
  margin-top: 5px;
  font-family: UnifrakturMaguntia;
}

.government-home .rulers .ruler.card .majesty {
  font-family: UnifrakturMaguntia;
}

.government-home .rulers .ruler.card .role {
  font-weight: 500;
  width: 140px;
  text-align: center;
  margin-top: 5px;
}
.government-home .rulers .ruler.card .mask {
  border-radius: 100px;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.government-home .rulers .ruler.card .mask img {
  width: 100px;
  height: auto;
}

.government-home .clout-enlightenment p {
  text-align: left;
  margin-bottom: 15px;
}

.government-home .declaration-of-official-government p {
  text-align: left;
  margin-bottom: 15px;
}
.government-home .declaration-of-official-government .signature {
  text-align: center;
  font-size: 20px;
}

.government-home .constitution {
}
.government-home .constitution section * {
  text-align: left;
}
.government-home .constitution .signature {
  margin-top: 60px;
  text-align: center;
  font-size: 28px;
}

.donate-home {
  background-color: #f2f2f2;
  padding-bottom: 5vh;
}
.donate-home * {
  /*
  font-family: UnifrakturMaguntia;
  */
  font-family: Montserrat;
}
.donate-home > main {
  width: 90%;
  margin: 0 auto;
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .donate-home > main {
    padding-top: 23px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}

.donate-home .quote {
  padding: 150px;
}
@media only screen and (max-width: 768px) {
  .donate-home .quote {
    padding: 20px 5%;
  }
}
.donate-home .quote * {
  font-family: UnifrakturMaguntia;
}
.donate-home .quote h3 {
  font-size: 22px;
}
.donate-home .quote p {
  margin-left: 30px;
}

.donate-home .amounts {
  margin-bottom: 30px;
}
.donate-home .amounts.error {
  color: red;
}

.donate-home .donation-box {
  width: 350px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .donate-home .donation-box {
    width: 90%;
    padding: 30px 5%;
    margin-top: 20px;
  }
}

.donate-home .donation-box h3 {
  margin-bottom: 10px;
}

.donation-box button.amount-selector {
  width: 30%;
  height: 60px;
  border-radius: 10px;
  font-weight: 500;
  margin: 1.5%;
  font-size: 16px;
  border: 1px solid #f2f2f2;
  transition: all 0.3s;
}
.donation-box button.amount-selector:hover {
  border: 1px solid #000;
}

.donation-box button.amount-selector.custom {
  position: relative;
}

.donation-box button.amount-selector.custom .children {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  left: 50%;
  top: 50%;
  width: 100px;
  margin-left: -50px;
  height: 100px;
  margin-top: -50px;
}

.donation-box button.amount-selector.custom input {
  height: 15px;
  padding: 5px;
  width: 60px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #f2f2f2;
}
.donation-box button.amount-selector.custom input:focus {
  border: 1px solid #000;
}

.donation-box .your-name-input {
  margin-bottom: 30px;
}
.donation-box .your-name-input.error {
  color: red;
}

.donation-box .your-email-address-input {
  margin-bottom: 30px;
}
.donation-box .your-email-address-input.error {
  color: red;
}

.donation-box .payment-methods {
}

.donation-box .payment-methods .payment-method {
  margin-bottom: 10px;
}

.thank-you-home {
  min-height: 90vh;
  padding-top: 100px;
}

.donate-home .your-message {
  margin-bottom: 30px;
}
.donate-home .your-message.error {
  color: red;
}

.donate-home .textarea-container {
  width: 100%;
  overflow-x: hidden;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  transition: all 0.3s;
}

.donate-home .textarea-container.active {
  border: 1px solid #000;
}

.donate-home textarea {
  padding: 5px 10px;
  width: calc(100% - 5px);
  resize: none;
  height: 15vh;
  border: none;
  outline: none;
  transition: all 0.3s;
}

#payment-form {
}
#payment-form > .error {
  margin-bottom: 15px;
  color: red;
  font-size: 14px;
}
#payment-form .buttons .button {
  margin-bottom: 5px;
}

#split-payment-disclaimer {
  color: #000;
  font-size: 14px;
  padding: 15px 0;
}

.checkout-payment-section {
}

.checkout-payment-section h2 {
  font-size: 16px;
}

.checkout-payment-section .form {
  margin-top: 20px;
}
