.vmodal.open .modal-overlay,
.vmodal.open .modal-window {
	opacity: 1;
	z-index: 1000;
}

.vmodal.hide .modal-overlay,
.vmodal.hide .modal-window {
	opacity: 1;
	z-index: 1000;
}

.vmodal.open .modal-window {
	transform: translateY(100px);
}

.vmodal.open .modal-overlay {
	background: rgba(0, 0, 0, 0.5);
}

.vmodal.hide .modal-window {
	transform: translateY(-200px);
}

.vmodal.hide .modal-overlay {
	background: rgba(0, 0, 0, 0);
}

.modal-window,
.modal-overlay {
	opacity: 0;
	z-index: -1;
}

.modal-overlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 0.2s ease-in;
}

.modal-window {
	width: 600px;
	border-radius: 5px;
	background: #fff;
	margin: 0 auto;
	transform: translateY(-200px);
	transition: transform 0.2s ease-in;
}

.modal-header {
	padding: 10px 15px;
	display: flex;
	justify-content: center;
	border-bottom: 1px solid #eee;
}

.modal-title {
	font-size: 36px;
	letter-spacing: 2px;
	color: #35c1f4;
	text-align: center;
}

.modal-close {
	font-size: 20px;
	cursor: pointer;

	color: #6d6e70;
}
.modal-text {
	font-size: 18px;
	padding: 5px 0;
}
.modal-text.company {
	padding-top: 10px;
}
.modal-body {
	display: flex;
	position: relative;
	padding: 10px;
}
.modal-body.discounts{
	display: block;
}
.modal-container {
	padding: 10px;
	max-height: 360px;
	overflow: scroll;
}
.modal-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 40%;
	color: #6d6e70;
}
.modal-input {
	border: 1px #35c1f4 solid;
	border-radius: 3px;
	padding: 5px 5px;
	margin: 10px 20px;
	font-size: 14px;
	cursor: pointer;
}
.modal-info {
	display: grid;
	width: 100%;
	text-align: center;
}
.modal-info-header {
	width: 100%;
	font-size: 18px;
	margin-bottom: 10px;
	text-align: center;
}
.modal-info-email {
	width: 100%;
}
.modal-list {
	border: 1px solid #6d6e70;
}
.modal-list th {
	border-left: 1px solid #6d6e70;
	border-right: 1px solid #6d6e70;
	padding: 5px 0;
}
.emails-list {
	text-align: center;
}
.emails-list td {
	padding: 5px 0;
}
.modal-footer {
	text-align: center;
	padding: 20px 10px;
	border-top: 1px solid #eee;
}
.modal-footer button {
	cursor: pointer;
	text-decoration: none;
	color: #ffffff;
	padding: 10px 40px;
	background: #35c1f4;
	border-radius: 3px;
	border: 2px #3477b5e6 solid;
	transition: 0.3s linear;
}
.modal-footer button.send {
	background: #34b57b;
	border: 2px #34b57b solid;
}
.custom__elem {
	width: 600px;
	padding: 10px;
}
.custom__elem__inputs {
	display: flex;
}
.custom__elem__text {
	padding: 10px;
}
.custom__elem__input {
	width: 85%;
	padding: 5px 10px;
	margin: 5px;
}
.handling__add__items {
	padding: 10px;
}
#list {
	margin: 0 auto;
	padding: 10px;
	border-collapse: collapse;
	width: 100%;
}

.list__li {
	border: 1px solid #808080;
}
.handling__items__wrap {
	display: flex;
}
.list__of__inventory {
	height: 400px;

	border: 1px solid #808080;
	overflow: scroll;
}
.inventory-img {
	width: 40px;
	height: 40px;
	margin: 0 10px 0 15px;
}
.vert__align {
	border-right: 1px solid #808080;
	vertical-align: middle;
}
.not__work {
	border: 1px solid #ff0000;
	margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
	.vmodal.open .modal-window {
		width: 100%;
	}
}
@media screen and (max-width: 400px) {
	.vmodal.open .modal-window {
		width: 365px;
	}
	.modal-title {
		font-size: 26px;
	}
}
@media screen and (max-width: 365px) {
	.vmodal.open .modal-window {
		width: 315px;
	}
	.modal-title {
		font-size: 22px;
	}
}

.changes-list{
	text-align: start;
	padding-inline-start: 10px;
}
.discounts .modal-info{
	border-bottom: 1px dotted #626262;
}
.discounts .modal-info:last-child{
	border-bottom: none;
}
.discount-block{
	display: grid;
	grid-template-columns: 350px 175px 30px;
	align-items: center;
}
.discount-block:last-child{
	border-bottom: none;
}
.addAdditional,.addDiscount{
	cursor: pointer;
	height: 28px;
	font-size: 18px;
	border: none;
	border-radius: 4px;
}
.addAdditional:active,.addDiscount:active {
	background-color: rgb(186, 186, 186);
	border: 1px solid #3477b5e6;
}
