/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
}
  .custom-select-wrapper select {
    display: none;
  }
  .custom-select {
    position: relative;
    display: inline-block;
  }
.custom-select-trigger {
        position: relative;
    display: block;
    width: 135px;
    padding: 0 50px 0 22px;
    font-size: 14px;
    font-weight: 300;
    color: #6c757d;
    line-height: 40px;
    /*background: #f6f6fc;*/
    border-radius: 4px;
    cursor: pointer;
    border: 0px;
}
.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 7px;
    height: 7px;
    top: 50%;
    right: 25px;
    margin-top: -3px;
    border-bottom: 2px solid #6c757d;
    border-right: 2px solid #6c757d;
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}
       .custom-select.opened .custom-select-trigger:after {
        margin-top: 3px;
        transform: rotate(-135deg) translateY(-50%);
      }
  .custom-options {
    width: 90px;
    position: absolute;
    display: block;
    top: 100%;
    left: -45px;
    min-width: 100%;
    margin: 15px 0;
    border: 0px solid #b5b5b5;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 0px rgba(82, 63, 105, 0.15);
    background: #ffffff!important;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    
}
  .custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    z-index: 3000;
  }
.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 10px;
    height: 10px;
    margin-bottom: -5px;
    border-top: 0px solid #b5b5b5;
    border-left: 0px solid #b5b5b5;
    background: #ffffff!important;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}
    .option-hover:before {
      background: #f9f9f9;
    }
    .custom-option {
    position: relative;
    display: block;
    padding:0px 5px 0px 20px;
    border-bottom: border-bottom;
    font-size: 12px;
    font-family: "Rubik", sans-serif;
    color: #000000;
    line-height: 45px;
    /* margin-bottom: 5px; */
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}
    .custom-option:first-of-type {
      border-radius: 4px 4px 0 0;
    }
    .custom-option:last-of-type {
      border-bottom: 0;
      border-radius: 0 0 4px 4px;
    }
    .custom-option:hover,
    .custom-option.selection {
      background: #f9f9f9;
    }