@media (min-width: 1200px) {
    .services-list__item-title {
        width: calc(100% + 110px);
        border-radius: 45px;
        margin-left: -110px !important;
        padding-left: 125px!important;
        padding-right: 25px !important;
    }
}

.custom-file {
    height: 60px;
}
.custom-file-label {
    font-size: 1.2rem;
    color: #293a43;
    line-height: 1.6;
    height: 60px;
    border-color: #f2f2f2;
    border-radius: 10px;
    padding: 18px 20px;
}
.custom-file-label::after {
    line-height: 3.5;
    text-indent: -55555px;
    width: 60px;
    height: 100%;
    background: url('../../images/search.svg') no-repeat center #f2f2f2;
    border-left: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.custom-file-label span {
    display: block;
    width: calc(100% - 80px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.swal-button {
    position: relative;
    background-color: var(--primary-color);
}
.swal-button:not([disabled]):hover {
    background-color: var(--primary-color);
}
.swal-button:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.swal-button:not([disabled]):hover:before {
    opacity: 1;
    visibility: visible;
}
