@charset "UTF-8";
/* Default */

html,
body {
  overflow: hidden;
  cursor: pointer;
  font-family: "Monoton", Helvetica, sans-serif;
}

.click_url {
  width: 100%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Open Sans";
  src: url("opensans.ttf");
}

main {
  width: 100%;
  height: 100%;

  margin: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: "Open Sans", Helvetica, sans-serif;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #009661;
  background-image: url('deichmann.jpg');
  background-repeat: no-repeat;
  background-position: 80% center;
  background-size: 100px auto;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0;
}

.navigation {
  position: absolute;
  display: flex;
  flex-direction: row;
}

.nav_item {
  background-color: #cccccc;
  color: white;
  font-weight: 600;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

.nav_item:hover {
  color: black;
  background-color: white;
  border-bottom: 2px solid #05aa7a;
  border-left: 2px solid #05aa7a;
  border-right: 2px solid #05aa7a;
}

.nav_item_active {
  background-color: #05aa7a !important;
  color: white !important;
}

.book {
  position: relative;
}

.page {
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  transform-origin: left;
  cursor: pointer;
  /*border: 1px solid rgb(230, 230, 230);*/
}

.page .front,
.page .back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  /*border: 1px solid #ccc;*/
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  backface-visibility: hidden;
  align-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  /*box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;*/
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
}

.page .back {
  transform: rotateY(180deg);
}

.flipped {
  transform: rotateY(-180deg);
}

.flipped .front {
  display: none;
}

.flipped {
  z-index: 6 !important;
}

/*
.women {
  background-color: pink !important;
}

.men {
  background-color: blue !important;
}

.children {
  background-color: yellow !important;
}

.sport {
  background-color: green !important;
}
  */
/*
.page:nth-child(2) {
  z-index: 4;
}
.page:nth-child(3) {
  z-index: 3;
}
.page:nth-child(4) {
  z-index: 2;
}
.page:nth-child(5) {
  z-index: 1;
}
*/
.arrow {
  position: absolute;
  background: #a1a1a174;
  border: none;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}

.arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination {
  position: absolute;
  display: flex;
  justify-content: center;
}

.dot {
  background: #aaa;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.dot.active {
  background: #05aa7a;
}

.cart_icon_container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.cart_icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid #05aa7a;
  border-radius: 50%;
  padding: 0.5rem;
  background-color: #ffffff8a;
  opacity: 0;
  transition: 0.3s ease;
}

/* PAGE 2 START */

.logo_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* PAGE 2 END */

/* PRODUCT CARD START */

.product_card {
  border: 1px solid #ccc;
  position: relative;
  transition: 0.3s ease;
}

.cart_icon_container:hover .cart_icon {
  opacity: 1;
}

.product_card:hover .cart_icon {
  opacity: 1;
}

.product_card:hover .product_image {
  filter: brightness(105%);
}

.product_card:hover {
  background-color: white;
  border-bottom: 2px solid #05aa7a !important;
}

.discount_container,
.product_info_container,
.product_price_container {
  display: flex;
  flex-direction: row;
  text-transform: uppercase;
}

.discount_text,
.discount_percentage {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.discount_text {
  font-weight: 900;
}

.women .discount_text {
  background-color: #ff00ff;
}

.men .discount_text {
  background-color: #05aa7a;
}

.children .discount_text {
  background-color: #ffab40;
}

.sport .discount_text {
  background-color: #000000;
}

.discount_percentage {
  background-color: #05aa7a;
  font-weight: 700;
}

.product_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.brand_image {
  height: 100%;
}

.brand_name_container,
.product_name_container,
.current_price_container,
.original_price_container,
.brand_name_container_small,
.product_name_container_small,
.current_price_container_small,
.original_price_container_small {
  border: 1px solid transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
}

.product_name_container,
.product_name_container_small {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
}

.brand_name_text,
.brand_name_text_small {
  font-weight: 200;
  font-size: 12px !important;
  overflow: hidden;
}

.product_name_text,
.product_name_text_small {
  font-weight: 600;

  text-overflow: ellipsis;
}

.current_price_text,
.current_price_text_small {
  font-weight: 700;
  color: #05aa7a;
}

.original_price_text,
.original_price_text_small {
  font-weight: 600;
  color: #cccccc;
  text-decoration: line-through #ff00ff solid;
}

.brand_image_container {
  position: relative;
}

/* DISCOUNTED */

.discount_container,
.original_price_container,
.original_price_container_small {
  display: none;
}

.discounted .discount_container {
  display: flex;
}

.discount_percentage {
  display: none !important;
}

.discounted .original_price_container,
.discounted .original_price_container_small {
  display: block;
}

/* PRODUCT CARD END */

/* PRODUCT CARD 2x1 START */

.product_card_2x1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/*
.product_card_2x1:nth-child(3) {
  border-top: 1px solid #ccc;
}
  */
/* PRODUCT CARD 2x1 END */

/* PRODUCT CARD 2x2 START */

.product_card_2x2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* PRODUCT CARD 2x2 END */

/* PRODUCT CARD 1x1 START */

.product_card_1x1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 10.8rem;
  width: 6.9rem;
}
/*
.product_card_1x1:nth-child(2),
.product_card_1x1:nth-child(3) {
  border-bottom: 1px solid #ccc;
}

.product_card_1x1:nth-child(3),
.product_card_1x1:nth-child(5) {
  border-left: 1px solid #ccc;
}

.page-1 .product_card_1x1:nth-child(1),
.page-1 .product_card_1x1:nth-child(2) {
  border: none;
}

.page-1 .product_card_1x1:nth-child(2),
.page-1 .product_card_1x1:nth-child(4) {
  border: none;
}

.page-1 .product_card_1x1:nth-child(2),
.page-1 .product_card_1x1:nth-child(3) {
  border-bottom: 1px solid #ccc;
}

.page-1 .product_card_1x1:nth-child(3),
.page-1 .product_card_1x1:nth-child(5) {
  border-left: 1px solid #ccc;
}
*/
.product_card_1x1 .discount_text,
.product_card_1x1 .discount_percentage {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.product_card_1x1 .product_info_container,
.product_card_1x1 .product_price_container {
  display: flex;
  flex-direction: column;
}

/* PRODUCT CARD 1x1 END */

/* LOADER START */

#loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  background-color: white;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #009661;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -6rem;
  margin: auto;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* LOADER END */

/* Promo Image Container Styling */
.promo_img_container_2x1 {
  width: 14rem;
  height: 9.8rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo_img_container_2x1 img.promo_image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Make sure parent container distributes content properly */
.pageSide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}