/* css for webshop */

pre {
  font-size: 11px;
}

/* css for bx slider when inside webshop */

#webshop-main-page .bx-wrapper .bx-prev {
  left: 0;
  background-image: url(../../images/arrowleft.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#webshop-main-page .bx-wrapper .bx-next {
  right: 0;
  background-image: url(../../images/arrowright.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ----------------------------------------------- */

/* popup for message */

#added-div {
  height: 50px;
  width: 100%;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
}

#added-div p {
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  font-size: 16px;
  color: #fafafa;
}

#added-div {
  background-color: var(--arse);
}

#added-div.on {
  animation-name: popUp;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes popUp {
  0% {
    bottom: -50px;
    opacity: 0;
  }
  10% {
    bottom: -25px;
    opacity: 0.8;
  }
  20% {
    bottom: 0px;
    opacity: 0.9;
  }
  79% {
    bottom: 0px;
    opacity: 1;
  }
  90% {
    bottom: -25px;
    opacity: 0.9;
  }
  99% {
    bottom: -50px;
    opacity: 0.8;
  }
  100% {
    bottom: -50px;
    opacity: 0;
  }
}

/* end popup for message */

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.table-wrapper {
  overflow-x: auto;
}

.d-flex {
  display: flex;
}

.shop-info {
  width: 94%;
  background-color: #fff;
  padding: 30px;
  overflow: hidden;
  margin: 0 1% 2%;
  border: 1px solid #ccc;
}

.menu-shopcart-item-count {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  /* bottom: 24px; */
  top: -4px;
  /* right: -6px; */
  left: 106px;
  width: 20px;
  height: 20px;
  padding-right: 2px;
  border-radius: 50%;
  background-color: var(--arsenalenYellow);
  font-weight: bold;
  color: var(--arsenalenGreen);
}

.shopping-cart-icon-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.shopping-cart-icon-wrapper .btn-green {
  padding: 4px 6px;
  font-size: 14px;
  font-weight: bold;
}

.shopping-cart-icon-wrapper i {
  /* color: var(--arsenalenGreen); */
  transition: all 0.4s ease-in-out;
  font-size: 24px;
  margin-left: 4px;
}

.shopping-cart-icon-wrapper i:hover {
  transform: scaleX(0.9);
}

#webshop-main-page h2 {
  /* color: var(--arsenalenGreen); */
  /* font-size: 26px !important; */
  /* margin-bottom: 15px; */
}

#webshop-main-page ul .active {
  /* border-bottom: 4px solid var(--arsenalenGreen); */
  color: var(--arsenalenGreen);
  /* font-weight: 900; */
}

#webshop-main-page ul,
#webshop-main-page li,
#webshop-main-page a {
  text-decoration: none;
  /* list-style-type: none; */
}
#webshop-main-page li{
}

/* pagination */

.paginationWrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
  margin-bottom: 20px;
}

/* .paginationSelector {
	margin: 0 0 0 5px;
	text-decoration: none;
	border-radius: 15px;
	text-align: center;
	padding: 0;
	height: 20px;
	width: 20px;
} */

.paginationSelector {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 5px;
  text-decoration: none;
  border-radius: 15px;
  text-align: center;
  padding: 0px;
  height: 32px;
  width: 32px;
}

.paginationSelector.active {
  background-color: var(--arsenalenGreen);
  color: #fff;
  text-decoration: none;
}

/* end pagination */

#webshop-main-page.webshop-wrapper {
  position: relative;
}

section.webshop-wrapper {
  width: 100%;
}

section.webshop-wrapper > div {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 12.5px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}

section.webshop-show-cart-wrapper {
  width: 100%;
  background-color: #fff !important;
}

section.webshop-show-cart-wrapper > div {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 12.5px 40px;
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
  margin-bottom: 50px;
}

#webshop-main-page .webshop-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
  margin: 0 auto;
  margin-bottom: 1.5%;
}

.webshop-items-wrapper > form {
  margin: 0px auto !important;
  width: 100% !important;
}

