.main-container {
  width: 100vw;
  height: 100vh;
  background-color: #6d6d6d33;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.pop-container {
  min-width: 30vw;
  border-radius: 10px;
  overflow: hidden;
}

.popup-input {
  position: relative;
}

.popup-input > div > input {
  width: 100%;
  padding: 5px 30px;
  border-radius: 15px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #3a3b3c;
}

.popup-input > div > input::placeholder {
  font-size: 14px;
}

.search-icon {
  position: absolute;
  left: 9px;
  font-size: 16px;
  top: 10px;
  color: white;
}

.individual-items-container {
  overflow: scroll;
  height: 30.5vh;
}

.pop-up-footer {
  position: sticky;
  bottom: 0;
  border-top: 1px solid #595959;
}

.pop-up-footer > button {
  outline: none;
  border: none;
  border-radius: 2px;
  padding: 3px 0;
  border: 1px solid white;
}

.pop-up-selected {
  position: relative;
  z-index: 2;
  color: white !important;
}

.pop-up__media {
  background-color: #3ea2fd;
}

.pop-up-selected::after {
  content: "";
  background-image: linear-gradient(#2196f3 100%, #1c639c 100%);
  position: absolute;
  z-index: -1;
  height: 36px;
  width: 36px;
  border-radius: 100%;
}

::-webkit-scrollbar {
  width: 0px;
}

.arrow-style {
  position: absolute;
  top: 10px;
  left: 20px;
}

.footer {
  border-top: 1px solid white;
}

.rounded-box {
  border-radius: 100% !important;
  height: 25px;
  width: 25px;
}

.pop-footer-border-bottom {
  border-bottom: 1px solid #595959;
}

.pop-footer-border-all {
  border: 1px solid #595959;
}

.bg-glass {
  border: 0.626623px solid #6f6f6f;
  border-radius: 50px;
  padding: 5px;
}

.margin-right-sm {
  margin-right: 10px;
}

.button-selected {
  background-color: #2196f3;
  transform: scale(1.3);
  transition: 1s;
  animation: ease-in-out;
  color: white;
  border-radius: 100%;
}

@media screen and (min-width: 2500px) {
  .pop-container {
    min-width: 20vw;
  }
}

@media screen and (max-width: 1070px) {
  .pop-container {
    min-width: 50vw;
  }
}

@media screen and (max-width: 620px) {
  .pop-container {
    min-width: 70vw;
  }
}

@media screen and (max-width: 500px) {
  .pop-container {
    min-width: 90vw;
  }
}
@media screen and (max-width: 374px) {
  .pop-container {
    min-width: 95vw;
  }
}
