.tab-container {
  width: calc(100% - 100px);
  max-width: 1340px;
  background: none;
  border: none;
}

/* Style the tab */
.tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: none;
  border: none;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 4px 16px;
  transition: 0.3s;
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.tab button:nth-child(1) {
  color: #FFA41C;
}

.tab button:nth-child(2) {
  color: var(--green, #53C661);
}

.tab button:nth-child(3) {
  color: #3AB8FF;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  border-radius: 20px 20px 0 0;
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2) inset;
  background-color: var(--grey, #F2F3F4);
}

.tab button.active::after {
  content: "";
  transition: 0;
  position: absolute;
  width: 98%;
  height: 16px;
  left: 4px;
  bottom: -8px;
  background-color: var(--grey, #F2F3F4);
}

/* Style the tab content */
.tabcontent {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 30px 15px;
  border-radius: 0 0 20px 20px;
  background-color: var(--grey, #F2F3F4);
  border: #E1E1E1;
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2) inset;
}

.tab-card {
  width: 30%;
  height: 180px;
  padding: 25px;
  display: flex;
  margin: 5px;
  margin-bottom: 10px;
  justify-content: space-between;
  border-radius: 25px;
  border: 3px solid #E1E1E1;
  background: var(--white, #FFF);
}

.tab-card > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tab-card h1 {
  color: var(--black, #001305);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.tab-card > div > div {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  display: flex;
  align-items: center;
  background-color: #FFEED4;
  border-radius: 10px;
}

.tab-card p {
  margin: 0;
}

.spot {
  width: 10px;
  height: 10px;
  background-color: #FFA41C;
  margin-right: 5px;
  border-radius: 50%;
}

.tab-card img {
  width: 60px;
  height: 60px;
}

@media (max-width: 1040px) {
  .tab-card {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .tab {
    grid-template-rows: 50px;
  }
  .tab button {
    font-size: 20px;
    padding: 0;
  }
  .tab-card {
    height: 150px;
  }
  .tab-card > div h1 {
    font-size: 15px;
  }
  .tab-card img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 600px) {
  .tab-card {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .tab-container {
    width: 100%;
  }
  .tab-card {
    margin: 10px;
  }
  .tab button {
    font-size: 15px;
  }
  .tabcontent {
    border-radius: 0;
  }
}
@media (max-width: 375px) {
  .tab-card {
    margin: 5px;
  }
}/*# sourceMappingURL=style.css.map */