@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
header nav {
  width: 100%;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
  background-color: #101010;
  position: fixed;
  z-index: 4;
}

header nav .nav-left {
  width: 96px;
}

header nav .nav-left .logo {
  width: 100%;
}

header nav .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

header nav .nav-right .search-bar {
  width: 24.8rem;
  height: 3.2rem;
  position: relative;
}

@media only screen and (max-width: 640px) {
  header nav .nav-right .search-bar {
    width: 100%;
  }
}

header nav .nav-right .search-bar input {
  width: 100%;
  background-color: transparent;
  border-style: none;
  border-bottom: 1px solid #DC3522;
  padding: 0.8rem;
}

header nav .nav-right .search-bar i {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.5rem;
}

header nav .nav-right i {
  color: #DC3522;
}

main {
  position: relative;
  top: 64px;
}

main .container-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
}

main #content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  position: relative;
}

main #content .products-container {
  width: 85vw;
}

@media only screen and (max-width: 1024px) {
  main #content .products-container {
    width: 100vw;
  }
}

main #content .products-container .products-list {
  width: 100%;
}

main #content .products-container .products-list-header {
  background-color: #FFFFFF;
  width: 100%;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #ebebeb;
}

@media only screen and (max-width: 640px) {
  main #content .products-container .products-list-header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
  }
}

main #content .products-container .products-list-header #open-brands {
  margin-right: 1rem;
  background-color: #DC3522;
  color: #FFFFFF;
  padding: 8px 16px;
  border: 1px solid #DC3522;
  display: none;
}

main #content .products-container .products-list-header #open-brands img {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}

@media only screen and (max-width: 1024px) {
  main #content .products-container .products-list-header #open-brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
  }
}

main #content .products-container .products-list-header #open-brands:hover {
  background-color: #FFFFFF;
  color: #DC3522;
}

main #content .products-container .products-list-header #open-brands:hover img {
  -webkit-filter: none;
          filter: none;
}

main #content .products-container .products-list-header h4 {
  color: #DC3522;
  font-size: 1.6rem;
}

main #content .products-container .products-list-header h4.product-name {
  font-weight: bold;
}

main #content .products-container .products-list-container {
  padding: 2rem;
}

main #content .products-container .products-list-container ul {
  padding: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media only screen and (max-width: 1024px) {
  main #content .products-container .products-list-container ul {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 640px) {
  main #content .products-container .products-list-container ul {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

main #content .products-container .products-list-container ul .product {
  width: 100%;
  padding: 2rem;
  height: 24.8rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1024px) {
  main #content .products-container .products-list-container ul .product {
    height: 40rem;
  }
}

main #content .products-container .products-list-container ul .product > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #content .products-container .products-list-container ul .product-size {
  background-color: rgba(220, 53, 34, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 1.2rem;
  line-height: 0;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

main #content .products-container .products-list-container ul .product-size p {
  font-size: 1.2rem;
}

main #content .products-container .products-list-container ul .product-seemore {
  background-color: rgba(220, 53, 34, 0.75);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #content .products-container .products-list-container ul .product-seemore i {
  font-size: 3.2rem;
  color: #FFFFFF;
}

main #content .products-container .products-list-container ul .product:hover .product-seemore {
  opacity: 1;
}

main #content .products-container .products-list-container .product-info-modal {
  position: fixed;
  inset: 0;
  z-index: 6;
}

main #content .products-container .products-list-container .product-info-modal-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

main #content .products-container .products-list-container .product-info-modal-container {
  background-color: white;
  text-align: center;
  position: absolute;
  width: 70%;
  max-height: 90vh;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 0.4rem solid #DC3522;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 2rem;
}

@media only screen and (max-width: 1024px) {
  main #content .products-container .products-list-container .product-info-modal-container {
    width: 100%;
    height: 100%;
    max-height: unset;
  }
}

@media only screen and (max-width: 640px) {
  main #content .products-container .products-list-container .product-info-modal-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-y: auto;
  }
}

