.serv_categories{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}
.serv_category_item{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    padding: 16px 12px;
    border: 1px solid #f0f2f5;
    border-radius: 12px;
    transition: all .2s;
    background: #fff;
    text-decoration: none;
}
.serv_category_item:hover{
    border-color: #cbd5e1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
    text-decoration: none;
}
.serv_category_img{
    max-width: 100px;
    height: auto;
}
.serv_category_item_title{
    font-size: 16px;
    color: #000;
    text-decoration: none;
    text-align: center;
}
.serv_list_title{
    display: flex;
    justify-content: center;
    font-size: 24px;
    color: #000;
    margin-bottom: 24px;
    font-weight: 600;
}
.serv_groups{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}
.serv_group{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.serv_group_header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.serv_group_icon{
    height: 20px;
    width: auto;
}
.serv_group_title{
    font-size: 18px;
    color: #000;
    font-weight: 600;
}
.serv_group_list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.serv_group_item{
    display: flex;
    align-items: center;
    border: 1px solid #f0f2f5;
    border-radius: 12px;
    padding: 14px;
    gap: 10px;
    font-size: 15px;
    color: #000;
    background: #fff;
}
.serv_group_item_title{
    flex-grow: 1;
}
.serv_group_item_cost{
    flex-shrink: 0;
    font-weight: 600;
}
.serv_group_item_btn{
    margin-left: 40px;
    font-size: 15px;
    background: var(--service-request-button-bg, #229ac8) !important;
    border-color: var(--service-request-button-bg, #229ac8) !important;
    color: var(--service-request-button-color, #ffffff) !important;
    border-radius: var(--service-request-button-radius, 8px) !important;
    padding: var(--service-request-button-padding-y, 10px) var(--service-request-button-padding-x, 18px) !important;
    transition: all .2s;
}
.serv_group_item_btn:hover,
.serv_group_item_btn:focus{
    background: var(--service-request-button-hover-bg, #1f90bb) !important;
    border-color: var(--service-request-button-hover-bg, #1f90bb) !important;
    color: var(--service-request-button-color, #ffffff) !important;
}
.service-modal-content .modal-header{
    border-bottom-color: rgba(15, 23, 42, .08);
}
.service-form-text{
    margin-bottom: 15px;
    color: inherit;
}
#service-form .form-control{
    box-shadow: none;
}

.service-phone-field{
    position: relative;
    display: block;
    width: 100%;
    min-height: 34px;
}
#service-modal .service-phone-field .service-phone-code{
    position: absolute;
    left: 1px;
    top: 1px;
    bottom: 1px;
    z-index: 2;
    width: 70px;
    max-width: 70px;
    height: auto;
    border: 0 !important;
    border-right: 1px solid #d9dfe7 !important;
    border-radius: 8px 0 0 8px !important;
    background: #fff !important;
    box-shadow: none !important;
    padding: 0 24px 0 10px !important;
}
#service-modal .service-phone-field .service-phone-code:disabled{
    opacity: 1;
    cursor: not-allowed;
    color: #555;
    pointer-events: none;
}
#service-modal .service-phone-field .service-phone-code-single{
    display: flex !important;
    align-items: center;
    cursor: default;
    user-select: none;
    pointer-events: none;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: none !important;
}
#service-modal .service-phone-field .service-phone-input{
    width: 100% !important;
    padding-left: 80px !important;
}
#service-form .btn-group{
    display: flex;
}
#service-form .service-submit-button{
    min-width: 0;
    width: auto;
}
@media (min-width: 375px) {
    .serv_category_item {
        width: calc((100% - 12px) / 2);
    }
}
@media (min-width: 768px) {
    .serv_category_item {
        width: calc((100% - 24px) / 3);
    }
}
@media (min-width: 992px) {
    .serv_category_item {
        width: calc((100% - 36px) / 4);
    }
}
@media (min-width: 1200px) {
    .serv_category_item {
        width: calc((100% - 48px) / 5);
    }
}
@media (max-width: 767px) {
    .serv_group_item {
        flex-wrap: wrap;
    }
    .serv_group_item_title{
        width: 100%;
    }
    .serv_group_item_btn{
        margin-left: auto;
    }
}
