/* ТЕХНИЧЕСКИ ЦЕНТЪР / СЪРВЪР */

#hosting-order-form .form-group:has(.hosting-order-location) {
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 16px;
    padding: 30px 35px;
    margin: 35px 0;
    text-align: left !important;
}

#hosting-order-form .form-group:has(.hosting-order-location) .control-label {
    display: block !important;
    font-size: 24px;
    font-weight: 800;
    color: transparent !important;
    margin-bottom: 25px;
    position: relative;
}

#hosting-order-form .form-group:has(.hosting-order-location) .control-label::after {
    content: "ТЕХНИЧЕСКИ ЦЕНТЪР";
    color: #111;
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 25px !important;
    padding-bottom: 25px;
}

#hosting-order-form .form-group:has(.hosting-order-location) .col-md-3,
#hosting-order-form .form-group:has(.hosting-order-location) .col-md-9 {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

#hosting-order-form .location input[type="radio"] {
    display: none !important;
}

#hosting-order-form .location {
    display: none;
    padding: 14px 16px;
    border: 1px solid #dcdcdc;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    border-radius: 10px;
    align-items: center;
    gap: 10px;
    position: relative;
}

#hosting-order-form .location img {
    width: 22px;
}

#hosting-order-form .location:has(input[type="radio"]:checked) {
    display: flex !important;
}

#hosting-order-form .location:has(input[type="radio"]:checked)::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: .6;
}

#hosting-order-form .form-group:has(.hosting-order-location):hover .location {
    display: flex !important;
    border-radius: 0;
}

#hosting-order-form .form-group:has(.hosting-order-location):hover .location:first-child {
    border-radius: 10px 10px 0 0;
}

#hosting-order-form .form-group:has(.hosting-order-location):hover .location:last-child {
    border-radius: 0 0 10px 10px;
}

#hosting-order-form .location:hover {
    background: #f4f4f4;
}