.customers{
    padding: 0 35px;
    width: 100%;
}

@media screen and (max-width: 1600px){
    .customers{
        width: 70%;
    }
}
@media screen and (max-width: 1024px){
    .customers{
        width: 100%;
    }
}

.customers__content{
    width: 100%;
    max-width: 610px;
}

.customers__content__title{
    font-family: Legan;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin: max(40px, 3.906vw) 0 40px;
}

.customers__content__search{
    margin-bottom: 20px;
}

.customers__content__search input{
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid #F2F2F2;
    background: #fff;
    outline: none;
}

.customers__content__add-new{
    border-radius: 8px;
    padding: 15px 20px;
    background-color: #252525;
    color: #fff;
    margin: 0 0 20px 0;
    transition: all 0.3s ease;
}

.customers__content__add-new:hover{
    color: #252525;
    background-color: #fff;
}

.customers__content__add-new:hover path{
    fill: #252525;
}

.customers__content__add-new:hover circle{
    stroke: #252525;
}

.customers__content__add-new span{
    margin-left: 18px;
}

.customers__list{
    margin: 0;
    padding: 0;
    max-height: 400px;
    overflow-y: scroll;
}

.customers__list__item{
    list-style: none;
    border-bottom: 1px solid #252525;
    position: relative;
}

.customers__list__item:after{
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M6.1986 3.84907L2.77518 0.465402C2.7333 0.423672 2.68348 0.390551 2.62859 0.367948C2.5737 0.345345 2.51482 0.333707 2.45536 0.333707C2.39589 0.333707 2.33702 0.345345 2.28212 0.367948C2.22723 0.390551 2.17741 0.423672 2.13554 0.465402C2.04972 0.550521 2.00153 0.665791 2.00153 0.785959C2.00153 0.906128 2.04972 1.0214 2.13554 1.10652L5.23464 4.16962L2.13554 7.23273C2.09332 7.27412 2.05981 7.32336 2.03694 7.37761C2.01407 7.43187 2.00229 7.49006 2.00229 7.54883C2.00229 7.60761 2.01407 7.6658 2.03694 7.72005C2.05981 7.77431 2.09332 7.82355 2.13554 7.86494C2.17576 7.90771 2.22459 7.94169 2.2789 7.9647C2.3332 7.9877 2.39177 7.99922 2.45085 7.9985C2.57259 7.99821 2.68924 7.95017 2.77518 7.86494L6.1986 4.43675C6.28267 4.35401 6.33109 4.24233 6.33374 4.1251C6.32397 4.01996 6.27595 3.92189 6.1986 3.84907Z' fill='%23272525'/%3E%3C/svg%3E");
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 20px;
    transition: all 0.3s ease;
}

.customers__list__item a{
    color: #252525;
    text-decoration: none;
    font-size: 16px;
    padding: 20px 0 15px;
    transition: all 0.3s ease;
}

.customers__list__item:hover > a{
    padding:20px 40px 15px 20px;
    background-color: #f2f2f2;
}

.customers__list__item:hover::after{
    right: 40px;
}

.customers__sidebar{
    width: 30%;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1024px){
    .customers__sidebar{
        display: none;
    }
}