.btn {
  display: inline-block;
  font-weight: bold;
  color: #000;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid transparent;
  padding: 10px 40px;
  min-width: fit-content;
  /* font-size: 1rem; */
  line-height: 1.5;
  border-radius: 0.2rem;
  transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out,
    border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-color-gray {
  color: whitesmoke !important;
  background-color: #7e7e7e !important;
}

.btn-color-gray:hover {
  color: whitesmoke !important;
  background-color: #6e6e6e !important;
}

.btn-color-whitesm {
  background-color: whitesmoke !important;
}

.btn-color-green {
  background-color: green !important;
}

.btn-buy {
  background-color: var(--arsenalenGreen) !important;
  background: var(--arsenalenGreen) !important;
  color: var(--arsenalenYellow) !important;
  /* padding: 10px 40px !important; */
  padding: 15px 30px !important;
  border-radius: 10px;
  /* font-size: 16px; */
}
.btn-buy:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.btn-buy:disabled:hover {
  background: var(--arsenalenGreen) !important;
  color: var(--arsenalenYellow) !important;
}

.btn-buy:hover {
  /* background-color: #ff2c68 !important; */
  background-color: var(--arsenalenYellow) !important;
  background: var(--arsenalenYellow) !important;
  color: var(--arsenalenGreen) !important;
}

.btn-disabled {
  cursor: not-allowed;
  opacity: 0.2;
}

/* tooltip */

.box-overlay {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  /* background-color: #bbb; */
  /* text-align: center; */
  position: relative;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  width: 120px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 10px 10px;
  /* Position the tooltip */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
  opacity: 1;
}

/* ROTATE */

.rotate .overlay {
  background-color: var(--arsenalenGreen);
  line-height: 200px;
  color: #fff;
  transform-origin: 0 0;
  transform: rotate(90deg);
  -webkit-transition: transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

.rotate .box-overlay:hover .overlay {
  transform: rotate(0deg);
}

/* SLIDE DOWN DELAY */

.slide-down-delay .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--arsenalenGreen);
  line-height: 200px;
  color: #fff;
  transform: translateY(-100%);
  -webkit-transition: transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  z-index: 101;
}

/* .slide-down-delay .box-overlay:hover .overlay {
    transform: translateY(0);
} */

/* .slide-down-delay .overlay p{
    transform: translateY(-80%);
    opacity: 0;
    -webkit-transition: transform 0.5s linear, opacity 0.5s linear 0.5s;
    -o-transition: transform 0.5s linear, opacity 0.5s linear 0.5s;
    transition: transform 0.5s linear, opacity 0.5s linear 0.5s;
  }
  
  .slide-down-delay .box-overlay:hover .overlay p{
    transform: translateY(0);
    opacity: 1;
  } */

.webshop-wrapper small {
  font-size: 12px;
}

#webshop-main-page input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

/* Chrome, Safari, Edge, Opera */

#webshop-main-page input::-webkit-outer-spin-button,
#webshop-main-page input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

#webshop-main-page input[type="number"] {
  -moz-appearance: textfield;
}

#webshop-main-page .items-title {
  font-size: 18px;

  padding-right: 20px;
  min-width: 20rem;
}
#webshop-main-page .items-quantity-and-price-wrapper .items-price {
  font-size: 18px;

  padding-right: 20px;
  width: 100%;
}
.price-and-amount-wrapper #avaliable-dates {
  padding-top: 1rem;
}
#webshop-main-page .items-quantity {
  position: relative;
  display: flex;
  margin-left: 0px;
  align-items: center;
  padding: 6px 0px;
}

#webshop-main-page .items-quantity i {
  cursor: pointer;
  font-size: 20px;
}

#webshop-main-page .items-quantity .minus {
  width: auto;
  margin-right: 10px;
}

#webshop-main-page .items-quantity .minus:hover {
  color: var(--arsenalenGreen);
}

#webshop-main-page .items-quantity .plus:hover {
  color: var(--arsenalenGreen);
}

#webshop-main-page .items-quantity .quantity-field {
  position: relative;
  /* height: 26px; */
  height: 32px;
  /* width: 50px; */
  width: 62px;
  left: -6px;
  text-align: center;
  display: inline-block;
  /* font-size: 16px; */
  margin: 0 0 0px;
  resize: vertical;
  background-color: #fff;
  background: #fff;
}

/*  */

#webshop-main-page .insufficient-stock-tooltip,
#webshop-show-cart .insufficient-stock-tooltip {
  /* display: none; */
  visibility: hidden;
  position: absolute;
  top: -66px;
  right: 0px;
  z-index: 110;
  width: 300px;
  min-width: 100px;
  background-color: var(--arsenalenGreen);
  border-radius: 5px;
  color: #fff;
  padding: 10px 20px;
  transition: all 1s ease-in-out;
  opacity: 0;
}

#webshop-main-page .insufficient-stock-tooltip-show,
#webshop-show-cart .insufficient-stock-tooltip-show {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 1;
  visibility: visible;
}

/*  */

/* shopping cart */

