.validation-step-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.validation-step-container>div>div:first-child {
    /* background-color: orange; */
    display: flex;
    justify-content: space-between;
}

.validation-step-container>div>div:first-child>p,
.validation-step-container>div>div:first-child>div:first-child>p {
    color: #333333 !important;
    font-weight: 500;
}

.validation-step-container>div>div:first-child>div:first-child {
    display: flex;
    gap: 5px;
}

.validation-step-container>div>div:first-child .edit-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: solid 1px #B5B5B5;
    border-bottom: unset;
    border-radius: 2px 2px 0 0;
    padding: 0 5px;
    gap: 5px;
    color: #5B5B5B;
    cursor: pointer;
}

.validation-step-container>div>div:first-child .edit-values * {
    transition: color ease .2s;
}

.validation-step-container>div>div:first-child .edit-values:hover * {
    color: #3498ff;
}

.validation-step-container>div>div:nth-child(2) {
    padding: 2%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: solid 1px #B5B5B5;
    border-radius: 2px 0 2px 2px;
}

.validation-step-container>div>div:nth-child(2) .info-section {
    /* display: block; */
    /* background-color: blue; */
    display: flex;
    justify-content: space-between;
}

.validation-step-container>div>div:nth-child(2) .info-section .value-container ,
.validation-step-container>div>div:nth-child(2) .info-section .value-container *{
    color: #333333 !important;
}