
#device_selection .render_product_list{
    list-style-type: none !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 40px;
    row-gap: 6px;
}
#device_selection .render_product_list li {
    padding: 0 !important;
    font-size: 12px;
    line-height: 18px;
}

#device_selection hr{
    margin: 40px 0;
    border-top: 1px solid #bebebe;
}

#device_selection h3{
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.2px;
}

/* ul.product_dropdown.dropdown {
  max-height: 200px;
  overflow-y: auto;
} */



/* the code below is for the dropdown heading */
.setting-description {
  border-radius: 10px 10px 0px 0px;
  width: 327px;
  border: 1px solid #E5E5E5;
  border-bottom: none;
  padding-top: 7px;
  margin-top: 24px;
}

h10 {
  font-size: 12px;
  letter-spacing: 0.8px;
}

.setting-description-text {
  color: #666;
  font-family: Gilroy;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

/* the code below is for the dropdown menu */
.wrapper-dropdown {
  position: relative;
  display: inline-block;
  width: 327px;
  padding: 0px 16px 7px;
  border-radius: 0px 0px 10px 10px;
  text-align: left;
  color: #000;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 20px;
  border: 1px solid #E5E5E5;
  border-top: none;
}


.scrollable-menu {
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.arrow {
  margin-left: 10px;
  margin-right: 10px;
  float: right;
  rotate: 180deg;
  color: #DF1B12;
}

svg {
  transition: all 0.3s;
}

span#destination {
  width: 245px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wrapper-dropdown::before {
  position: absolute;
  top: 50%;
  right: 16px;

  margin-top: -2px;

  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #fff transparent;
}

.rotated {
  transform: rotate(-180deg);
}

.wrapper-dropdown .dropdown {
  transition: 0.3s;

  position: absolute;
  top: 120%;
  right: 0;
  left: 0;

  margin: 0;
  padding: 0;

  list-style: none;

  z-index: 99;

  border-radius: 15px;
  box-shadow: inherit;
  background: inherit;

  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  opacity: 0;
  visibility: hidden;
}

.wrapper-dropdown .dropdown li {
  padding: 0 15px;
  line-height: 30px;
  overflow: hidden;
}

.wrapper-dropdown .dropdown li:last-child {
  border-bottom: none;
}

.dropdown {
  padding: 0.5rem !important;
}

.wrapper-dropdown .dropdown li:hover {
  background-color: #e5e5e5;
  border-radius: 10px;
}

.wrapper-dropdown.active .dropdown {
  opacity: 1;
  visibility: visible;
  border-radius: 10px;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e5e5e5;
}

@media (max-width: 480px) {
  #device_selection .render_product_list{
    grid-template-columns: repeat(3, 1fr);
  }
}