.distributeDropdown {
    display: flex;
    justify-content: center;
}

.distributeDropdown .dotsBtn {
    color: #5774E7;
    font-size: 9px;
    width: 50px;
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
    /*padding: 3px 0;*/
    cursor: pointer;
    line-height: 11px;
    letter-spacing: 0.4px;
}

/*.distributeDropdown .dotsBtn > div {*/
/*    width: 4px;*/
/*    height: 4px;*/
/*    border-radius: 50%;*/
/*    background: #5774E7;*/
/*}*/
.distributeDropdown .dotsBtn.disabled {
    cursor: default;
    opacity: .4;
}

.distributeDropdown .dotsBtn.disabled > svg > path {
    fill: #c9c9c9;
}

.distributeDropdown .dropdown-content {
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 41, 199, 0.2), 0 0 2px 0 rgba(70, 89, 191, 0.3);
    /*top:5px;*/
    /*left: -65px;*/
    position: fixed;
    width: 170px;
    z-index: 1002;
    padding: 12px 0px;
    min-height: 50px;
    margin-top: 2px;
    -webkit-transition: opacity 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out;
    -ms-transition: opacity 0.1s ease-in-out;
    -o-transition: opacity 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out;
    /*opacity: 0;*/
}

/*.distributeDropdown .dropdown-content.renderContent {*/
/*    opacity: 1;*/
/*}*/

.distributeDropdown .dropdown-content .option {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0px 20px;
    line-height: 28px;
    text-align: left;
}


.distributeDropdown .dropdown-content .option:hover,
.distributeDropdown .dropdown-content .option.hovered {
    background-color: #F6F7FE;
    cursor: pointer;
}

.distributeDropdown .dropdown-content .option.disabled,
.distributeDropdown .dropdown-content .option.disabled.hovered {
    cursor: default;
    background: none;
}

.distributeDropdown .dropdown-content .option .value-container {
    font-family: GlowRegular;
    font-size: 14px;
    color: #4a4a4a;
    padding-right: 10px;
    font-weight: 400;
}

.distributeDropdown .dropdown-content .option.disabled .value-container {
    color: #4A4A4A;
    opacity: .4;
}

.distributeDropdown .dropdown-content .title {
    font-family: GlowSemibold;
    font-size: 14px;
    color: #4a4a4a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
    text-align: left;
    padding-left: 20px;
}

.distributeDropdown .complete-task-datepicker .calendar-container {
    top: 0;
}