@charset "UTF-8";
html {
  box-sizing: border-box;
  font-size: 18px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

input,
textarea,
select,
button {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

h1, h2, h3, h4, p {
  font-size: 1em;
}

body {
  font-family: "Roboto Mono", monospace;
  margin: 0;
  background-color: #191b20;
  font-weight: 400;
  font-size: 18px;
}
body:after, body:before {
  background-color: #191b20;
  content: "";
  height: 20px;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 111;
}
body:after {
  bottom: 0;
}
body:before {
  top: 0;
}
body img {
  max-width: 100%;
  width: 100%;
}
body .background {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
}
@media (max-width: 959px) {
  body:after, body:before {
    height: 10px;
  }
}
@media (max-width: 750px) {
  body:after, body:before {
    height: 5px;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 750px) {
  .show-mobile {
    display: inline-block;
  }
}
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .show-mobile {
    display: inline-block;
  }
}
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  .show-mobile {
    display: inline-block;
  }
}

main.site {
  background: white;
  display: block;
  padding: 2.25em;
  position: relative;
  min-height: calc(100vh - 40px);
}
main.site:before, main.site:after {
  background-color: #191b20;
  bottom: -80px;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 20px;
  z-index: 111;
}
main.site:before {
  left: 0;
}
main.site:after {
  right: 0;
}
main.site .container {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
}
@media (max-width: 959px) {
  main.site {
    padding: 9px;
  }
  main.site:after, main.site:before {
    width: 10px;
  }
}
@media (max-width: 750px) {
  main.site {
    padding: 4px;
  }
  main.site:after, main.site:before {
    width: 5px;
  }
}

header {
  position: fixed;
  top: 2.5em;
  display: flex;
  z-index: 2;
  font-weight: 400;
}
header .logo,
header ul.links {
  margin-block-start: 0.5em;
  margin-block-end: 0;
  padding-inline-start: 20px;
}
header .logo li a,
header ul.links li a {
  color: inherit;
  text-decoration: none;
}
header .logo li a:hover::after, header .logo li a.active-page::after,
header ul.links li a:hover::after,
header ul.links li a.active-page::after {
  content: " ";
  background: url(../img/NavArrow.svg);
  padding-left: 5px;
  padding-top: 0px;
  background-size: 1em;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 5px;
}
header .logo {
  position: relative;
  top: 1.25em;
  bottom: 0;
  left: 0;
  right: 0;
}
header .logo img {
  width: 100%;
  max-width: 50px;
}
header ul.links {
  list-style: none;
}
header .icons a {
  text-decoration: none;
}
header .icons a img {
  position: relative;
}
header .icons a:hover img {
  bottom: 2.5px;
}
header .icons img {
  max-width: 17.5px;
  width: 100%;
  margin-top: 5px;
}
header .icons span.count {
  position: relative;
  left: -2em;
  font-size: 0.55em;
  background: transparent;
  border-radius: 50%;
  width: 1em;
  padding: 0.125em 0.55em;
  top: -1.5em;
  color: transparent;
}
@media (max-width: 750px) {
  header {
    top: 0;
    justify-content: space-between;
    width: 98vw;
    padding: 0px 10px 10px;
    align-items: center;
  }
  header ul.links {
    display: none;
  }
}
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  header {
    padding-top: 1.5em;
    top: 0;
    justify-content: space-between;
    width: 98vw;
    padding: 0px 10px 10px;
    align-items: center;
  }
  header ul.links {
    display: none;
  }
}
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  header {
    padding-top: 1.5em;
    top: 0;
    justify-content: space-between;
    width: 98vw;
    padding: 0px 10px 10px;
    align-items: center;
  }
  header ul.links {
    display: none;
  }
}

nav.mobile-menu {
  height: 100%;
  width: 100vw;
  background: white;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.75s ease;
  border: 5px solid #191b20;
}
nav.mobile-menu a {
  color: inherit;
  text-decoration: none;
}
nav.mobile-menu .menu-close {
  opacity: 0;
}
nav.mobile-menu .mobile-links {
  margin-top: 25%;
  padding: 20px;
  font-size: 1.25em;
}
nav.mobile-menu .mobile-links h2 {
  font-weight: 400;
}
nav.mobile-menu .mobile-nav-ig,
nav.mobile-menu .mobile-nav-email {
  position: absolute;
  bottom: 0.9em;
}
nav.mobile-menu .mobile-nav-ig {
  left: 0.9em;
}
nav.mobile-menu .mobile-nav-email {
  right: 1em;
}

