		:root {
  --primary: #227093;
  --secondary: #ff5252;
  --background: #eee;
  --highlight: #ffda79;
  /* Theme color */
  --theme: var(--primary);
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* Core styles/functionality */
.tabs {
  position: relative;
}
.tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tabs__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.tabs input:checked ~ .tabs__content {
  max-height: 20rem;
  border-inline: 1px solid #E6E6E6;
  padding: 30px;
  display: flex;
  justify-content: center;
  background-color: #f4F4F4;
}

/* Visual styles */
.accordion {
  color: #000;
  border-radius: 0.5rem;
  overflow: hidden;
  padding:80px 60px;
  background: #FFFFFF;
}
.tabs__label,
.tabs__close {
  display: flex;
  color: white;
  background: var(--theme);
  cursor: pointer;
}
.tabs__label {
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 1px;
}
.tabs__label::after {
  content: "\276F";
  width: 1em;
  /*height: 1em;*/
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}
.tabs input:checked + .tabs__label::after {
  transform: rotate(270deg);
}
.tabs__content p {
  margin: 0;
  padding: 1rem;
}
.tabs__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.accordion--radio {
  --theme: var(--secondary);
}
ul.productpage
{
	 padding-left:20px;column-count: 2;gap: 70px;
}
.product-ul-div
{
	/*padding-right:100px;*/float:left;display: inline-block;
}
.pro-p
{
	padding-right:100px;
}

/* Arrow animation */
.tabs input:not(:checked) + .tabs__label:hover::after {
  animation: bounce .5s infinite;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-.25rem);
  }
}
@media screen and (max-width: 600px) {
	.accordion {
	  color: #000;
	  border-radius: 0.5rem;
	  overflow: hidden;
	  padding:80px 20px;
	  background: #FFFFFF;
	}
	.tabs input:checked ~ .tabs__content {
	  max-height: 20rem;
	  min-height: fit-content;
	  border-inline: 1px solid #E6E6E6;
	  padding: 30px;
	  display: block;
	  justify-content: center;
	  background-color: #f4F4F4;
	}
	ul.productpage
	{
		 padding-left:20px;column-count: inherit;gap: 70px;
	}
	.product-ul-div
	{
		padding-right:20px;float:left;display: inline-block;
	}
}