#webshop-show-cart input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

/* Chrome, Safari, Edge, Opera */

#webshop-show-cart input::-webkit-outer-spin-button,
#webshop-show-cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#webshop-show-cart input[type="number"] {
  -moz-appearance: textfield;
}

#webshop-show-cart .items-quantity {
  /* position: relative; */
  display: flex;
  margin-left: 0px;
  align-items: center;
}

#webshop-show-cart .items-quantity i {
  cursor: pointer;
}

#webshop-show-cart .items-quantity .minus {
  width: auto;
  margin-right: 10px;
  font-size: 20px;
}

#webshop-show-cart .items-quantity .minus:hover {
  color: var(--arsenalenGreen);
}

#webshop-show-cart .items-quantity .plus {
  font-size: 20px;
}

#webshop-show-cart .items-quantity .plus:hover {
  color: var(--arsenalenGreen);
}

#webshop-show-cart .items-quantity .quantity-field {
  position: relative;
  height: 26px;
  left: -6px;
  text-align: center;
  width: 50px;
  /* font-size: 16px; */
  margin: 0 0 0px;
  resize: vertical;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

/* shopping cart */

/* style for category */

/* version 1 */

/* #webshop-main-page .webshop-category-box-25 {
    width: 23%;
    background-color: #fff;
    margin: 0% 1% 30px 1%;
    padding: 20px;
    line-height: 22px;
    min-height: 200px;
    color: #333;
    border: 1px solid #ccc;
    padding: 20px;
    margin-right: 8px;
    margin-bottom: 1.5%;
	display: flex;
	flex-direction: column;
} */

/* version 2 */

#webshop-main-page .webshop-category-box-25 {
  display: flex;
  flex-direction: column;
  width: 23%;
  /* float: left; */
  background-color: #fff;
  margin: 0% 1% 30px 0%;
  margin-right: 8px;
  margin-bottom: 1.5%;
  padding: 20px;
  line-height: 22px;
  min-height: 200px;
  color: #333;
  border: 1px solid #ccc;
  /* display: table; */
}

/* version 1 */

/* .webshop-category-box-25 ul{
    margin-bottom: 5px;
} */

/* version 2 */

.webshop-category-box-25 ul {
  list-style-type: none;
  padding: 0;
}

/* version 1 */

/* .webshop-category-box-25>ul>li>a{
    font-weight: bold;
} */

/* version 2 */

.webshop-category-box-25 > ul > li > a {
  padding: 15px 0;
  float: left;
  width: 100%;
  border-top: 1px solid #e5e5e5;
  /* font-size: 16px; */
}

.webshop-category-box-25 > ul:last-of-type > li > a {
  border-bottom: 1px solid #e5e5e5;
}

.webshop-category-box-25 ul > li > a {
  color: #272727;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out,
    border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.webshop-category-box-25 ul > li > a:hover {
  color: var(--arsenalenGreen) !important;
}

/* version 1 */

/* .webshop-category-box-25>ul>ul {
    margin-left: 22px;
} */

/* version 2 */

.webshop-category-box-25 ul ul li a {
  padding: 0px 0 15px 20px;
  background-image: url(../../images/arrowright-red.png);
  background-repeat: no-repeat;
  background-position: 0 2px;
  border-top: none;
  /* font-size: 14px; */
  display: inline-block;
}

.webshop-category-box-25 .menu-show-all-products h4 {
  text-decoration-line: underline;
  margin: 18px 0px 2px;
}

.webshop-category-box-25 .menu-show-all-products a {
  display: block;
  text-decoration: none;
  padding: 15px 0;
  border-top: 1px solid #e5e5e5;
  transition: all 0.5s ease-in-out;
}

.webshop-category-box-25 .menu-show-all-products a:hover,
.webshop-category-box-25 .menu-show-all-products a.active {
  color: var(--arsenalenGreen) !important;
  /* font-size: 16px; */
}

/* css from style */

/* section .submenu{
	width: 23%;
	float: left;
	background-color: #fff;
	margin: 2% 1% 30px 1%;
	padding: 20px;
	line-height: 22px;
	min-height: 200px;
	color: #333;
	border: 1px solid #ccc;
	display: table;
} */

/* section .submenu ul{
	list-style-type: none;
	padding: 0;
} */

/* section .submenu ul li a{
	padding: 8px 0;
	float: left;
	width: 100%;
	border-top: 1px solid #e5e5e5;
	font-size: 16px;
} */

/* section .submenu ul ul li a{
	padding: 8px 0 8px 20px;
	background-image: url(../images/arrowright-red.png);
	background-repeat: no-repeat;
	background-position: 0 10px;
	border-top: none;
	font-size: 14px;
} */

section .submenu ul li a.active {
  font-weight: bold;
}

section .submenu ul li a.showsub {
  display: none;
}

/*  */

#webshop-main-page .webshop-box-25,
#webshop-show-cart .webshop-box-25 {
  padding: 0;
  width: 23.333%;
  max-width: 30%;
  overflow: hidden;
  margin: 0 1% 2%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ccc;
  background-color: #fff;
  position: relative;
}

