/*edit control*/

.edit-wrap {
    display: flex;
    flex-basis: 600px;
    max-width: 100%;
    flex-wrap: wrap;
}

    .edit-wrap select {
        border: 0px;
        border-radius: 0;
    }

    .edit-wrap textarea {
        border: 0px !important;
    }


.edit-content {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.edit-data {
    padding-right: 2rem;
    flex-grow: 1;
}

.edit-row {
    width: 100%;
    height: auto;
    display: flex;
    border-style: solid;
    border-color: #d3d3d3;
    border-width: 1px;
    align-items: center;
    background-color: #f7f7f7;
    box-shadow: none;
}

    .edit-row + .edit-row {
        border-top: none;
    }

.edit-row-inner {
    box-shadow: none;
    width: 100%;
    display: flex;
    padding: 0px;
    height: auto;
    border-style: solid;
    border-color: #d3d3d3;
    border-width: 1px 0 0 1px;
    margin-top: -1px;
}

.edit-label, .edit-label-2, .edit-label-grow {
    min-width: 116px;
    border-right: 1px solid #d6d6d6;
    color: black;
    background-color: #f7f7f7;
    padding: 10px;
    display: flex;
    align-items: center;
    height: 45px;
    white-space: nowrap;
}

.edit-label-2 {
    flex-basis: 400px;
}

.edit-label-grow {
    flex-basis: 0;
    flex-grow: 1;
}

.edit-label-white {
    border-right: 1px solid #d6d6d6;
    color: black;
    background-color: white;
    padding: 10px;
    align-items: center;
}

.edit-input-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 45px;
    height: 45px;
    padding: 5px 10px;
    background-color: #fafafa;
    color: black;
    border-left: 1px solid #ddd;
    white-space: nowrap;
}

.edit-title {
    font-size: 20px;
    color: #000;
    padding: 24px 0 8px 0;
    font-weight: 400;
}

.edit-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.edit-input-wrap, .edit-select-wrap, .edit-center-wrap {
    position: relative;
    width: 100%;
    min-height: 45px;
    background-color: white;
    border-left: 1px solid #d3d3d3;
}

.edit-select-wrap {
    padding-right: 0.5rem;
}

.edit-center-wrap {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.edit-label, .edit-label-2 {
    border-right: none;
}

.edit-input-wrap + .edit-label {
    border-left: 1px solid #d3d3d3;
}

.edit-select-wrap select, .edit-input-wrap input {
    width: 100%;
    min-height: 45px;
    border-radius: 0;
    border: none;
}

    .edit-input-wrap input[type="checkbox"]:not(.m_switch_check) {
        width: unset;
        min-height: unset;
    }

.edit-input-grow {
    flex-grow: 1;
    padding: 0px;
    margin-right: 1px;
    background-color: white;
}

.edit-input-content {
    height: 45px;
    display: flex;
    padding-left: 20px;
    align-items: center;
}

.edit-wrap textarea {
    border: 0px;
}

.edit-hr {
    border-bottom: solid 1px #e6e6e6;
}

.edit-input {
    height: 45px;
    width: 100%;
    border: 0px;
    border-radius: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.edit-text {
    padding: 10px;
    color: #757575;
}

    .edit-text span {
        color: black;
    }

.edit-short {
    width: 120px;
}


.btn-primary {
    color: #fff;
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

    .btn-primary:active, .btn-primary:focus, .btn-primary:hover {
        background-color: var(--primaryColor) !important;
        border-color: var(--primaryColor) !important;
        opacity: 0.8 !important;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        opacity: 0.5;
        background-color: var(--primaryColor) !important;
        border-color: var(--primaryColor) !important;
    }


.btn-secondary {
    color: #fff;
    background-color: var(--secondaryColor) !important;
    border-color: var(--secondaryColor) !important;
}

    .btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
        background-color: var(--secondaryColor) !important;
        border-color: var(--secondaryColor) !important;
        opacity: 0.5;
    }


.btn-gray-light {
    color: #16181b;
    background-color: #f8f9fa
}

    .btn-gray-light.active {
        color: white;
        background-color: var(--primaryColor) !important;
    }