.modal-window {
	display: none;
	z-index: 99;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	flex-direction: column;
	box-sizing: border-box;
	background-color: var(--bg-color);
	justify-content: space-evenly;
}

.profile-modal-preset-set-name-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
	left: 0;
	top: 0;
	background: rgb(0, 0, 0, 0.5);
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.info-popup-modal-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1000;
	left: 0;
	top: 0;
	background: rgb(0, 0, 0, 0.5);
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.info-popup-modal {
	background-color: var(--bg-color);
	color: white;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	pointer-events: all;
	max-height: 200px;
}

.info-popup-modal-list {
	list-style-type: none;
	padding-left: 0;
	overflow-y: auto;
}

.info-popup-modal-title {
	font-size: 16px;
}

.profile-controls {
	margin-left: 20px;
	display: flex;
	gap: 4px;
}

.profile-controls button {
	padding: 0;
}

.profile-controls img {
	height: 20px;
}

.profile-controls > * {
	height: 24px;
}

.profile-controls > select {
	width: 170px;
}

#modal-window-header {
	height: 55px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#modal-window-container {
	height: 100%;
	width: 100%;
	overflow-x: visible;
	overflow-y: hidden;
	display: block;
}

#modal-window-footer {
	height: 115px;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	padding: 8px;
}

.height-profile__button {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 25%;
}

#close-height-profile-modal-icon {
	position: absolute;
	right: 32px;
	top: 32px;
	transform: translate(50%, -50%);
}

.height-profile-group {
	color: white;
	display: flex;
	gap: 24px;
	border: 1px solid #555;
	padding: 16px 8px 8px 8px;
	border-radius: 5px;
}

.height-profile-group-caption {
	font-weight: bold;
	position: absolute;
	margin-left: 4px;
	margin-top: -26px;
	background-color: rgba(25, 40, 44, 1);
}

.height-profile-group-column {
	display: flex;
	width: 200px;
	gap: 8px;
	flex-direction: column;
}

.height-profile-group-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.height-profile-group-item__file-name {
	display: flex;
	align-items: center;
	gap: 10px;
}

.height-profile-group-item input {
	width: 50px;
}

.height-profile-group-item__file-name input {
	width: 150px;
}

.height-profile-group-item select {
	width: 100px;
}

.height-profile-buttons-left {
	display: flex;
	gap: 8px;
	padding-top: 8px;
}