.box-image-background {
  position: relative;
  padding: 25px;
  background-color: #fff;
  border-bottom: 2px solid #f3f3f3;
}

#webshop-main-page .webshop-box-25 .box-image-container {
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 96%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#webshop-main-page .webshop-box-25 .box-content {
  padding: 20px;
  /* margin-top: 15px; */
  margin-top: 0;
  z-index: 20;
  color: inherit;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex-grow: 1;
}

#webshop-main-page .webshop-box-25 .box-content > div {
  display: flex;
  /* font-size: 1.2rem; */
  line-height: 1.6rem;
  padding: 0;
  width: 100%;
  flex-grow: 1;
}

#webshop-main-page .webshop-box-25 .item-price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  /* font-size: 22px; */
  color: var(--arsenalenGreen);
}

.item-price p {
  font-size: 18px;
  font-weight: bold;
}

#webshop-main-page .webshop-box-25 .item-action {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  /* padding-top: 30px; */
  padding-top: 5px;
  justify-content: flex-start;
  margin: 0;
}

#webshop-main-page .webshop-box-25 .item-action form {
  width: 100%;
  margin: 0;
}

#webshop-main-page .webshop-box-25 .item-action .btn-buy {
  width: 100%;
}

#webshop-main-page .webshop-warehouse-product-stock {
  padding: 10px 0;
}

#webshop-main-page .webshop-box-25 .bottom-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px 20px 20px;
  /* margin-bottom: 15px; */
  margin-bottom: 0;
}

/* badge-new-item   */

.webshop-box-25 .badge-new-item::before {
  content: "";
  background: var(--arsenalenGreen);
  filter: blur(1px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* .webshop-box-25 .badge-new-item {
    position: absolute;
    top: 6px;
    left: 6px;
    display: flex;
    justify-content: center;
    color: #fff;
    z-index: 2;
    padding: 4px;
    font-weight: 800;
} */

.webshop-box-25 .badge-new-item {
  font-family: "Open Sans", Georgia, Arial, Helvetica, sans-serif;
  background-color: var(--arsenalenGreen);
  color: var(--arsenalenYellow);
  height: 40px;
  display: inline-block;
  padding: 0 15px 0 15px;
  line-height: 40px;
  text-align: right;
  position: absolute;
  /* font-size: 20px; */
  left: 0;
  top: 0px;
  z-index: 100;
}

/* #webshop-main-page .webshop-box-100 */

#webshop-main-page .webshop-box-100 {
  padding: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  /* flex-direction: row; */
  flex-direction: column;
  /* align-items: center; */
  background-color: #fff;
  border: 1px solid #ccc;
}

.webshop-product-image-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 50px;
}

.image-active {
  border: 2px solid #ccc;
}

#webshop-main-page .webshop-box-100 .box-image-container {
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 60%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#webshop-main-page .webshop-box-100 .box-image-slider-container {
  background-repeat: no-repeat;
  width: 100%;
  min-height: 160px;
  padding-top: 40%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#webshop-main-page .webshop-box-100 .image-container-small-wrapper {
  width: 100%;
  max-width: 590px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  margin-top: 15px;
}

#webshop-main-page .webshop-box-100 .box-image-container-small {
  background-repeat: no-repeat;
  /* width: 160px; */
  width: 75px;
  margin: 1%;
  /* padding-top: 60%; */
  height: auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#webshop-main-page .webshop-box-100 .box-content-wrapper {
  margin: 0 auto;
  width: 80%;
  padding-bottom: 50px;
}

#webshop-main-page .webshop-box-100 .box-content-wrapper .item-price {
  display: none;
}
#webshop-main-page .webshop-box-100 .box-content > div {
  display: flex;
  /* font-size: 1.2rem; */
  line-height: 1.6rem;
  padding: 0;
  width: 100%;
  flex-grow: 1;
}

#webshop-main-page .webshop-box-100 .box-content {
  padding: 20px;
  z-index: 20;
  color: inherit;
  display: flex;
  flex-direction: column;
}

