.contacts-box {
    display: flex;
    flex-direction: column;
    gap: 6px;


    .contact-row {
        flex: 1;
        display: flex;
        gap: 6px;
        align-items: center;

        .contact-form-item {
            display: flex;
            flex-direction: column;
            flex: 1;

            label {
                color: #a2a2a2;
                font-size: 12px;
                margin-bottom: 0 !important;
            }

            input {
                background-color: #fff !important;
                border: 1px solid #bdbdbd !important;
            }
        }

        .contact-form-item-delete {
            display: flex;
            flex-direction: column;
            align-items: center;
            /*justify-content: center;*/
            width: 30px;

            .delete-contact-row {
                svg {
                    width: 16px;
                    height: 16px;
                }
            }
        }
    }
}
.hidden-elem {
    display: none !important;
}

