.loading {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
    background: rgba(255, 255, 255, .8);

}
.loading span {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loading span img{
    width: 30px;
    height: 30px;
}
.compu_repair_form {
    position: relative;
}

.compu_repair_form_select {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 30px;
}

.compu_repair_form select {
    width: 33.33%;
    min-height: 50px;
    clear: both;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 3px 10px;
}

.compu_repair_details {
    margin-top: 25px;
}

.compu_repair_details h3 {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .compu_repair_details h3 {
        font-size: 32px;
    }

    .compu_repair_form_select {
        flex-wrap: wrap;
        gap: 15px;
    }

    .compu_repair_form select {
        width: 100%;
    }
}