#webshop-main-page .webshop-box-100 .box-product {
  padding: 20px;
  z-index: 20;
  color: inherit;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex-grow: 1;
}

/* #webshop-main-page .webshop-box-100 .box-content h2 {
    font-size: 30px !important;
}
#webshop-main-page .webshop-box-100 .box-content .box-product-info h4 {
    font-size: 18px !important;
}

#webshop-main-page .webshop-box-100 .box-content .box-product-info p {
    font-size: 16px !important;
} */

.webshop-product-single-image {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 25px 0;
}

#webshop-main-page .webshop-box-100 .bottom-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px 0;
}
#webshop-main-page .webshop-box-100 .items-quantity-and-price-wrapper {
  display: flex;
  flex-direction: revert;
  justify-content: space-between;
  align-items: center;
}

#webshop-main-page .webshop-box-100 .bottom-content .box-item-size {
  padding: 10px 0;
  text-align: right;
}

/* #webshop-main-page .webshop-box-100 .bottom-content .box-item-size label {
    font-size: 16px;
} */

#webshop-main-page .webshop-box-100 select {
  border: 1px solid #b3b3b3;
  color: #000;
}

#webshop-main-page .webshop-box-100 .bottom-content .price-and-amount {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /* align-items: flex-end; */
  justify-content: space-between;
  width: 100%;
}
#webshop-main-page
  .webshop-box-100
  .bottom-content
  .price-and-amount
  #item-times,
#webshop-main-page
  .webshop-box-100
  .bottom-content
  .price-and-amount
  #label-item-times {
  display: none;
}
#webshop-main-page
  .webshop-box-100
  .bottom-content
  .price-and-amount
  #item-times {
  margin-bottom: 1rem;
}
#webshop-main-page .webshop-box-100 .price-and-amount-wrapper label {
  font-weight: bold;
}
#webshop-main-page .webshop-box-100 .price-and-amount-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3rem;
}

#webshop-main-page
  .webshop-box-100
  .bottom-content
  .price-and-amount
  .item-price {
  /* font-size: 26px; */
  font-weight: normal;
  padding-bottom: 18px;
  color: var(--arsenalenGreen);
}

#webshop-main-page .webshop-box-100 .item-action {
  margin-top: 10px;
}

/* end #webshop-main-page .webshop-box-100 */

/* box-product-info */

#webshop-main-page .box-product-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 18px;
}

/* box-product-info */

/* box-other-info */

#webshop-main-page .box-other-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 0px;
}

/* #webshop-main-page .box-other-info h4 {
    font-size: 18px;
} */

/* #webshop-main-page .box-other-info p {
    font-size: 16px;
} */

/* box-other-info */

.bin-items {
  margin-top: 30px;
  margin-bottom: 0;
}

#webshop-main-page select {
  width: 99%;
  min-width: 150px;
  margin: 0;
  margin-top: 10px;
  /* font-size: 16px; */
  /* font-size: 14px; */
  padding: 10px;
  height: 45px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  /* background-image: url(../../images/icons8-chevron-down-96.png); */
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 95%;
  font-weight: bold;
  border: 1px solid var(--arsenalenGreen);
  color: var(--arsenalenGreen);
}

#webshop-main-page select:focus {
  border: 1px solid var(--arsenalenGreen);
  outline: none;
}

#webshop-show-cart > div {
  padding: 20px;
}

/* .show-cart-box-100-img-left  */

.show-cart-box-100-img-left {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  padding: 10px 0;
  border-bottom: 2px solid #ccc;
}

.show-cart-box-100-img-left .box-image-container {
  width: 20%;
  position: relative;
  display: flex;
  padding-top: 12%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.show-cart-box-100-img-left .box-content {
  margin: auto;
  width: 50%;
  padding: 20px;
  max-width: 960px;
  text-align: left;
  /* font-size: 18px; */
}

.show-cart-box-100-img-left .box-content > p {
  padding-top: 2px;
  padding-bottom: 0;
}

.show-cart-box-100-img-left .box-trash {
  display: flex;
  justify-content: center;
  width: 20%;
}

.show-cart-box-100-img-left .box-trash a {
  color: var(--arsenalenGreen);
}

.show-cart-box-100-img-left .box-trash a i {
  font-size: 26px;
}

/* end .show-cart-box-100-img-left  */

.table-content {
  display: flex;
  justify-content: space-between;
}

#webshop-show-cart table,
#webshop-show-cart td,
#webshop-show-cart th {
  border: none !important;
}

