.main-wrapper {
  width: 100%;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.main-wrapper h3 {
    color: white;
}

.main-wrapper div {
  width: 100%;
}

.top-brands {
  background: white;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 3px;
  margin-bottom: 20px;
}

.top-brands div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.top-brands div img {
  cursor: pointer;
  max-width: 50px;
}

.picker {
  padding: 15px;
  background: white;
  width: 100%;
  border-radius: 3px;
}

.picker p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
  color: black;
}

.picker input {
  border-width: 2px !important;
  border-radius: 3px !important;
  border-color: #f5f5f5 !important;
}

.complete-item {
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
}

.complete-item img {
  margin-right: 10px;
}

.v-select-list {
  max-height: 300px;
  background: white;
  overflow-y: scroll;
}

/* Page transition */
.fade-enter-active, .fade-leave-active {
  opacity: 1;
  transition: .2s ease-in-out;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
  opacity: 0;
}
/* Transition end */

#arrow_icon {
  width: 30px;
  transition: .5s ease-in-out;
  fill: #6a6a6a;
}

.arrow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #6a6a6a;
  font-weight: 500;
  width: 80px;
  transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  width: 80px !important;
  margin-bottom: 15px;
}

.arrow:hover {
  color: black;
}

.arrow:hover #arrow_icon {
  fill: black;
  transform: translateX(-5px);
}

.subheader {
  margin-bottom: 15px;
}

.subheader img {
  margin-right: 10px;
}

.subheader-second {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}

.subheader-second img {
  margin-right: 10px;
}

.subheader-second p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.subheader-second p span {
  font-size: 12px;
}

.img-wrap {
  width: 100%;
  text-align: center;
}

.selected-wrapper {
  border: 1px solid #f5f5f5;
  border-radius: 3px;
  padding: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: .4s ease-in-out;
}

.selected-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0.6px 0.6px 2.2px -40px rgb(0 0 0 / 2%), 1.3px 1.3px 5.3px -40px rgb(0 0 0 / 3%), 2.5px 2.5px 10px -40px rgb(0 0 0 / 4%), 4.5px 4.5px 17.9px -40px rgb(0 0 0 / 4%), 8.4px 8.4px 33.4px -9px rgb(0 0 0 / 18%), 20px 20px 80px -40px rgb(0 0 0 / 7%);
}

.selected-wrapper img {
  width: 60px;
  margin-right: 10px;
}

.selected-wrapper p {
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 600;
}

.selected-wrapper p span {
  font-size: 12px;
  font-weight: 400;
}