.drop-zone {
	max-width: 550px;
    height: 230px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 4px dashed #465300;
    border-radius: 10px;
}

.drop-zone--over {
	border-style: solid;
}

.drop-zone__input {
	display: none;
}

.drop-zone__thumb {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	background-color: #cccccc;
	background-size: cover;
	position: relative;
}

.drop-zone__thumb::after {
	content: attr(data-label);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 5px 0;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.75);
	font-size: 14px;
	text-align: center;
}

.button_modal {
	display: flex;
	justify-content: center;
	margin-top: 25px;
}

.button_modal_submit{
	background: #c16005;
    color: #fff;
    border: 0;
    padding: 15px;
    width: 43%;
    border-radius: 5px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
}

/* Hover */
.button_modal_submit:hover {
	background: #465300;
}

.modal_button{
	width: 165px;
    border-radius: 4px;
    padding: 24px;
    background: #c16005;
    border: 0;
    height: 61px;
    top: 158px;
    margin-top: 27px;
    margin-left: 50px;

}
.modal_button_2{
	width: 165px;
    border-radius: 4px;
    padding: 24px;
    background: #c16005;
    border: 0;
    height: 61px;
    top: 158px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