#webshop-show-cart table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#webshop-show-cart thead {
  border-bottom: 1px solid #7e7e7e;
}

#webshop-show-cart td,
#webshop-show-cart th {
  text-align: left;
  padding: 8px;
}

#webshop-show-cart td {
  vertical-align: middle;
}

#webshop-show-cart tr:nth-child(even) {
  background-color: #dddddd;
}

.form-checkout-wrapper {
  width: 100%;
  /* margin-top: 4rem; */
}

/* The chbx-container */

#webshop-show-cart .chbx-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  /* font-size: 22px; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: fit-content;
  /* jm */
}

#webshop-show-cart .chbx-container:nth-child(1) {
  margin-right: 20px;
}

/* Hide the browser's default checkbox */

#webshop-show-cart .box-delivery-type input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.discount-form{
	margin-top: 2rem;
}
.discount-error-message{
	color: red;
	font-size: 12px;
	margin-top: 5px;
}
.discount-code-wrapper{
	margin-bottom: 10px;
	display: flex;
align-items: flex-end;
	flex-direction: column;
}

.discount-code-wrapper .title-wrapper{
	margin-bottom: 10px;
	display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}
.discount-code-wrapper .title-wrapper .title p{
	padding: 0;
}
.discount-code-wrapper .title-wrapper i{
	cursor: pointer;
	margin-left: 10px;
  font-size: 14px;
}
.discount-code-wrapper .discount-input{
	margin-bottom: 10px;
	width: 200px;
	display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}
.discount-code-wrapper .discount-input button{
	margin-top: 10px;
}

/* Create a custom checkbox */

#webshop-show-cart .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */

#webshop-show-cart .box-delivery-type label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

#webshop-show-cart .box-delivery-type input:checked ~ .checkmark {
  background-color: var(--arsenalenGreen);
}

/* Create the checkmark/indicator (hidden when not checked) */

#webshop-show-cart .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */

#webshop-show-cart .box-delivery-type input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */

#webshop-show-cart .box-delivery-type .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#webshop-show-cart .box-delivery-type {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  /* margin: 20px 0; */
  /* margin: 20px 0 50px; */
  /* padding: 0 0px; */
  /* test */
  margin-bottom: 50px;
  padding-top: 20px;
}

#webshop-show-cart .box-delivery-type label {
  /* font-size: large; */
  font-weight: normal;
}

#webshop-show-cart .box-totalCartValue {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

#webshop-show-cart .box-totalCartValue h4 {
  /* font-size: 18px; */
  margin-bottom: 25px;
}

#webshop-show-cart .box-checkout-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

#webshop-show-cart .buy-terms-link-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  flex-flow: column;
  margin-top: 20px;
}

#webshop-show-cart .buy-terms-link-wrapper a {
  margin: 5px 0;
  font-weight: 600;
}

#webshop-show-cart .buy-terms-link-wrapper a i {
  margin-right: 5px;
}

/* #webshop-show-cart .box-checkout-action > .btn.btn-buy {
    
} */

#webshop-show-cart .box-checkout-action > .btn.btn-buy:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}

#clear-cart-form {
  width: 100% !important;
  margin-top: 20px;
}

#webshop-show-cart .webshop-show-cart-top-content {
  margin-bottom: 30px;
}

#webshop-show-cart .webshop-show-cart-top-content > a {
  text-decoration: none;
  transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out,
    border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

#webshop-show-cart .webshop-show-cart-top-content > a:hover {
  color: #d83c68;
}

#webshop-show-cart .cart-info-icon i {
  color: var(--arsenalenGreen);
  cursor: pointer;
  padding-left: 10px;
}

/* tooltip for info icon in shoppingcart */

#webshop-show-cart .tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */

#webshop-show-cart .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */

#webshop-show-cart .tooltip:hover .tooltiptext {
  visibility: visible !important;
  cursor: pointer;
}

/* webshop thank you page */

.webshop-thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.webshop-thank-you > h1 {
  padding: 50px 0;
}

/* media queries for small devices */

.show-hide-shopcart-icon-in-nav {
  display: none;
}

.menubuttonShoppingcartWrapper {
  display: none;
  float: none;
  padding: 10px 20px;
  top: -61px;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  z-index: 100;
  width: 100%;
}

.menubuttonShoppingcartWrapper h2 {
  display: none;
  margin: 0 !important;
  padding: 0px 14px 2px 14px;
}

.menubuttonShoppingcartWrapper i {
  color: #000;
  cursor: pointer;
  font-size: 30px;
}

