.select-wrap{
  /* width: 400px;
  margin:auto; */
}
.custom-select-wrapper {
    /* position: relative;
    display: inline-block;
    user-select: none;
    width: 100%; */

}

.custom-select-wrapper select {
    display: none;
}

.custom-select {
    /* position: relative;
    display: inline-block;
    width: 100%; */
}

.custom-select-trigger {
    display: block;
    width: 100%;
    padding: 15px 35px;
    border: none;
    border-bottom: 1px solid #645979;
    outline: none;
    border-radius: 30px 30px 30px 30px;
    background-color: #ffffff;
    font-size: small;
    font-weight: lighter;
    text-align: left;
    color: #757575;
}

.custom-select-trigger:after {
    /* position: absolute;
    display: inline-block;
    top: 0%;
    right: 1%;
    content: '\0025BC';
    font-size: 1.4em; */
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    /* width: 97%; */
    margin: -10px 0;
    /* border-radius: 0px; */
    box-sizing: border-box;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    margin-left: 0%;
    height: 116px;
    overflow-y: auto;
    background-color: white;
    box-shadow: 0px 9px 5px 0px rgb(100 89 121 / 44%);
    border-top: #645979 1px solid;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 4px 4px 0px rgb(100 89 121 / 44%);

}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    /* se vuoi espandione nel div metti static */
    /* position:static; */
}

.custom-select-trigger.nocurveborder{
    border-radius: 30px 30px 0px 0px;
}

.option-hover:before {
    background: #f9f9f9;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 22px;
    border-bottom: none;
    /* font-size: 16px;
    font-weight: 400;
    color: #4d4747; */
    line-height: 30px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    text-align: left;
    font-size: small;
    font-weight: bold;
    color: #162563;

}

.custom-option:first-of-type {
    border-radius: 4px 4px 0 0;
    display: none;
}

.custom-option:last-of-type {
    border-bottom: 0;
    border-radius: 0 0 4px 4px;
}

.custom-option:hover,
.custom-option.selection {
    background: #dddddd;
}
.custon-options-wrap {
    height: auto;
    /* border: 1px solid #2cb99b;
    width: 90%;
    margin-left: 10%; */
    position: relative;
    /* top: -1px; */
    display:none;
}
.custon-options-wrap:before {
    display: inline-flex;
    /* content: ''; */
    height: 100%;
    width: 1px;
    /* position: absolute; */
    position: relative;
    z-index: 99999999;
    /* transform: rotate(0deg);
    top: 0px;
    right: 0%;
    border-right: .5px solid #2cb99b;
    margin-right: calc(7.3% + 11px); */
}
.custom-select.sources .custon-options-wrap{
top:-2px;
}
.custom-select.sources.opened .custon-options-wrap{
top:-1px;
}
.custom-options::-webkit-scrollbar {
    width: 12px !important;
    background: #eee;
    border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #525659;
}

.straight-border {
    border-radius: 0px 0px 0px 0px;
}
