.dw_modal {display: none;}
.dw_empty_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 10800;
 	background:rgba(0, 0, 0, 0.5);
}

.dw_empty_window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    z-index: 10900;
    padding: 20px;
    display: block;
    z-index: 10900;
}
.dw_modal_close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #ffffff;
    font-size: 35px;
    color: #2E2525;
    display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
}
.dw_modal_container{
	display: block;
    width: max-content;
    max-width: 80vw;
    height: max-content;
    max-height: 70vh;
	overflow-y: auto;
	overflow-x: hidden;
    padding: 0 15px;
    -ms-overflow-style: none;  /* IE 10+ */
    scrollbar-width: none; /* Firefox */
}
.dw_modal_container::-webkit-scrollbar { /* chrome based */
    width: 0px;  /* ширина scrollbar'a */
    background: transparent;  /* опционально */
}

.dw_modal h3 {
    display: block;
    padding: 0px;
    margin: 0 0 12x;
	text-align: center;
	font-size: 20px;
}
.dw_modal p {
    margin: 0 0 5px;
}
.dw_modal .form-group {
    margin-bottom: 10px;
}
.dw_modal__content{
	display: block;
	position: relative;
    padding: 5px 0;
}
.dw_modal__form{
	display: block;
	position: relative;
}
.dw_modal__form input{
    margin: 5px 0;
}

@media (min-width:768px) {
	.dw_modal_container{
		max-width: 600px;
	}
}

#product .form-group {
    margin-bottom: 0px;
    display: inline-block;
}
#product .form-group input , #product .form-group button {
	margin-bottom: 15px;
	float: left;
	width: max-content;
}
.dw_modal__form  button {
    display: inline-block;
    width: max-content;
    border-radius: 0;
    height: 43px;
    margin-top: -1px;
    margin-left: 15px;
    background: #89a3b2;
    border: none;
    color: #fff;
    outline: 0;
}
.dw_modal__form  button:hover {
    background: #f15514;
}
