.box-modal {
	position: relative;
	width: 420px;
	padding: 15px;
	background: rgba(237, 237, 237, 1);;
	color: #818181;
	font-family: 'Montserrat', sans-serif;
	border-radius: 15px;
}
/*
.box-modal:after {
	content: '';
	position: absolute;
	background-image: url(../img/saw-modal.png);
	background-repeat: no-repeat;
	background-size: 400px 400px;
	width: 400px;
	height: 400px;
	top: 0;
	right: -116px;
	z-index: -1;
	 -webkit-animation-name: rotation;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotation;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -o-animation-name: rotation;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    animation-name: rotation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
*/
.box-modal_close {
	position: absolute;
	display: inline-block;
	right: 10px;
	top: 10px;
	cursor: pointer;
}

.box-modal_close i {
	font-size: 20px;
	color: #A8A8A8;
}

.box-modal_close i:hover {
	font-size: 20px;
	color: #E43F31;
}


.box-modal-title {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}

#order-form label {
	display: block;
	padding: 0;
	margin: 10px 0 3px 0;
}

#order-form label span {
	color: #E43F31;
}

#order-form input {
	width: 100%;
	padding: 4px 8px;
	border-radius: 6px;
	border: 0;
	background-color: #FFF;
}

#order-form textarea {
	width: 100%;
	height: 60px;
	padding: 4px 8px;
	border-radius: 6px;
	border: 0;
	background-color: #FFF;
	resize: none;
}

#message-success {
	display: none;
}

.order-btn {
	text-align: center;
	margin-top: 15px;
}

@-webkit-keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}
@-moz-keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}
@-o-keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}
@keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(720deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}

@media screen and (max-width: 768px) {
	.box-modal:after {
		display: none;
	}
}

@media screen and (max-width: 576px) {
	.box-modal {
		width: 100%;
	}
}