*,
*:after,
*:before {
  box-sizing: border-box;
}

.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-select {
  display: flex;
  flex-direction: column;
  border-width: 0 2px 0 2px;
    min-width: 250px;
    text-align: left;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 1rem !important;
  font-weight: 300;
  color: #3b3b3b;
      height: 45px;
    line-height: 45px;
  background: #ffffff;
  cursor: pointer;
    border-radius: 10px;
    z-index: 101;
}

.custom-options {
  position: absolute;
  display: block;
  top: 0px;
  left: 0;
  right: 0;
  border-top: 0;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
    padding-top: 45px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(204,204,204,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(204,204,204,1);
    box-shadow: 0px 0px 5px 0px rgba(204,204,204,1);
    z-index: 100;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-option {
  position: relative;
  display: block;
  padding: 0 15px;
  font-size: 0.9rem;
  font-weight: 300;
  color: #3b3b3b;
  line-height: 28px;
  cursor: pointer;
  transition: all 0.5s;
}

.custom-option:hover {
  cursor: pointer;
  background-color: #e4e4e4;
}

.custom-option.selected {
  /*background-color: #e4e4e4;*/
}

.arrow {
  position: relative;
  height: 25px;
  width: 15px;
    margin-top: 0px;
    line-height: 30px;
}


@media (max-width: 1366px) and (max-height: 700px) {
.custom-select {
    min-width: 200px;
}    
.custom-select__trigger {
    font-size: 1rem !important;
    height:40px;
    line-height: 40px;
}
.custom-option {
    line-height: 30px;
}    
}
@media (max-width: 1100px) {
.custom-select {
    min-width: 220px;
}
}
@media (max-width: 1100px) {
.custom-select__trigger {
    z-index: 101;
}    
.custom-options {
    
}

}
