
/* projects-page drop-down css */
    
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}
.custom-select {
    position: relative;
    display: flex!important;
    flex-direction: column;
    border: 1px solid #dadce0!important;
    border-radius: 8px!important;
    background-color: #f1f5f9!important;
    background-image: none!important;
    margin-bottom: .575rem;
}
.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
    font-size: 16px;
    font-weight: 400;
    color: #5f6368;
    cursor: pointer;
}
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 0px solid #394a6d;
    border-top: 0;
    background: #fff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
}
.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.custom-option {
    position: relative;
    display: block;
    padding: 0 22px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 40px;
    cursor: pointer;
    transition: all 0.5s;
}
.custom-option:hover {
    cursor: pointer;
    background-color: #eee;
}
.custom-option.selected {
    color: #ffffff;
    background-color: #305c91;
}

.arrow {
    height: 15px;
    width: 15px;
    position: absolute;
    right: -10px;
    transform: rotate(180deg);
}
.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: #394a6d;
}
.arrow::after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: #394a6d;
}
.open .arrow::before {
    left: -5px;
    transform: rotate(-45deg);
}
.open .arrow::after {
    left: 5px;
    transform: rotate(45deg);
}

.clientLinked{
    padding: 10px 5px 10px 30px;
    position: relative;
    align-items: center;
}
.clientLinked .form-check{
    position: absolute;
    left: 8px;
    top: 20px;
}


.pType .w-select{
    font-size: 16px;
    padding-left: 34px;
    color: #5f6368;
}

