/* ======== full name section ======== */
.fullName > div.is-flex,
.serveeType__container,
.fullName_inputs {
    gap: 1rem;
}

.serveeType__item {
    height: 120px;
    background-color: #efefef;
    /* background-color: #F5F5F5; */
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.serveeType__item:not(.active) .serveeType__radio {
    color: #ffffff!important;
}

.serveeType__icon {
    font-size: 4rem;
}
/**/

/* ======== full name section ======== */
.physicalAddress > div.is-flex,
.physicalAddress > div.is-flex > div.is-flex {
    gap: 1rem;
}
/**/

/* ======== document section ======== */
.documents__items__container {
    gap: 1rem;
}

.documents__item {
    background-color: #efefef;
    border-radius: 5px;
    padding: 10px;
    white-space: nowrap;
    width: 200px;
    max-width: 50%;
}

.documents__item-title {
    overflow: hidden;
    text-overflow: ellipsis;
}

.documents__item-delete {
    all: initial;
}

.documents__item-delete:hover {
    transform: scale(1.2);
}
/**/

/* ======== service section ======== */
.service-serveeLvl__container {
    gap: 1rem;
}

.service__item {
    height: 120px;
    background-color: #ececec;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    width: calc(50% - 1rem);
    min-width: 250px;
}

.service__item:not(.active) .checkbox-icon {
    color: #ffffff!important;
}

.service__item .service_quantity {
    width: 120px;
}

/**/

@media screen and (max-width: 500px) {
    .documents__item {
        max-width: initial;
    }

    .service__item {
        max-width: initial;
    }
}