.custom-select-wrapper, .custom-select-wrapper1 {
    position: relative;
    user-select: none;
    width: 100%;
}
.custom-select, .custom-select1 {
    position: relative;
    /*display: flex;
    flex-direction: column;*/
    border: none;
    margin: 0 auto;
    color: #495057;
    background-color: #efefef;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
} 
.custom-select__trigger, .custom-select__trigger1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 300;
    color: #3b3b3b;
    height: 38px;
    line-height: 60px;
    // background: #ffffff;
    cursor: pointer;
    border: none;
}
.custom-options, .custom-options1 {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    transition: all 0.5s;
    opacity: 0; 
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    text-align: right;
}
.custom-select.open .custom-options, .custom-select1.open .custom-options1 {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.custom-option, .custom-option1 {
    position: relative;
    display: block;
    padding: 0 22px 0 22px;
    font-size: 14px;
    font-weight: 300;
    color: #3b3b3b;
    line-height: 40px;
    cursor: pointer;
    transition: all 0.5s;
    text-align: 14px;
}
.custom-option:hover, .custom-option1:hover {
    cursor: pointer;
    background-color: #b2b2b2;
}
.custom-option.selected, .custom-option1.selected {
    color: #ffffff;
    background-color: #c2c2c2;
}
.arrow {
    position: relative;
    height: 15px;
    width: 15px;
}
.arrow::before, .arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0.15rem;
    height: 100%;
    transition: all 0.5s;
}
.arrow::before {
    left: -5px;
    transform: rotate(45deg);
    background-color: #000;
}
.arrow::after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: #000;
}
.open .arrow::before {
    left: -5px;
    transform: rotate(-45deg);
}
.open .arrow::after {
    left: 5px;
    transform: rotate(45deg);
}