input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

input[type="number"]:hover,
input[type="number"]:focus {
	-moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.black {
    color: #000;
}

.form table {
	width: 100%;
	display: inline-block;
	margin-bottom: 45px;
}

.form table.table-small-margin {
	margin-bottom: 10px;
}

.form table tbody {
	display: block;
	width: 100%;
}

.form table td {
	padding: 5px 0;
    border: none;
    font-weight: normal;

	font-family: "Roboto", sans-serif;
	line-height: calc(23 / 14);
	font-size: 14px;
    text-align: left;
	vertical-align: top;
	color: #000;
}

.form table td input[type="text"], .form table td input[type="number"], .form table td input[type="tel"], .form table td input[type="email"], .form table td input[type="date"], .form table td textarea, .form table td input[type="text"]::placeholder, .form table td input[type="number"]::placeholder, .form table td input[type="tel"]::placeholder, .form table td input[type="email"]::placeholder, .form table td input[type="date"]::placeholder {
	display: block;
	width: 300px;
	height: auto;
	
	padding: 0px 5px;

    border: none;
    border-bottom: 1px dashed #ccc;
	outline: none;
	box-sizing: border-box;

	background-color: #f6f6f6;
    background-image: none;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

    font-size: 14px;
    line-height: calc(23 / 14);
    color: #9f9f9f;
}

.form table td input[type="text"]:focus, .form table td input[type="number"]:focus, .form table td input[type="tel"]:focus, .form table td input[type="email"]:focus, .form table td input[type="date"]:focus, .form table td textarea:focus {
	border-color: #fe7d14;
	box-shadow: none;
    outline: 0 none;
}

.form table td .row > span:first-child {
	margin-left: 30px;
}

.form table td .sep {
	display: block;
	margin-bottom: 20px;
}

.form table td .row {
	display: flex;
	justify-content: end;
	width: 100%;
	height: auto;
}

.form table td .row.center {
	justify-content: center;
}

.form table td .units {
	margin-left: 10px;
	width: 130px;
	overflow: hidden;
	flex: 0 0 130px;
}

.form table td .modification {
	margin-right: 10px;
	white-space: nowrap;
}

.form table td .desc {
	margin-top: 5px;
}

.form table td .other {
    margin-top: 10px;
}

.form .messSub {
	text-align: center;
}

.form .messSub input {
	background: #90232a;
    display: block;
    width: 200px;
    margin: 0 auto;
    color: #fff;
    border: none;
    padding: 10px 0;
	transition: all 0.2s ease;
}

.form .messSub input:hover {
	background: #560319;
}

.form h4 {
	font-size: 16px;
	line-height: calc(22 / 16);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #1e1d24;
	font-style: normal;
	margin: 20px 0 5px;
	text-align: center;
}

.form h4.title {
	font-weight: 700;
	font-size: 18px;
	line-height: calc(26 / 18);
	text-transform: uppercase;
}

.form h4.margin {
	margin-bottom: 20px;
}

.form table td .radio, .form table td .checkbox {
	display: flex;
	flex-direction: column;
	align-items: end;
	width: 100%;
}

.form table td .radio, .form table td .checkbox {
	margin: -3px 0;
}

.form table td .radio > span, .form table td .checkbox > span {
	width: 100%;
	margin: 3px 0;
}

.form table td .radio > span > label, .form table td .checkbox > span > label {
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 100%;
}

.form table td .radio > span > label > input, .form table td .checkbox > span > label > input {
	display: none;
}

.radio-icon {
	display: block;
	position: relative;

	flex: 0 0 23px;

	width: 23px;
	height: 23px;

	border-radius: 50%;
	border: 1px solid #ccc;

	cursor: pointer;
	margin-left: 10px;
}

.radio-icon.checked::after {
	content: "";

	display: block;

	width: 6px;
	height: 6px;

	border-radius: 50%;
	
	position: absolute;
    
	left: 50%;
    top: 50%;

	background: #1e1d24;

    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.checkbox-icon {
	display: block;
	position: relative;
	
	flex: 0 0 23px;

	width: 23px;
	height: 23px;

	border: 1px solid #ccc;

	cursor: pointer;
	margin-left: 10px;
}

.checkbox-icon.checked::after {
	content: "\0041";
    display: block;
    position: absolute;

    font-family: 'Glyphter';
	font-size: 20px;

    width: 100%;
    height: 100%;

    top: 30%;
    left: 55%;

    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.content-row {
	display: flex;
	justify-content: end;
	height: auto;
	width: 100%;
}

@media (max-width: 1170px) {
	.form table td input[type="text"], .form table td input[type="number"], .form table td input[type="tel"], .form table td input[type="email"], .form table td input[type="date"], .form table td textarea, .form table td input[type="text"]::placeholder, .form table td input[type="number"]::placeholder, .form table td input[type="tel"]::placeholder, .form table td input[type="email"]::placeholder, .form table td input[type="date"]::placeholder {
		width: 200px;
	}

	.form table td .row-checkbox .content-row > span:first-child, .form table td .row-radio .content-row > span:first-child {
		width: 100%;
	}

	.form table td textarea {
		height: 200px;
	}

	.form table {
		margin-bottom: 40px;
	}

	.form table td .row > span:first-child {
		margin-left: 25px;
	}

	.form h4 {
		font-size: 14px;
	}
	
	.form h4.title {
		font-size: 16px;
	}
}

@media (max-width: 968px) {
	.form table td input[type="text"], .form table td input[type="number"], .form table td input[type="tel"], .form table td input[type="email"], .form table td input[type="date"], .form table td textarea, .form table td input[type="text"]::placeholder, .form table td input[type="number"]::placeholder, .form table td input[type="tel"]::placeholder, .form table td input[type="email"]::placeholder, .form table td input[type="date"]::placeholder {
		width: 170px;
		font-size: 13px;
	}

	.form table td textarea {
		height: 170px;
	}
	
	.form table td {
		font-size: 13px;
	}

	.form table td .units {
		width: 110px;
		flex: 0 0 110px;
	}

	.form table td .row {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}

	.form table td .checkbox, .form table td .radio {
		text-align: left;
	}

	.form table td .content-row {
		margin-left: 20px;
	}

	.form table td .modification {
		flex: 1 1 100%;
		margin-right: 0;
	}

	.form table {
		margin-bottom: 35px;
	}

	.form table td .sep {
		margin-bottom: 15px;
	}

	.form table td .row > span:first-child {
		margin-left: 20px;
	}

	.form h4.margin {
		margin-bottom: 15px;
	}
}

@media (max-width: 768px) {
	.form table td input[type="text"], .form table td input[type="number"], .form table td input[type="tel"], .form table td input[type="email"], .form table td input[type="date"], .form table td textarea, .form table td input[type="text"]::placeholder, .form table td input[type="number"]::placeholder, .form table td input[type="tel"]::placeholder, .form table td input[type="email"]::placeholder, .form table td input[type="date"]::placeholder {
		width: 150px;
	}

	.form table td textarea {
		height: 150px;
	}

	.form table td .content-row {
		margin-left: 15px;
	}

	.form table td .row > span:first-child {
		margin-left: 15px;
	}

	.form table {
		margin-bottom: 30px;
	}

	.form table td .row > span:first-child {
		margin-left: 15px;
	}
}

@media (max-width: 480px) {
	.form table td input[type="text"], .form table td input[type="number"], .form table td input[type="tel"], .form table td input[type="email"], .form table td input[type="date"], .form table td textarea, .form table td input[type="text"]::placeholder, .form table td input[type="number"]::placeholder, .form table td input[type="tel"]::placeholder, .form table td input[type="email"]::placeholder, .form table td input[type="date"]::placeholder {
		flex: 1 1 100%;
		font-size: 11px;
	}

	.wpcf7-form-control-wrap {
		width: 100%;
		display: flex;
	}

	.form table td textarea {
		height: 100px;
	}

	.form table td {
		font-size: 12px;
	}

	.form table td .modification {
		white-space: pre-wrap;
		margin-left: 10px;
	}

	.form table td .units {
		flex: 1 1 100%;
		margin-left: 0;
	}

	.form table td .row-checkbox .units, .form table td .row-radio .units {
		display: none;
	}

	.form table {
		margin-bottom: 25px;
	}

	.form table td .sep {
		margin-bottom: 10px;
	}

	.form table td .row > span:first-child {
		margin-left: 10px;
	}

	.form table td .content-row {
		flex-wrap: wrap;
		margin-left: 10px;
	}

	.form table td .row-checkbox .content-row, .form table td .row-radio .content-row {
		flex-wrap: nowrap;
	}

	.form h4.margin {
		margin-bottom: 10px;
	}

	.form h4 {
		font-size: 12px;
	}
	
	.form h4.title {
		font-size: 14px;
	}
}