.mobile-button-show-hide-category {
  display: none;
  /* padding: 16px; */
  padding: 22px;
  /* border-radius: 50%; */
  /* background-color: #e6e6e6; */
  background-color: #fff;
  /* border-inline: 1px solid #ccc; */
  z-index: 100;
}

/* .mobile-button-show-hide-category:hover {
    background-color: var(--arsenalenGreen);
    color: #fff;
} */

.mobile-button-show-hide-category:hover ~ i {
  color: #fff !important;
}

.mobile-show-category {
  right: 0% !important;
}

@media all and (max-width: 960px) {
  section.webshop-wrapper > div {
    padding: 12.5px 10px;
    overflow: hidden;
  }
  #webshop-main-page .webshop-items-wrapper {
    width: 100%;
    justify-content: center;
    margin-top: 4%;
  }
  .paginationWrapper {
    margin-top: -20px;
    margin-bottom: 20px;
    /* font-size: 30px; */
  }
  .paginationSelector {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 5px;
    text-decoration: none;
    border-radius: 15px;
    text-align: center;
    padding: 0px;
    height: 32px;
    width: 32px;
  }
  #webshop-main-page .webshop-items-wrapper .webshop-box-25 {
    width: 33.333%;
  }
  .menu-shopcart-item-count {
    display: inline-flex;
    justify-content: center;
    position: absolute;
    top: -10px;
    right: 0;
    left: 20px;
    width: 20px;
    height: 20px;
    padding: 0px;
    border-radius: 50%;
    background-color: var(--arsenalenGreen);
    font-weight: bold;
    color: #fff;
  }
  /* #webshop-main-page .webshop-category-box-25 {
        display: block;
        right: -100%;
        position: fixed;
        z-index: 99;
        width: fit-content;
        height: 100%;
        border: 1px solid #e6e6e6;
        transition: all 0.3s ease;
    } */
  #webshop-main-page .webshop-category-box-25 {
    visibility: hidden;
    right: 100%;
    position: absolute;
    /* top: 84px; */
    top: 106px;
    z-index: 102;
    width: max-content;
    min-width: 200px;
    height: max-content;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
  }
  #webshop-main-page .webshop-category-box-25 h2 {
    display: none;
  }
  /* .webshop-category-box-25>ul>li>a {
        font-size: 18px;
    } */
  /* .webshop-category-box-25 ul ul li a {
        font-size: 16px;
    } */
  .webshop-category-box-25 .menu-show-all-products a:hover,
  .webshop-category-box-25 .menu-show-all-products a.active {
    color: var(--arsenalenGreen) !important;
    /* font-size: 20px; */
  }
  .mobile-button-show-hide-category {
    display: inline-flex;
  }
  .show-hide-shopcart-icon-in-nav {
    display: flex;
    position: relative;
    padding-left: 5px;
    margin-right: 33px;
    margin-left: 10px;
  }
  .show-hide-shopcart-icon-in-menu {
    display: none !important;
  }
  .menubuttonShoppingcartWrapper {
    right: 50px;
    display: flex;
  }
  .menubuttonShoppingcartWrapper h2 {
    display: inline-flex;
  }
  #webshop-main-page.webshop-wrapper {
    /* margin-top: 80px; */
    margin-top: 0;
    padding: 0;
  }
  .mobile-button-show-hide-category {
    display: inline-flex;
  }
  #webshop-main-page .webshop-box-25,
  #webshop-show-cart .webshop-box-25 {
    width: 46%;
    max-width: 46%;
  }
}

@media all and (max-width: 700px) {
}

/* @media all and (max-width: 550px) */

