.modal-data {
    width: 1000px;
}
.modal-data-header {
    margin-bottom: 20px;
}
.modal-data-chart {
    display: flex;
    margin-bottom: 20px;
}
.modal-data-chart .box {
    display: flex;
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 41px;
    overflow: hidden;
}
.modal-data-chart span {
    display: flex;
    padding: 0 20px;
    height: 37px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.modal-data-chart span:first-child {
    margin-left: 0;
}
.modal-data-chart span:hover {
    color: var(--bs-primary);
}
.modal-data-chart span.active {
    background-color: var(--bs-primary);
    border-radius: 37px;
    color: #fff
}
.modal-data-group {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}
.modal-data-group .modal-data-chart {
    margin-bottom: 0;
}
.modal-data-select .item,
.modal-data-select .name,
.modal-data-select .value {
    display: flex;
}
.modal-data-select .item {
    margin-top: 10px;
}
.modal-data-select .item:first-child {
    margin-top: 0;
}
.modal-data-select .name {
    width: 50px;
}
.modal-data-select .value {
    padding-left: 10px;
    width: calc(100% - 50px);
    flex-wrap: wrap;
}
.modal-data-select .value span {
    display: flex;
}
.modal-data-select .value span.default {
    color: var(--bs-default);
}
.modal-data-select .data {
    display: none;
}
.modal-data-box {
    margin-top: 20px;
}
.modal-data-box:first-child {
    margin-top: 0;
}
.modal-data-name {
    position: relative;
    margin-bottom: 10px;
    padding-left: 18px;
    color: var(--bs-dark);
}
.modal-data-name::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--bs-primary);
    border-radius: 100%;
    transform: translateY(-50%);
}
.modal-data-list {
    display: flex;
    flex-wrap: wrap;
}
.modal-data-item {
    display: flex;
    margin-top: 5px;
    width: 20%;
}
.modal-data-item:nth-child(-n+5) {
    margin-top: 0;
}
.modal-data-custom {
    color: var(--bs-default);
}
.modal-data-custom i {
    margin: 0 3px;
    color: var(--bs-primary);
    font-weight: 700;
}

.modal-chart-box {
    width: 1000px;
    height: 450px;
}

.modal-training {
	
}

.modal-form-item .name {
	width: 100px;
}
.modal-form-item .name.large {
	width: 130px;
}
.modal-form-item .name.large-150 {
	width: 150px;
}
.modal-form-item .name.large-200 {
	width: 200px;
}
.modal-form-item .input input:focus,
.modal-form-item .select select:focus {
    border-color: #193ed4;
}