@media (max-width: 750px) {
  header .logo,
header .menu,
header .menu-close,
.mobile-menu header .logo,
.mobile-menu header .menu,
.mobile-menu header .menu-close {
    top: 0.5em;
    position: relative;
    transition: opacity 0.5s ease;
  }
  header .logo,
.mobile-menu header .logo {
    padding: 0;
    left: 0.5em;
  }
  header .logo img,
.mobile-menu header .logo img {
    max-width: 50px;
  }
  header .menu,
.mobile-menu header .menu {
    transition: opacity 0.5s ease;
    opacity: 1;
    right: 1em;
  }
  header .menu img,
.mobile-menu header .menu img {
    max-width: 30px;
  }
  header .menu-close,
.mobile-menu header .menu-close {
    right: 0.5em;
  }
  header .menu-close img,
.mobile-menu header .menu-close img {
    max-width: 1.25em;
  }
}
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  header,
.mobile-menu header {
    padding-top: 1em;
    width: 98vw;
  }
  header .logo,
header .menu,
header .menu-close,
.mobile-menu header .logo,
.mobile-menu header .menu,
.mobile-menu header .menu-close {
    top: 0.5em;
    position: relative;
    transition: opacity 0.5s ease;
  }
  header .logo,
.mobile-menu header .logo {
    padding: 0;
    left: 0.5em;
  }
  header .logo img,
.mobile-menu header .logo img {
    max-width: 50px;
  }
  header .menu,
.mobile-menu header .menu {
    transition: opacity 0.5s ease;
    opacity: 1;
    right: 0.5em;
  }
  header .menu img,
.mobile-menu header .menu img {
    max-width: 30px;
  }
  header .menu-close,
.mobile-menu header .menu-close {
    right: 0.5em;
  }
  header .menu-close img,
.mobile-menu header .menu-close img {
    max-width: 1.25em;
  }
}
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  header,
.mobile-menu header {
    padding-top: 1em;
    width: 98vw;
  }
  header .logo,
header .menu,
header .menu-close,
.mobile-menu header .logo,
.mobile-menu header .menu,
.mobile-menu header .menu-close {
    top: 0.5em;
    position: relative;
    transition: opacity 0.5s ease;
  }
  header .logo,
.mobile-menu header .logo {
    padding: 0;
    left: 0.5em;
  }
  header .logo img,
.mobile-menu header .logo img {
    max-width: 50px;
  }
  header .menu,
.mobile-menu header .menu {
    transition: opacity 0.5s ease;
    opacity: 1;
    right: 0.5em;
  }
  header .menu img,
.mobile-menu header .menu img {
    max-width: 30px;
  }
  header .menu-close,
.mobile-menu header .menu-close {
    right: 0.5em;
  }
  header .menu-close img,
.mobile-menu header .menu-close img {
    max-width: 1.25em;
  }
}
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  header,
.mobile-menu header {
    padding-top: 1em;
    top: 0;
    width: 98vw;
  }
  header .logo,
header .menu,
header .menu-close,
.mobile-menu header .logo,
.mobile-menu header .menu,
.mobile-menu header .menu-close {
    top: 0.5em;
    position: relative;
    transition: opacity 0.5s ease;
  }
  header .logo,
.mobile-menu header .logo {
    padding: 0;
    left: 0.5em;
  }
  header .logo img,
.mobile-menu header .logo img {
    max-width: 50px;
  }
  header .menu,
.mobile-menu header .menu {
    transition: opacity 0.5s ease;
    opacity: 1;
    right: 0.5em;
  }
  header .menu img,
.mobile-menu header .menu img {
    max-width: 30px;
  }
  header .menu-close,
.mobile-menu header .menu-close {
    right: 0.5em;
  }
  header .menu-close img,
.mobile-menu header .menu-close img {
    max-width: 1.25em;
  }
}

#info-pencil {
  margin-top: 7px;
  padding-top: 0.3em;
  width: 60px;
}

