:root {
	--red: rgb(227, 6, 19);
	--black: #1d1d1b;
	/*--max-form-width: 300px;*/
	--max-form-width: 320px;
}

.new-btn-block {
	display: block;
}
.new-btn-block a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;

	background-color: var(--red);
	border-radius: 50px;
	padding: 25px 20px;
	min-height: 80px;
	min-width: 230px;
}
.new-btn-block a + a {
	margin-top: 20px;
}

/*.page-contact-new {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 140px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: grey;
}*/
.apply-form {
	max-width: var(--max-form-width);
	font-size: 16px;
    line-height: 1.5em;
    font-weight: 500;
}
.apply-form *::placeholder {
	font-size: .9em
}
.apply-form .wpcf7-form-control-wrap {
	width: 100%;
}
.apply-form .wpcf7-response-output {
	color: var(--black) !important;
	border-color: var(--red) !important;
}
.apply-form .wpcf7-not-valid-tip {
	color: var(--red);
	font-weight: 700;
	opacity: .7;
}
.apply-form label {
	color: var(--black);
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
}

.apply-form label.future-work {
	/*display: flex;*/
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}
.apply-form label p {
	flex: 0 1 auto;
	margin-right: 15px;
    font-weight: bold;
}
.apply-form label.future-work::after {
	flex: 0 0 120px;
}

.apply-form input,
.apply-form select {
	flex: 0 0 100%;
	max-width: var(--max-form-width);
	width: 100%;
	margin-top: 5px;

	border: 1px solid var(--black);
}

.apply-form input,
.apply-form select {
	color: var(--black);
}
.apply-form select {
	color: rgba(29,29,27,.7);
}
.apply-form input[type="file"] {
	display: none;
}
.apply-form label[for^="file-"] {
	cursor: pointer;
}
/*.apply-form input[type="file"] + label[for^="file-"]:after {*/
.apply-form span + label[for^="file-"]:after {
	content: 'Choose file';
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 30px;
	background-color: #fff;
	border: 1px solid var(--black);
}
/*label.future-work,*/
.future-work + span.wpcf7-form-control-wrap {
	display: none;
}
.future-work.show + span.wpcf7-form-control-wrap {
	display: block;
}

.apply-form .wpcf7-submit {
	padding: 5px 30px;
	margin-top: 15px;
	cursor: pointer;
}
.file-name + .file-name {
	margin-left: 10px;
}

.file-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/*.file-box > span {
	display: block;
}*/

.remove-file {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 15px;
	height: 15px;
	cursor: pointer;
}
.remove-file::before,
.remove-file::after {
	content: '';
	position: absolute;
	width: 15px;
	height: 2px;
	background-color: grey;
}
.remove-file::before {
	transform: rotate(-45deg);
}
.remove-file::after {
	transform: rotate(45deg);
}