html,
body {
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
  /* background-color: #d3dce6; */
  font-family: monospace;
}
body {
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

label {
  font-size: 23px;
  font-weight: 700;
  cursor: pointer;
  color: #344a6d;
  opacity: 0.7;
  transition: opacity 0.4s ease-in-out;
  display: block;
  /* width: calc(100% - 48px); */
  /* text-align: right; */
  z-index: 100;
  user-select: none;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  align-items: center;
}
.tabs img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.small-box img {
  width: 20px;
  height: auto;
  margin-right: 3px;
}
.small-box label {
  flex-wrap: nowrap;
}
input[type="radio"] {
  display: none;
  width: 0;
}
label:hover,
input[type="radio"]:checked + label {
  opacity: 1;
}
.popup {
  width: -webkit-fill-available;
  min-height: 740px;
  max-height: 480px;
  /* border-radius: 48px; */
  box-sizing: border-box;
  /* border: 16px solid #ebf0f4; */
  /* background-color: #dfe6ed; */
  overflow: hidden;
  /* box-shadow: 16px 16px 48px #2e364330; */
  display: flex;
}
.popup-mobile {
  margin: 15px;
  width: 100%;
  min-height: 740px;
  /* max-height: 480px; */
  max-width: 490px;
  padding: 10px;
  /* border-radius: 18px; */
  box-sizing: border-box;
  /* border: 5px solid #389eef; */
  /* background-color: #dfe6ed; */
  overflow: hidden;
  /* box-shadow: 16px 16px 48px #2e364330; */
  display: none;
  justify-content: space-between;
}
@media screen and (min-width: 1100px) {
  .popup {
    /* width: 100%;
    height: 100%; */
    /* border-radius: 0;
    border: 0;
    box-shadow: none; */
  }
}
.popup-mobile .row {
  margin-bottom: 30px;
  border-radius: 7px;
  display: flex;
  justify-content: flex-start;
  box-shadow: 0px 0px 8px 0px #525ea7;
  font-size: 24px;
  font-weight: 700;
  color: #2e364330;
  /* transition: 0.4s ease-in-out;
  animation: fadeEffect 0.6s ease-in-out; */
  padding: 10px;
}
.popup-mobile label {
  color: #344a6d;
}
.tabcontent {
  display: none;
  /* height: 100%; */
  width: 100%;
  color: #525d6f;
  transition: 0.4s ease-in-out;
  animation: fadeEffect 0.6s ease-in-out;
  padding: 10px;
  overflow-y: auto;
}
.footer-tittle {
  text-align: left;
}
.tabcontent img {
  width: 80%;
  margin-top: 15px;
  margin-left: 5px;
  margin-bottom: 15px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0px 0px 8px 0px #525ea7;
  align-self: center;
  transition: 0.4s ease-in-out;
  animation: fadeEffect 0.6s ease-in-out;
}
@media screen and (min-width: 1000px) {
  .tabcontent {
    display: none;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs {
  width: 100%;
  max-width: 450px;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  position: relative;
}
.tab-list {
  color: black;
  max-width: fit-content;
  margin-top: 18px;
}
.marker {
  position: absolute;
  width: 100%;
  height: 200%;
  display: flex;
  flex-direction: column;
  top: calc(-100%);
  left: 0;
  transition: transform 0.2s ease-in-out;
}
.marker #bottom,
.marker #top {
  /* background-color: #ebf0f4; */
  box-shadow: 32px 32px 48px #2e364315;
}
.marker #top {
  height: calc(50%);
  margin-bottom: auto;
  border-radius: 0 0 32px 0;
}
.marker #bottom {
  height: calc(50% - 51px);
  border-radius: 0 32px 0 0;
}
#tab1:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 0));
}
#tab2:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 1));
}
#tab3:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 2));
}
#tab4:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 3));
}
#tab5:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 4));
}
#tab6:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 5));
}
#tab7:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 6));
}
#tab8:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 7));
}
#tab9:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 8));
}
#tab10:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 9));
}
#tab11:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 10));
}
#tab12:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 11));
}
#tab13:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 12));
}
#tab14:checked ~ .marker {
  transform: translateY(calc(calc(50% / 14) * 13));
}

.category-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid gray;
  border-bottom: 2px solid gray;
}
@media screen and (max-width: 500px) {
  .row label {
    font-size: 18px;
  }
}
@media screen and (max-width: 994px) {
  .popup-mobile {
    display: flex;
  }
  .popup {
    display: none;
  }
}