main #content .products-container .products-list-container .product-info-modal-container .close-btn {
  background-color: #DC3522;
  color: #FFFFFF;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 99999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #content .products-container .products-list-container .product-info-modal-container .close-btn img {
  width: 20px;
}

@media only screen and (max-width: 640px) {
  main #content .products-container .products-list-container .product-info-modal-container .close-btn {
    top: 1rem;
    right: 1rem;
  }
}

main #content .products-container .products-list-container .product-info-modal-container-left {
  background-color: #ebebeb;
  width: 50%;
  padding: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
}

@media only screen and (max-width: 640px) {
  main #content .products-container .products-list-container .product-info-modal-container-left {
    width: 100%;
  }
}

main #content .products-container .products-list-container .product-info-modal-container-right {
  text-align: left;
  width: 50%;
  overflow-y: auto;
  padding: 0 2rem;
}

@media only screen and (max-width: 640px) {
  main #content .products-container .products-list-container .product-info-modal-container-right {
    width: 100%;
    overflow: unset;
  }
}

main #content .products-container .products-list-container .product-info-modal-container-right h4 {
  color: #DC3522;
  font-weight: 800;
  width: 90%;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 2rem;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-details li p {
  font-size: 1.4rem;
  font-weight: 400;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-details-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-details-price p {
  color: #DC3522;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-details-price-euros {
  font-weight: 600;
  font-size: 2.4rem;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-selection {
  width: 100%;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-bottom {
  margin-top: 0.5rem;
  border-top: 0.1rem solid gray;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-top, main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
  padding: 1rem 0;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-field {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-field label {
  font-size: 1.4rem;
  font-weight: 700;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-field select, main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-field input, main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-field button {
  width: 100%;
  height: 3.2rem;
  font-size: 1.4rem;
  padding: 0.4rem;
  border-radius: 0;
  border: 1px solid gray;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-field.quantity {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-field.quantity input {
  width: 100%;
}

main #content .products-container .products-list-container .product-info-modal-container-right .product-selection-field button {
  background-color: #DC3522;
  color: #FFFFFF;
  border: none;
}

#login {
  width: 100%;
  min-height: 100vh;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url("../assets/summer1.jpg");
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../assets/summer1.jpg");
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#login .login-container {
  padding: 6rem;
  height: calc(100vh - 6.4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#login .login-container-header {
  border-bottom: 1px solid #666;
  padding-bottom: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#login .login-container-header img {
  width: 224px;
}

#login .login-container-header h4 {
  text-align: center;
  font-size: 2.4rem;
  margin-top: 6.4rem;
  color: #FFFFFF;
}

#login .login-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 3.2rem;
}

#login .login-container form .form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#login .login-container form .form-field label {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #FFFFFF;
}

#login .login-container form input {
  width: 324px;
  background: #ebebeb;
  padding: 1.6rem 0.8rem;
  border-style: none;
  font-size: 1.4rem;
}

#login .login-container form input[type=submit] {
  background-color: #DC3522;
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-top: 0.8rem;
}

main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 64px);
}

main .content-container {
  width: 77vw;
  padding: 4rem;
  position: relative;
  overflow: auto;
}

@media only screen and (max-width: 1024px) {
  main .content-container {
    width: 100vw;
  }
}

@media only screen and (max-width: 640px) {
  main .content-container {
    padding: 2rem;
  }
}

main .content-container-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main .content-container-header h5 {
  font-size: 2rem;
  color: #DC3522;
}

main .content-container-header #open-checkout {
  background-color: #DC3522;
  color: #FFFFFF;
  padding: 8px 16px;
  border: 1px solid #DC3522;
  display: none;
  gap: 1rem;
}

main .content-container-header #open-checkout img {
  -webkit-filter: brightness(100);
          filter: brightness(100);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media only screen and (max-width: 1024px) {
  main .content-container-header #open-checkout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

main .content-container-header #open-checkout:hover {
  background-color: #FFFFFF;
  color: #DC3522;
}

main .content-container-header #open-checkout:hover img {
  -webkit-filter: none;
          filter: none;
}