main.home {
  margin-bottom: 3em;
}
main.home .page-intro {
  width: 37ch;
  margin: 0.5em auto 50px 200px;
}
main.home .page-intro p {
  margin-top: 0;
  line-height: 1.75em;
}
@media (max-width: 959px) {
  main.home .page-intro {
    width: 50%;
  }
}
@media (max-width: 750px) {
  main.home .page-intro {
    width: 100%;
    margin: 5em 0 1.5em;
  }
}
main.home .grid {
  list-style: none;
}
main.home .grid a {
  color: inherit;
  text-decoration: none;
}
main.home .grid .grid-sizer,
main.home .grid .grid-item {
  width: 33.333%;
  padding: 50px;
}
@media (max-width: 750px) {
  main.home .grid .grid-sizer,
main.home .grid .grid-item {
    width: 100%;
    padding: 20px;
  }
}
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  main.home .grid .grid-sizer,
main.home .grid .grid-item {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
  }
}
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  main.home .grid .grid-sizer,
main.home .grid .grid-item {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
  }
}
main.home .grid .grid-item {
  position: relative;
  float: left;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
main.home .grid .grid-item .project-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 25%;
  right: 25%;
  padding: 10px;
  max-height: 100%;
  box-sizing: border-box;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-weight: 400;
  text-align: center;
}
main.home .grid .grid-item .project-name p {
  margin: 0.25em;
}
main.home .grid .grid-item .project-name .pencil {
  width: 60px;
}
main.home .grid .grid-item .project-name img {
  display: block;
  max-width: 100%;
}
@media (max-width: 750px) {
  main.home .grid .grid-item .project-name {
    top: 15%;
    bottom: 15%;
    left: 15%;
    right: 15%;
  }
}
main.home .grid .grid-item .project-cover {
  transition: opacity 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
main.home .grid .grid-item:hover .project-cover {
  opacity: 0.15;
}
main.home .grid .grid-item:hover .project-name {
  opacity: 1;
}
main.home .grid:after {
  content: "";
  display: block;
  clear: both;
}
main.home .project-pagination {
  font-size: 1.25em;
  display: flex;
  justify-content: space-between;
  float: left;
}
main.home .project-pagination a {
  text-decoration: none;
  color: inherit;
}
main.home .project-pagination a p {
  margin: 5em 0.5em 5em;
}
main.home .project-pagination .prev:hover p {
  transform: translateX(-1rem);
}
main.home .project-pagination .next:hover p {
  transform: translateX(1rem);
}
main.home .project-pagination span img {
  height: 0.9em;
  width: auto;
}
@media (max-width: 750px) {
  main.home .project-pagination a.next {
    margin-left: auto;
  }
  main.home .project-pagination a.prev {
    margin: 3em auto 3em 0;
  }
}
@media (max-width: 750px) {
  main.home {
    padding: 20px;
  }
}

.project {
  position: relative;
}
.project .project_info {
  position: sticky;
  position: -webkit-sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  top: 25%;
  width: 33%;
  padding: 0 75px 7em 20px;
  display: inline-block;
  vertical-align: top;
}
.project .project_info .project_title {
  font-weight: 500;
}
.project .project_info .project_client {
  font-weight: 400;
}
.project .project_info .pagination a {
  display: block;
  margin: 0.5em 0;
}
.project .project_info .pagination a img {
  max-width: 32px;
  position: relative;
}
.project .project_info .pagination a:hover .next {
  left: 5px;
}
.project .project_info .pagination a:hover .prev {
  right: 5px;
}
.project .project_info .project_info_separator img {
  max-width: 14px;
}
@media (max-width: 1120px) {
  .project .project_info {
    padding: 0 25px 7em 20px;
    width: 45%;
  }
}
@media (max-width: 959px) {
  .project .project_info {
    padding: 0 25px 7em 20px;
  }
}
@media (max-width: 750px) {
  .project .project_info {
    position: initial;
    width: 100%;
    margin-top: 7em;
    padding: 20px;
  }
}
.project .project_assets {
  width: 66%;
  position: relative;
  display: inline-block;
  margin-top: 15%;
}
@media (max-width: 1120px) {
  .project .project_assets {
    width: 45%;
  }
}
@media (max-width: 750px) {
  .project .project_assets {
    width: 100%;
    display: block;
  }
}
.project .project_assets .project_video {
  padding: 56.25% 0 0 0;
  position: relative;
}
.project .project_assets .project_video.hero-video {
  margin-bottom: 3em;
}
.project .project_assets .video-asset {
  margin-bottom: 3em;
}
.project .project_assets .project-images {
  text-align: center;
}
.project .project_assets img {
  max-width: 100%;
  width: auto;
  margin-bottom: 3em;
}
@media (max-width: 750px) {
  .project .project_assets img {
    margin-bottom: 0;
  }
}
.project .project_assets .credits {
  margin: 3em auto 7em;
  text-align: center;
}
.project .project_assets .credits p.credit {
  display: flex;
  justify-content: center;
}
.project .project_assets .credits p.credit span.role {
  text-align: right;
  margin-right: 0.5em;
  width: 25%;
}
.project .project_assets .credits p.credit span.name {
  margin-left: 0.5em;
  width: 25%;
  text-align: left;
}
@media (max-width: 750px) {
  .project .project_assets .credits p.credit span.role,
.project .project_assets .credits p.credit span.name {
    width: 49%;
  }
}
.project .project_assets .credits img {
  max-width: 60px;
}

.lightbox {
  position: fixed;
  /* keeps the lightbox window in the current viewport */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(243, 243, 243, 0.97);
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease;
  display: flex;
}
.lightbox.visible {
  z-index: 2;
  opacity: 1;
}
.lightbox button {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  float: right;
  font-size: 1.5em;
  border: none;
  background: transparent;
}
.lightbox button:hover {
  cursor: pointer;
}
@media (max-width: 750px) {
  .lightbox button {
    top: 0.5em;
    right: 0.5em;
  }
}
.lightbox .lightbox-image {
  text-align: center;
  max-width: 75vw;
  height: auto;
  margin: 1% auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lightbox .lightbox-image img {
  width: 100%;
  vertical-align: middle;
}
@media (max-width: 750px) {
  .lightbox .lightbox-image {
    max-width: 75%;
  }
}

.about-page {
  position: relative;
  padding-top: 1em;
}
.about-page .contact-details,
.about-page .additional-details {
  padding-bottom: 50px;
}
.about-page .contact-details {
  height: 100%;
  width: 44%;
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  top: 11.5em;
  vertical-align: top;
  padding: 0 50px 25px 25px;
}
.about-page .contact-details section {
  margin: 50px auto;
}
@media (max-width: 750px) {
  .about-page .contact-details section:first-of-type {
    margin-top: 0;
  }
  .about-page .contact-details section:last-of-type {
    margin-bottom: 0;
  }
}
.about-page .contact-details h3.about-contact {
  display: flex;
  align-items: center;
}
.about-page .contact-details h3.about-contact svg {
  max-width: 5em;
  margin-left: 0.5em;
}
.about-page .contact-details .contact-title {
  margin: 2em auto 0.5em;
}
.about-page .contact-details a {
  text-decoration: none;
  color: inherit;
}
.about-page .contact-details a:hover {
  text-decoration: underline;
}
.about-page .contact-details .about-description {
  margin-top: 0;
}
.about-page .contact-details .about-description .about-name {
  margin: 0;
}
.about-page .contact-details .about-description p {
  max-width: 50ch;
  margin-top: 0.5em;
}
@media (max-width: 750px) {
  .about-page .contact-details {
    width: 100%;
    padding: 20px;
    position: initial;
    margin-top: 5em;
  }
}
.about-page .additional-details {
  position: relative;
  width: 50%;
  outline-style: none;
  padding: 0.25em 25px 50px 50px;
}
.about-page .additional-details .clients-title {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.about-page .additional-details section {
  margin-bottom: 50px;
}
.about-page .additional-details section:last-of-type {
  margin-bottom: 25px;
}
.about-page .additional-details .list {
  max-width: 45ch;
}
.about-page .additional-details .list a {
  text-decoration: none;
  color: inherit;
}
.about-page .additional-details .list a:hover {
  text-decoration: underline;
}
.about-page .additional-details .client-list a:after,
.about-page .additional-details .client-list span:after {
  content: ",";
}
.about-page .additional-details .client-list:last-child a:last-of-type:after,
.about-page .additional-details .client-list:last-child span:last-of-type:after {
  content: " ";
}
@media (max-width: 750px) {
  .about-page .additional-details {
    width: 100%;
    padding: 20px;
  }
}
.about-page .additional-details .other img {
  max-width: 1em;
}
.about-page .contact-details,
.about-page .additional-details {
  display: inline-block;
}
@media (max-width: 750px) {
  .about-page .contact-details,
.about-page .additional-details {
    display: block;
  }
}
@media (max-width: 750px) {
  .about-page {
    padding-top: 0;
  }
}

main.shop {
  padding: 1.25em 20px 75px 15%;
}
main.shop .shop-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
}
main.shop .shop-grid .product {
  margin-block-start: 0;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  width: 49%;
  position: relative;
}
main.shop .shop-grid .product a {
  color: #111111;
}
@media (max-width: 750px) {
  main.shop .shop-grid .product a {
    text-decoration: none;
  }
}
main.shop .shop-grid .product .product-cover {
  transition: opacity 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
main.shop .shop-grid .product .product-name {
  display: flex;
  flex-direction: column;
  align-content: center;
  position: absolute;
  top: 30%;
  bottom: 30%;
  left: 30%;
  right: 30%;
  padding: 18px;
  max-height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
main.shop .shop-grid .product .product-name .product-title {
  margin: 0;
}
main.shop .shop-grid .product .product-name .product-price {
  margin: 0;
}
main.shop .shop-grid .product .product-name .pencil {
  width: 60px;
}
@media (max-width: 750px) {
  main.shop .shop-grid .product .product-name {
    opacity: 1;
    position: initial;
    padding: 0;
  }
  main.shop .shop-grid .product .product-name .pencil {
    display: none;
  }
  main.shop .shop-grid .product .product-name a {
    text-decoration: none;
  }
}
@media (min-width: 750px) {
  main.shop .shop-grid .product {
    width: 49%;
  }
  main.shop .shop-grid .product:hover .product-cover {
    opacity: 0.15;
  }
  main.shop .shop-grid .product:hover .product-name {
    opacity: 1;
  }
}
@media (max-width: 750px) {
  main.shop .shop-grid .product {
    width: 100%;
  }
}
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  main.shop .shop-grid .product {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    width: 100%;
    margin: 0 auto 1em;
    position: initial;
  }
}
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  main.shop .shop-grid .product {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    width: 100%;
    margin: 0 auto 1em;
    position: initial;
  }
}
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  main.shop .shop-grid .product {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    width: 100%;
    margin: 0 auto 1em;
    position: initial;
  }
}
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  main.shop .shop-grid .product {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    width: 100%;
    margin: 0 auto 1em;
    position: initial;
  }
}
@media (max-width: 750px) {
  main.shop {
    padding: 5em 20px 0;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  main.shop {
    width: 100%;
  }
}
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  main.shop {
    width: 100%;
  }
}