@media all and (max-width: 600px) {
  .shop-info {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    overflow: hidden;
    margin: 0 0% 2%;
    border: 1px solid #ccc;
  }
  /* #webshop-show-cart .webshop-show-cart-top-content a {
        font-size: 18px;
    } */
  #webshop-show-cart .webshop-show-cart-top-content {
    margin-bottom: 10px;
  }
  /* main header menu shop cart*/
  .menu-shopcart-item-count {
    display: inline-flex;
    justify-content: center;
    position: absolute;
    /* top: -10px; */
    top: -5px;
    right: 0;
    left: 30px;
    width: 20px;
    height: 20px;
    padding: 0px;
    border-radius: 50%;
    background-color: var(--arsenalenGreen);
    font-weight: bold;
    color: #fff;
  }
  .show-hide-shopcart-icon-in-nav {
    display: flex;
    position: relative;
    padding-left: 5px;
    margin-right: 33px;
    margin-left: 10px;
  }
  .show-hide-shopcart-icon-in-menu {
    display: none !important;
  }
  .menubuttonShoppingcartWrapper {
    /* right: 20px; */
    right: 10px;
  }
  .menubuttonShoppingcartWrapper h2 {
    display: inline-flex;
  }
  #webshop-main-page.webshop-wrapper {
    /* margin-top: 80px; */
    margin-top: 0;
    padding: 0;
  }
  .mobile-button-show-hide-category {
    display: inline-flex;
  }
  section.webshop-wrapper > div {
    /* padding: 12.5px 20px; */
    padding: 12.5px 10px;
    overflow: hidden;
  }
  .paginationWrapper {
    margin-top: -20px;
    margin-bottom: 20px;
    /* font-size: 30px; */
  }
  .paginationSelector {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 5px;
    text-decoration: none;
    border-radius: 15px;
    text-align: center;
    padding: 0px;
    height: 32px;
    width: 32px;
  }
  #webshop-main-page .webshop-category-box-25 {
    /* display: block; */
    visibility: hidden;
    right: 100%;
    /* position: fixed; */
    position: absolute;
    /* top: 84px; */
    top: 106px;
    /* right: -100%; */
    /* right: 0; */
    z-index: 102;
    /* width: fit-content; */
    width: max-content;
    min-width: 200px;
    /* height: 100%; */
    height: max-content;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
  }
  #webshop-main-page .webshop-category-box-25 h2 {
    display: none;
  }
  #webshop-main-page .webshop-category-box-25 .mobile-show-category {
    right: 0%;
  }
  .webshop-category-box-25 ul {
    /* margin-bottom: 10px; */
    margin-bottom: 0;
  }
  .webshop-category-box-25 li {
    /* margin-bottom: 10px; */
    margin-bottom: 0;
  }
  /* wrapper display items */
  #webshop-main-page .webshop-items-wrapper {
    width: 100%;
  }
  #webshop-main-page .webshop-items-wrapper .webshop-box-25 {
    width: 98%;
    margin: 0 auto 20px;
  }
  #webshop-main-page .webshop-box-25,
  #webshop-show-cart .webshop-box-25 {
    padding: 0;
    width: 100%;
    max-width: none;
    overflow: hidden;
    margin: 0 1% 2%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ccc;
  }
  /* display single item */
  #webshop-main-page .webshop-box-100 .box-content-wrapper {
    margin: 0 auto;
    width: 100%;
  }
  #webshop-main-page .webshop-box-100 .box-content {
    /* flex-direction: column-reverse; */
  }
  #webshop-main-page .webshop-box-100 .bottom-content {
    align-items: flex-start;
    margin-bottom: 30px;
  }
  #webshop-main-page .webshop-box-100 .bottom-content .price-and-amount {
    /* align-items: flex-start; */
  }
  #webshop-main-page .webshop-box-100 .box-image-container {
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  #webshop-main-page .webshop-box-100 .bottom-content .box-item-size {
    padding: 10px 0;
    text-align: left;
  }
  #webshop-main-page .insufficient-stock-tooltip {
    /* display: none; */
    visibility: hidden;
    position: absolute;
    top: -66px;
    /* right: 0px; */
    left: 0;
    z-index: 110;
    width: 300px;
    min-width: 100px;
    background-color: var(--arsenalenGreen);
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    transition: all 1s ease-in-out;
    opacity: 0;
  }
  #webshop-main-page .insufficient-stock-tooltip-show {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1;
    visibility: visible;
  }
  /* show shoppingcart */
  #webshop-show-cart > div {
    padding: 35px 10px;
  }
  .show-cart-box-100-img-left .box-image-container {
    display: none;
  }
  .show-cart-box-100-img-left .box-content {
    margin: 0;
    width: 70%;
    padding: 0 0px;
    text-align: left;
    /* font-size: 16px */
  }
  .show-cart-box-100-img-left .box-trash {
    display: none;
    justify-content: flex-end;
  }
  #webshop-show-cart .items-quantity .quantity-field {
    position: relative;
    height: 26px;
    left: -6px;
    text-align: center;
    width: 26px;
    display: inline-block;
    /* font-size: 18px; */
    margin: 0 0 0px;
    resize: vertical;
  }
  #webshop-show-cart {
    padding: 0;
  }


}

@media all and (max-width: 460px) {
	#webshop-main-page .webshop-box-100 .items-quantity-and-price-wrapper {
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: 1rem;
	      }
}