main .content-container .products-list {
  margin-top: 2rem;
}

main .content-container .products-list .product-container {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .content-container .products-list .product-container #delete-product {
  margin-left: 4rem;
}

main .content-container .products-list .product-container #delete-product i {
  color: #DC3522;
}

@media only screen and (max-width: 640px) {
  main .content-container .products-list .product-container #delete-product {
    margin-left: 1rem;
  }
}

main .content-container .products-list .product-container .product-inner-container {
  background-color: #F7F7F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  main .content-container .products-list .product-container .product-inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
  }
}

main .content-container .products-list .product-container .product-inner-container #product-img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

main .content-container .products-list .product-container .product-inner-container .product-info {
  margin-left: 2rem;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 640px) {
  main .content-container .products-list .product-container .product-inner-container .product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 1rem 0 0 0;
  }
}

main .content-container .products-list .product-container .product-inner-container .product-info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .content-container .products-list .product-container .product-inner-container .product-info .product-name {
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

main .content-container .products-list .product-container .product-inner-container .product-info .product-name #product-ref {
  font-size: 1.2rem;
  color: #666;
}

main .content-container .products-list .product-container .product-inner-container .product-info .product-price h4 {
  color: #DC3522;
  font-size: 2rem;
  font-weight: 500;
}

main .checkout-info {
  background-color: white;
  border-left: 1px solid #ebebeb;
  width: 23vw;
  height: calc(100vh - 64px);
  padding: 4rem 2rem 2rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

main .checkout-info-header {
  width: 100%;
  text-align: right;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .checkout-info-header h5 {
  font-size: 2rem;
}

main .checkout-info-header #close-checkout {
  background-color: #DC3522;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
}

main .checkout-info-header #close-checkout img {
  width: 16px;
}

@media only screen and (max-width: 1024px) {
  main .checkout-info {
    position: fixed;
    width: 45vw;
    right: 0;
    padding: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    z-index: 3;
  }
  main .checkout-info.fade-in {
    -webkit-transform: none;
            transform: none;
    padding: 2rem;
  }
}

@media only screen and (max-width: 640px) {
  main .checkout-info {
    width: 100%;
  }
}

main .checkout-info .client-details {
  height: 100%;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.8rem;
}

main .checkout-info .client-details p {
  color: #666;
  font-size: 1.6rem;
}

main .checkout-info .client-details p#client-name {
  color: #000;
  font-weight: 500;
}

main .checkout-info-footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
}

main .checkout-info-footer .total {
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  text-align: right;
}

main .checkout-info-footer .total #total-price {
  color: #DC3522;
  font-weight: 500;
}

main .checkout-info-footer #proceed-btn {
  background-color: #DC3522;
  color: white;
  font-weight: 500;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .checkout-info-footer #go-back {
  color: #DC3522;
  font-size: 1.4rem;
}

.product-filters {
  width: 100%;
  position: relative;
  float: right;
}

.product-filters .product-filters-controls {
  overflow: hidden;
  position: absolute;
  width: 45px;
  height: 100%;
  top: 0;
  cursor: pointer;
  background-color: #FFFFFF;
  border-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-filters .product-filters-controls.left {
  left: 0;
}

.product-filters .product-filters-controls.right {
  right: 0;
}

.product-filters .product-filters-controls.disabled {
  pointer-events: none;
}

.product-filters .product-filters-controls.disabled img {
  opacity: 0.5;
}

.product-filters > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  overflow-x: scroll;
  margin: 0 32px;
}

.product-filters > ul::-webkit-scrollbar {
  display: none;
}

.product-filters > ul .dropdown {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 640px) {
  .product-filters > ul .dropdown {
    width: 100%;
  }
}