.snip-layout {
  font-family: "Roboto Mono", monospace;
}
.snip-layout .snip-layout .snip-ico--close:before {
  font-size: 1.25em;
  content: "✕";
}
.snip-layout .snip-layout .snip-header {
  background: #191b20;
}
.snip-layout .snip-layout .snip-header .snip-layout .snip-header__total {
  background: transparent;
  border-radius: 0;
}
.snip-layout .snip-product__empty {
  text-transform: none;
  padding: 2em;
}

.slick-dots {
  text-align: left;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: white;
  border: 2px solid black;
  border-radius: 50%;
}
.slick-dots li button:before {
  content: "";
  opacity: 1;
}
.slick-dots li.slick-active button {
  background: black;
}

.slick-prev {
  display: none;
  left: 0;
  border: transparent;
  z-index: -2;
}

.slick-next {
  right: 0;
  height: 100%;
  width: 100%;
}
.slick-next:before {
  content: "";
}

main.product {
  margin: 1.25em auto 100px 15%;
}
main.product .product_title {
  font-weight: normal;
  margin: 2.5em auto 2em;
}
main.product .product_title,
main.product .product_price,
main.product .product-description,
main.product ul.specs {
  margin-bottom: 2em;
}
main.product .product-description {
  max-width: 75ch;
}
main.product ul.specs {
  list-style-type: none;
}
main.product ul.specs li:before {
  content: "—";
  position: absolute;
  margin-left: -20px;
}
@media (max-width: 750px) {
  main.product input,
main.product h3 {
    display: none;
  }
}
main.product input,
main.product button.snipcart-add-item,
main.product button.out-of-stock {
  border-radius: 0;
  background-color: transparent;
  border: 2px solid #191b20;
  color: inherit;
}
main.product input:focus,
main.product button.snipcart-add-item:focus,
main.product button.out-of-stock:focus {
  outline: #191b20 auto 0.5px;
}
main.product input {
  width: 10ch;
  margin-bottom: 1em;
  padding: 0.75em 1em;
}
main.product button.out-of-stock {
  padding: 0.75em 5em;
}
main.product button.out-of-stock:hover {
  cursor: not-allowed;
}
main.product button.out-of-stock:focus {
  outline: none;
}
main.product button.snipcart-add-item {
  padding: 0.75em 5em;
  transition: all 0.5s ease;
  position: relative;
}
main.product button.snipcart-add-item:hover, main.product button.snipcart-add-item:focus {
  background: #191b20;
  color: white;
  cursor: pointer;
}
main.product button.snipcart-add-item .added {
  position: relative;
  display: flex;
  right: 100%;
}
main.product button.snipcart-add-item .add {
  position: relative;
}
main.product button.snipcart-add-item:before {
  content: url("../img/check-symbol.svg");
  position: absolute;
  left: 35px;
  opacity: 0;
  top: 3em;
  transition: all 0.125s ease;
}
main.product button.snipcart-add-item:active:before, main.product button.snipcart-add-item:focus:before {
  top: 0.75em;
  opacity: 1;
}
main.product button.snipcart-add-item:hover, main.product button.snipcart-add-item:focus {
  background: #191b20;
  color: white;
  cursor: pointer;
}
@media (max-width: 750px) {
  main.product button.snipcart-add-item {
    padding: 0.75em 3em;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  main.product button.snipcart-add-item:active, main.product button.snipcart-add-item:hover {
    background: #04B766;
  }
  main.product button.snipcart-add-item:active :before, main.product button.snipcart-add-item:hover :before {
    opacity: 1;
    content: url("../img/check-symbol.svg");
    position: absolute;
    left: 35px;
    top: 0.75em;
  }
}
@media (max-width: 750px) {
  main.product {
    margin: 5em 20px 5em;
  }
}

footer {
  background: white;
  padding: 40px;
  clear: both;
}
footer p {
  margin: 0;
}
footer .footer-container {
  color: black;
  left: 40px;
  right: 40px;
  bottom: 40px;
  padding: 0 20px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}
footer .footer-spacer {
  height: 0;
  border-bottom: 2px solid black;
  width: 20px;
  margin: 0 40px;
}
@media (max-width: 750px) {
  footer .footer-copyright,
footer .footer-contact {
    width: 100%;
  }
}
footer .footer-copyright {
  text-align: right;
}
footer .footer-copyright img {
  max-width: 12px;
}
footer .footer-copyright span.copyright {
  line-height: 0.1;
  font-size: 1.25em;
}
@media (max-width: 750px) {
  footer .footer-copyright .hide-mobile {
    display: none;
  }
}
footer a {
  color: inherit;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
@media (max-width: 750px) {
  footer .footer-copyright,
footer .footer-contact {
    font-size: 0.75em;
    text-align: center;
  }
  footer.footer {
    display: none;
  }
  footer .footer-spacer {
    display: none;
  }
}

.shop_policy {
  display: none !important;
}

.animation {
  background-color: #191b20;
  opacity: 1;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 1.5s ease;
  text-align: center;
  z-index: 9999999;
  display: none;
}
.animation #loading-animation {
  background-color: #191b20;
  margin: 0 auto;
  width: 21%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: opacity 1s ease;
}
@media (max-width: 750px) {
  .animation #loading-animation {
    width: 50%;
  }
}

.snip-layout span,
.snip-layout .snip-header__title,
.snip-layout h2 {
  font-weight: 400;
}
.snip-layout .snip-header,
.snip-layout .snip-header__total {
  background: #191b20;
}
.snip-layout .snip-quantity-trigger__btn {
  background: transparent;
}
.snip-layout .snip-quantity-trigger__btn--minus:before,
.snip-layout .snip-quantity-trigger__btn--add:before {
  line-height: 1em;
}
.snip-layout .snip-product__remove {
  color: #191b20;
  font-size: 1em;
}
.snip-layout .snip-ico--close:before {
  content: "✕";
  font-size: 1em;
}
@media (min-width: 48em) {
  .snip-layout .snip-header__title,
.snip-layout .snip-btn {
    font-weight: 400;
  }
}
@media (max-width: 750px) {
  .snip-layout .snip-layout__close {
    top: 0.5em;
  }
  .snip-layout .snip-product__remove {
    font-size: 1.5em;
  }
}

.no-scroll {
  overflow: hidden;
}
