.packages-container {
  background: #080f2c !important;
  display: flex;
  flex-direction: column;
  gap: 0vw;
  align-items: center;
}

.host-locations {
  border-radius: 2vw;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  color: white;
  display: flex;
  align-items: center;
  margin: 10vh 0;
}

.location-title {
  background: rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  transition: all ease 0.5s;
  font-weight: 500;
  color: white;
  padding: 1vh 1vw;
  border-radius: 2vw;
  border-bottom-right-radius: 0vw;
  border-top-right-radius: 0;
  display: flex;
  align-items: center;
}

.host-locations ul {
  list-style: none;
  display: flex;
  padding: 0 1vw;
  margin: 0;
  gap: 1vw;
}

.host-locations ul li {
  background: rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  transition: all ease 0.5s;
  font-weight: 500;
  color: white;
  padding: 0.5vh 0.5vw;
  border-radius: 2vw;
  user-select: none;
}

.host-locations ul li.new {
  position: relative;
}

.host-locations ul li.new::after {
  content: "NEW";
  position: absolute;
  top: -1.5vh;
  padding: 0.3vh 0.5vw;
  border-radius: 2vw;
  background: rgb(4 135 255 / 46%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  font-size: 0.8em;
  display: flex;
  right: -1.7vw;
  border-bottom-left-radius: 0;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.pack-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10vh 2vw;
  justify-content: center;
  align-items: flex-end;
}

.pack-card {
  height: 36vw;
  width: 12vw;
  border-radius: 2vw;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  transition: all ease 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.pack-icon {
  display: flex;
  justify-content: center;
  margin: auto;
  margin-bottom: 0;
  margin-top: -5vh;
  transition: all ease 0.5s;
  height: 150px;
  width: 150px;
  user-select: none;
}

.pack-icon img {
  filter: drop-shadow(0 5px 7px rgb(0 0 0 / 30%));
  transition: all cubic-bezier(0, 0, 0.5, 1) 0.5s;
  user-select: none;
  -webkit-user-drag: none;
}

.pack-icon.box-image {
  border-radius: 2vw;
  overflow: hidden;
}

.pack-card:hover {
  background: rgb(255 255 255 / 20%);
}

.pack-card:hover .pack-title {
  padding: 0vh;
}

.pack-card:hover .pack-icon {
  margin-top: 2vw;
  filter: drop-shadow(0 0px 0px rgb(0 0 0 / 30%));
}

.pack-card:hover .pack-icon:not(.box-image) img {
  filter: drop-shadow(0px 0px 4vw rgb(255, 255, 255));
}

.pack-title {
  color: white !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2vw;
  padding-top: 0vh;
  transition: all ease 0.5s;
  user-select: none;
}

.pack-price {
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1vh 1vw;
  gap: 0.5vw;
}

.pack-price .price-section {
  margin: 0;
  text-align: center;
  padding: 1vh 0.5vw;
  border-radius: 1vw;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  font-size: 0.8rem;
  width: 100%;
}

.pack-price .price-section p {
  margin: 0;
}

.pack-content ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.pack-content ul li {
  border-radius: 1vw;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  transition: all ease 0.5s;
  margin: 0.5vh 1vw;
  font-weight: 500;
  color: white;
  display: flex;
  width: 100%;
  padding: 1vh 0.5vw;
}

.pack-card:hover .pack-content ul {
  padding-bottom: 1vh;
}

.pack-content ul li span {
  display: flex;
  align-items: center;
}

.pack-content ul li span.list-icon:first-of-type {
  width: 20%;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.pack-content ul li span:last-of-type {
  text-align: right;
  margin-left: auto;
  font-size: 0.8rem;
}

.list-icon {
  position: relative;
}

.list-icon span {
  opacity: 0;
  position: absolute;
  top: -2.2vh;
  width: auto;
  white-space: nowrap;
  text-align: center;
  left: 1.1vw;
  padding: 0.3vh 0.5vw;
  border-radius: 2vw;
  background: rgb(4 135 255 / 46%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  font-size: 0.8em;
  display: flex;
  border-bottom-left-radius: 0;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: all ease 0.5s;
}

.list-icon:hover span {
  opacity: 1;
}

.pack-card:hover ul li {
  margin: 0 1vw;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0px 0px rgb(0 0 0 / 0%);
}

.pack-card:hover ul li:first-of-type {
  border-radius: 1vw;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pack-card:hover ul li:last-of-type {
  border-radius: 1vw;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0);
}

.more-container {
  max-width: 70%;
}

.more-container .more-title {
  color: white;
  text-transform: uppercase;
  margin: 5vh 0;
  margin-bottom: 1vh;
  text-align: center;
}

.more-packs {
  padding: 5vh 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1vw;
}

.more-packs .pack-card {
  min-height: auto;
  height: auto;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}

.more-packs .pack-card .pack-icon {
  display: flex;
  justify-content: center;
  margin: auto;
  margin-top: auto;
  margin-left: -3vh;
  transition: all ease 0.5s;
  height: 150px;
  width: 150px;
  user-select: none;
  align-items: center;
}

.more-packs .pack-card:hover .pack-icon {
  margin-top: auto;
  margin-left: 1vh;
  filter: drop-shadow(0 0px 0px rgb(0 0 0 / 30%));
}

.more-packs .pack-card .pack-icon.box-image {
  height: 12vh;
  width: 12vw;
  border-radius: 2vw;
}

.more-packs .pack-card:hover .pack-icon img {
  filter: drop-shadow(0px 0px 4vw rgb(255, 255, 255));
  height: 125px;
  width: 125px;
}

.more-packs .pack-card:hover .pack-icon.box-image img {
  height: 12vh;
  width: 12vw;
}

.more-packs .pack-card:hover .pack-icon:not(.box-image) img {
  filter: drop-shadow(0px 0px 0vw rgb(255, 255, 255));
}

.more-packs .pack-card .pack-title {
  padding-top: 0;
  width: 14%;
}

.more-packs .pack-card .pack-price {
  flex-direction: column;
}

.more-packs .pack-card .pack-content {
  padding-bottom: 0vh;
  display: flex;
  padding: 1vh;
  align-items: center;
}

.more-packs .pack-card .pack-content ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  gap: 0.3vw;
  align-content: center;
}

.more-packs .pack-card .pack-content ul li {
  border-radius: 1vw;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  transition: all ease 0.5s;
  margin: 0;
  font-weight: 500;
  color: white;
  display: flex;
  min-width: 9vw;
  width: fit-content;
  padding: 0.5vh 0.5vw;
}

.more-packs .pack-card .pack-content ul li span {
  display: flex;
  align-items: center;
}

.more-packs .pack-card .pack-content ul li span:first-of-type {
  width: 20%;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.more-packs .pack-card .pack-content ul li .list-icon span {
  width: auto;
  white-space: nowrap;
}

.more-packs .pack-card .pack-content ul li span:last-of-type {
  text-align: right;
  margin-left: auto;
}

.more-packs .pack-card:hover ul li {
  margin: 0;
  border-radius: 1vw;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0px 0px rgb(0 0 0 / 0%);
}

.more-packs .pack-card:hover ul li:first-of-type {
  border-radius: 1vw;
  border-bottom-left-radius: 1vw;
  border-bottom-right-radius: 1vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.more-packs .pack-card:hover ul li:last-of-type {
  border-radius: 1vw;
  border-top-left-radius: 1vw;
  border-top-right-radius: 1vw;
  border-top: 1px solid rgba(255, 255, 255, 0);
}

.pack-actions {
  padding: 2vh 1vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pack-buy-btn {
  border-radius: 1vw;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%);
  transition: all ease 0.5s;
  margin: 0;
  font-weight: 500;
  color: white;
  display: flex;
  min-width: 7.5vw;
  padding: 0.5vh 0.5vw;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
}

.pack-buy-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 15%), 0 0 5vw 3vw rgb(255 255 255 / 38%);
  color: black;
}

@media all and (min-width: 1440px) and (max-width: 1920px) {
  .pack-card:hover .pack-icon {
    margin-top: 3vh;
    filter: drop-shadow(0 0px 0px rgb(0 0 0 / 30%));
  }

  .pack-card {
    height: 87vh;
  }
}
@media all and (min-width: 1280px) and (max-width: 1440px) {
  .packages-container {
    align-items: stretch;
  }

  .host-locations {
    flex-direction: column;
    width: 90%;
    margin: 10vh 7vw;
    align-items: stretch;
  }

  .more-container {
    max-width: unset;
    margin: 0 7vw;
  }

  .more-packs .pack-card .pack-price {
    flex-direction: row;
  }

  .location-title {
    border-right: 0px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom-left-radius: 0vw;
    border-bottom-right-radius: 0vw;
    border-top-right-radius: 2vw;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .host-locations ul {
    padding: 1vw;
    flex-direction: column;
  }

  .host-locations ul li {
    padding: 0.5vh 1vw;
  }

  .pack-card {
    height: auto;
    width: 16vw;
  }
}

@media all and (min-width: 1024px) and (max-width: 1280px) {
  .packages-container {
    align-items: stretch;
  }

  .host-locations {
    flex-direction: column;
    width: 90%;
    margin: 10vh 7vw;
    align-items: stretch;
  }

  .more-container {
    max-width: unset;
    margin: 0 7vw;
  }

  .location-title {
    border-right: 0px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom-left-radius: 0vw;
    border-bottom-right-radius: 0vw;
    border-top-right-radius: 2vw;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .host-locations ul {
    padding: 1vw;
    flex-direction: column;
  }

  .host-locations ul li {
    padding: 0.5vh 1vw;
  }

  .pack-card {
    height: auto;
    width: 15vw;
  }

  .more-packs .pack-card .pack-price {
    flex-direction: row;
  }

  .pack-icon.box-image {
    border-radius: 5vw;
  }

  .pack-title {
    padding-top: 1vh !important;
  }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .packages-container {
    align-items: stretch;
  }

  .host-locations {
    flex-direction: column;
    width: 90%;
    margin: 10vh 7vw;
    align-items: stretch;
  }

  .more-container {
    max-width: unset;
    margin: 0 7vw;
  }

  .more-packs .pack-card .pack-price {
    flex-direction: row;
  }

  .location-title {
    border-right: 0px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom-left-radius: 0vw;
    border-bottom-right-radius: 0vw;
    border-top-right-radius: 2vw;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .host-locations ul {
    padding: 1vw;
    flex-direction: column;
  }

  .host-locations ul li {
    padding: 0.5vh 1vw;
  }

  .pack-container {
    flex-direction: column;
    margin: 0 7vw;
  }

  .pack-card {
    height: auto;
    width: auto;
  }

  .pack-price {
    gap: 2vw;
  }

  .pack-content ul li {
    border-radius: 2vw;
    padding: 1vh 2vw;
  }

  .pack-actions .pack-buy-btn {
    border-radius: 3vw;
  }

  .more-packs .pack-actions {
    width: 100%;
  }

  .more-packs {
    gap: 20vw;
  }

  .more-packs .pack-card {
    width: auto;
    align-items: stretch;
  }

  .more-packs .pack-card .pack-title {
    width: auto;
  }

  .more-packs .pack-card .pack-icon {
    margin-top: -5vh;
    margin-left: auto;
  }

  .more-packs .pack-card:hover .pack-icon {
    margin-top: 5vh;
    margin-left: auto;
    filter: drop-shadow(0 0px 0px rgb(0 0 0 / 30%));
  }

  .more-packs .pack-card,
  .more-packs .pack-card .pack-content,
  .more-packs .pack-card .pack-content ul {
    flex-direction: column;
  }

  .more-packs .pack-card .pack-content ul {
    gap: 3vw;
    width: 100%;
  }

  .more-packs .pack-card .pack-content ul li {
    border-radius: 2vw !important;
    min-width: auto;
    width: 100%;
    padding: 1vh 2vw;
  }

  .pack-icon.box-image {
    border-radius: 5vw;
  }

  .pack-title {
    padding-top: 1vh !important;
  }
}

@media all and (min-width: 480px) and (max-width: 768px) {
  .packages-container {
    align-items: stretch;
  }

  .host-locations {
    flex-direction: column;
    width: 90%;
    margin: 10vh 7vw;
    align-items: stretch;
  }

  .more-container {
    max-width: unset;
    margin: 0 7vw;
  }

  .more-packs .pack-card .pack-price {
    flex-direction: row;
  }

  .location-title {
    border-right: 0px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom-left-radius: 0vw;
    border-bottom-right-radius: 0vw;
    border-top-right-radius: 2vw;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .host-locations ul {
    padding: 1vw;
    flex-direction: column;
  }

  .host-locations ul li {
    padding: 0.5vh 1vw;
  }

  .pack-container {
    flex-direction: column;
    margin: 0 7vw;
  }

  .pack-card {
    height: auto;
    width: auto;
  }

  .pack-price {
    gap: 2vw;
  }

  .pack-content ul li {
    border-radius: 2vw;
    padding: 1vh 2vw;
  }

  .pack-actions .pack-buy-btn {
    border-radius: 3vw;
  }

  .more-packs .pack-actions {
    width: 100%;
  }

  .more-packs {
    gap: 20vw;
  }

  .more-packs .pack-card {
    width: auto;
    align-items: stretch;
  }

  .more-packs .pack-card .pack-title {
    width: auto;
  }

  .more-packs .pack-card .pack-icon {
    margin-top: -5vh;
    margin-left: auto;
  }

  .more-packs .pack-card:hover .pack-icon {
    margin-top: 5vh;
    margin-left: auto;
    filter: drop-shadow(0 0px 0px rgb(0 0 0 / 30%));
  }

  .more-packs .pack-card,
  .more-packs .pack-card .pack-content,
  .more-packs .pack-card .pack-content ul {
    flex-direction: column;
  }

  .more-packs .pack-card .pack-content ul {
    gap: 3vw;
    width: 100%;
  }

  .more-packs .pack-card .pack-content ul li {
    border-radius: 2vw !important;
    min-width: auto;
    width: 100%;
    padding: 1vh 2vw;
  }

  .pack-icon.box-image {
    border-radius: 5vw;
  }

  .pack-title {
    padding-top: 1vh !important;
  }
}

@media all and (max-width: 480px) {
  .packages-container {
    align-items: stretch;
  }

  .host-locations {
    flex-direction: column;
    width: 90%;
    margin: 10vh 7vw;
    align-items: stretch;
  }

  .more-container {
    max-width: unset;
    margin: 0 7vw;
  }

  .more-packs .pack-card .pack-price {
    flex-direction: row;
  }

  .location-title {
    border-right: 0px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom-left-radius: 0vw;
    border-bottom-right-radius: 0vw;
    border-top-right-radius: 2vw;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .host-locations ul {
    padding: 1vw;
    flex-direction: column;
  }

  .host-locations ul li {
    padding: 0.5vh 1vw;
  }

  .pack-container {
    flex-direction: column;
    margin: 0 7vw;
  }

  .pack-card {
    height: auto;
    width: auto;
  }

  .pack-price {
    gap: 2vw;
  }

  .pack-content ul li {
    border-radius: 2vw;
    padding: 1vh 2vw;
  }

  .pack-actions .pack-buy-btn {
    border-radius: 3vw;
  }

  .more-packs .pack-actions {
    width: 100%;
  }

  .more-packs {
    gap: 20vw;
  }

  .more-packs .pack-card {
    width: auto;
    align-items: stretch;
  }

  .more-packs .pack-card .pack-title {
    width: auto;
  }

  .more-packs .pack-card .pack-icon {
    margin-top: -5vh;
    margin-left: auto;
  }

  .more-packs .pack-card:hover .pack-icon {
    margin-top: 5vh;
    margin-left: auto;
    filter: drop-shadow(0 0px 0px rgb(0 0 0 / 30%));
  }

  .more-packs .pack-card,
  .more-packs .pack-card .pack-content,
  .more-packs .pack-card .pack-content ul {
    flex-direction: column;
  }

  .more-packs .pack-card .pack-content ul {
    gap: 3vw;
    width: 100%;
  }

  .more-packs .pack-card .pack-content ul li {
    border-radius: 2vw !important;
    min-width: auto;
    width: 100%;
    padding: 1vh 2vw;
  }

  .pack-icon.box-image {
    border-radius: 5vw;
  }

  .pack-title {
    padding-top: 1vh !important;
  }
}