.product-filters > ul .dropdown-trigger {
  background-color: #ebebeb;
  outline: none;
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.8rem 3rem;
  white-space: nowrap;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-filters > ul .dropdown-trigger:hover {
  background-color: #DC3522;
  color: #FFFFFF;
}

.product-filters > ul .dropdown-trigger::after {
  content: "";
  width: 1.5px;
  height: 30%;
  background-color: #DC3522;
  position: absolute;
  right: 0;
}

@media only screen and (max-width: 640px) {
  .product-filters > ul .dropdown-trigger {
    width: 100%;
    border-bottom: 1px solid #ebebeb;
  }
}

.product-filters > ul .dropdown-trigger span {
  text-transform: uppercase;
  font-size: 1.2rem;
  padding-right: 0.8rem;
}

.product-filters > ul .dropdown-trigger i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.2rem;
}

.product-filters > ul .dropdown-trigger i.rotate {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.product-filters > ul .dropdown.single span {
  padding: 0;
}

.product-filters > ul .dropdown-content {
  background: #FFFFFF;
  border: 0.4rem solid #DC3522;
  z-index: 2;
  position: absolute;
  width: calc(100% - 90px);
  margin: 0 45px;
  left: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem;
}

.product-filters > ul .dropdown-content ul {
  list-style: none;
  padding: 2rem;
}

.product-filters > ul .dropdown-content ul p {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
}

.product-filters > ul .dropdown-content ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.product-filters > ul .dropdown-content ul li a {
  font-size: 1.4rem;
}

.product-filters > ul .dropdown-content ul li a:hover {
  text-decoration: underline;
  color: #DC3522;
}

.brand-filters {
  background-color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-right: 0.1rem solid #ebebeb;
  padding: 1rem;
  width: 15vw;
  height: 100%;
  z-index: 2;
}

.brand-filters h5 {
  font-size: 2rem;
}

.brand-filters-overlay {
  display: none;
}

.brand-filters-header {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
}

.brand-filters-header #close-brands {
  background-color: #DC3522;
  width: 24px;
  height: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  display: none;
}

.brand-filters-header #close-brands img {
  width: 16px;
}

.brand-filters-body {
  padding: 1rem;
  z-index: 3;
  background-color: #FFFFFF;
  height: 100%;
}

.brand-filters-body .brands-list .brand {
  border-bottom: 1px solid #ebebeb;
  padding: 1rem;
  margin-bottom: 1rem;
}

.brand-filters-body .brands-list .brand:hover {
  background-color: #ebebeb;
}

.brand-filters-body .brands-list .brand-active {
  background-color: #DC3522;
  color: #FFFFFF;
}

@media only screen and (max-width: 1024px) {
  .brand-filters {
    position: fixed;
    width: 45vw;
    padding: 0;
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    z-index: 3;
  }
  .brand-filters-header #close-brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .brand-filters.fade-in {
    -webkit-transform: none;
            transform: none;
  }
}

@media only screen and (max-width: 640px) {
  .brand-filters {
    width: 100%;
  }
  .brand-filters-overlay {
    display: none;
  }
}

html,
body {
  font: normal 400 150% "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-size: 10px;
  background-color: #FFFFFF;
}

html h1,
body h1 {
  font: normal 700 150% "Open Sans", sans-serif;
  font-size: 8rem;
}

html h3,
body h3 {
  font: normal 600 150% "Open Sans", sans-serif;
  font-size: 3.2rem;
}

html h4,
body h4 {
  font: normal 400 150% "Open Sans", sans-serif;
  font-size: 2.4rem;
}

html p,
html a,
html li,
html span,
html button,
body p,
body a,
body li,
body span,
body button {
  font-size: 1.6rem;
  line-height: 150%;
}

html a,
html button,
body a,
body button {
  text-decoration: none;
  font-weight: 400;
  border: none;
  cursor: pointer;
}

html a:focus, html a:active, html a:visited, html a:link, html a:hover,
body a:focus,
body a:active,
body a:visited,
body a:link,
body a:hover {
  text-decoration: none;
  color: inherit;
  outline: none;
}

html ul,
body ul {
  list-style: none;
}

html img,
body img {
  max-width: 100%;
  display: block;
}

html *,
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/*# sourceMappingURL=global.css.map */