.checkbox-wrapper{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.checkbox-wrapper .checkbox-checkmark,
.checkbox-wrapper .checkbox{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0,-50%);
    border: 1px solid #000;
    width: 16px;
    height: 16px;
}

.checkbox-wrapper.checked .checkbox-checkmark{
    display: block!important;
}
.checkbox-wrapper.checkbox-text-right .checkbox,
.checkbox-wrapper.checkbox-text-right .checkbox-checkmark{
    right: unset;
    left: 20px;
}
.checkbox-wrapper .checkbox-label{
    padding: 0 30px 0 0;
}
.checkbox-wrapper.checkbox-text-right .checkbox-label{
    padding: 0 0 0 30px;
}
.checkbox-checkmark img{
    min-width: 32px!important;
    min-height: 32px!important;
    transform: translate(-10px, -10px);
}




.dropdown-wrapper{
    position: relative;
}
.dd-body{
    position: relative;
    /*top: calc(100% + 8px);*/
    /*left: 0;*/
    max-height: 120px;
    /*width: 100%;*/
    /*max-height: 400px;*/
    overflow-y: auto;
    border-radius: 5px;
    padding: 9px 14px;
    background: var(--dark-gray-3);
    z-index: 2;
}

.client-form-inner-wrapper .dd-body {
    /*position: fixed;*/
}

.dd-body > div{
    padding: 5px 0;
    cursor: pointer;
    transition: 0.3s;
    color: white;
}
.dd-body > div:hover{
    opacity: 0.5;
}

.dd-head{
    display: flex;
    border: none;
    background: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}
.dd-head .dd-title-wrapper{
    width: 100%;
    padding: 9px 14px;
    display: flex;
    align-items: center;
}
.dd-head .dd-title-wrapper span{
    font-weight: 400;
    font-size: 13.33333px;
    color: black;
}
.dd-head .dd-icon{
    height: 43px;
    min-width: 43px;
    display: flex;
    background: var(--dark-gray-3);
    justify-content: center;
    align-items: center;
    align-content: center;
    cursor: pointer;
}
