::-webkit-calendar-picker-indicator,
::-webkit-inner-spin-button,
::-webkit-outer-spin-button,
::-webkit-clear-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: none;
}

.button {
	display: inline-block;
	width: auto;
	padding: 9px 40px;
	background-color: #005787;
	border: 1px solid transparent;
	border-radius: 2px;
	color: #fff;
	cursor: pointer;
	font: 500 16px/1.25 Roboto, sans-serif;
	text-align: center;
	-webkit-transition: background-color 100ms, color 100ms, border-color 100ms;
	transition: background-color 100ms, color 100ms, border-color 100ms;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	vertical-align: middle;
	-moz-transition: background-color 100ms, color 100ms, border-color 100ms;
	-ms-transition: background-color 100ms, color 100ms, border-color 100ms;
	-o-transition: background-color 100ms, color 100ms, border-color 100ms;
}

.button:hover,
.button:focus {
	background-color: #033f60;
	outline: none;
}

.button.full {
	width: 100%;
	text-align: center;
}

.button.bright-blue {
	background-color: #0cbff2;
}
.button.bright-blue:hover,
.button.bright-blue:focus {
	background-color: #fff;
	color: #0cbff2;
}

.button.yellow {
	background-color: #f2a900;
}
.button.yellow:hover,
.button.yellow:focus {
	background-color: #d99800;
}

.button.white {
	background-color: #fff;
	color: #005787;
}
.button.white:hover,
.button.white:focus {
	background-color: #005787;
	color: #fff;
}

.button.outline {
	background-color: #fff;
	border: 1px solid #0cbff2;
	color: #0cbff2;
}
.button.outline:hover,
.button.outline:focus {
	background-color: #0cbff2;
	color: #fff;
}

.button.hollow {
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid #fff;
}
.button.hollow:focus,
.button.hollow:hover {
	background-color: rgba(255, 255, 255, 1);
	color: #0cbff2;
}

.button.alert,
.button.red,
.button.cancel {
	background-color: #c81616;
}

.button.shadow {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.button + .button {
	margin-left: 10px;
}

.media--std {
	overflow: auto;
}
.media--std .media__img {
	float: left;
	margin: 0 20px 0 0;
}
.media--std .media__body {
	overflow: auto;
}

label {
	display: block;
	color: #4a4a4a;
	font: 500 16px/1.25 Roboto, sans-serif;
	margin-bottom: 5px;
}
input,
textarea,
.input-container,
.select {
	display: inline-block;
	width: 100%;
	height: 40px;
	padding-top: 11px;
	padding-bottom: 11px;
	background-color: #f5f5f5;
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: right center;
	border-radius: 0;
	color: #666;
	font: 14px/1.286 Roboto, sans-serif;
	-webkit-transition: border-color 150ms;
	transition: border-color 150ms;
}
.select {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 40px;
}

select {
	border-radius: 0;
}

input,
textarea {
	padding: 0px 10px;
    border: 1px solid #e6e9eb;
}

.input-container {
	padding: 0;
	border: 1px solid #e6e9eb;
}

.input-container input,
.input-container select {
	background: none;
	border-width: 0px !important;
	width: 100%;
}

textarea {
	height: 132px;
	padding: 11px 10px;
	resize: none;
}

input[type="text"] {
	-webkit-transition: border-color 150ms;
	transition: border-color 150ms;
}

input:not(:disabled):hover,
input:not(:disabled):focus,
textarea:not(:disabled):hover,
textarea:not(:disabled):focus,
input.has-autocomplete-results {
	border: 1px solid #005786;
}

input.bright-blue:not(:disabled):hover,
input.bright-blue:not(:disabled):focus,
textarea.bright-blue:not(:disabled):hover,
textarea.bright-blue:not(:disabled):focus,
input.bright-blue.has-autocomplete-results {
	border: 1px solid #0BBFF1 !important;
}

.select {
	position: relative;
	/*background-image: url(../img/MT/interfaces/bg-select.svg);*/
}

.select:after {
	content: '';
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 30px;
	background: #005786 url(../img/MT/interfaces/bg-select-no-box.svg) no-repeat center;
	pointer-events: none;
}

.select select {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0px 40px 0px 10px;
	cursor: pointer;
	border: 1px solid #e6e9eb;
	-ms-appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: border-color 150ms;
	transition: border-color 150ms;
}

.select option {
	color: #000;
	background-color: #fff;
}

.select select::-ms-expand {
	display: none;
}

.textshadow .select select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #666; /* same as color */
}

.select select:not(:disabled):hover,
.select select:not(:disabled):focus {
	border: 1px solid #005786;
	outline: 0;
}

.select.bright-blue {
	/*background-image: url(../img/MT/interfaces/bg-select-light.svg);*/
}

.select.bright-blue:after {
	background-color: #0bbff1;
}

.select.bright-blue select:not(:disabled):hover,
.select.bright-blue select:not(:disabled):focus {
	border: 1px solid #0BBFF1;
}

input[type="date"],
input.date-style {
	line-height: 40px;
	background-image: url(../img/MT/interfaces/bg-date.svg);
	-webkit-appearance: textfield;-moz-appearance: textfield;appearance: textfield;
}

.date {
	display: inline-block;
	position: relative;
	height: 40px;
	width: 100%;
}

.date:after {
	content: '';
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 30px;
	background: #005786 url(../img/MT/interfaces/bg-date-no-box.svg) no-repeat center / 30px;
	pointer-events: none;
	z-index: 10;
}

.date.bright-blue:after {
	background-color: #0bbff1;
}

.date input {
	box-sizing: border-box;
	width: 100%;
	padding-right: 35px;
	background-image: none;
}

input[type="date"]:not(:disabled):focus,
input[type="date"]:not(:disabled):hover,
input.date-style:not(:disabled):focus,
input.date-style:not(:disabled):hover {
	border: 1px solid #0BBFF1 !important;
}

.checkboxes {
	padding-right: 0px;
	text-align: left;
	font-size: 0px;
}

.checkboxes .checkbox {
	display: inline-block;
	width: 25%;
	height: auto;
	text-align: left;
}

@media(min-width: 768px) {
	.checkboxes .checkbox {
		width: 20%;
	}
}

@media(min-width: 1025px) {
	.checkboxes .checkbox {
		width: 16.6%;
	}
}

input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 0;
	border: none;
	outline: none;
	vertical-align: middle;
	opacity: 0;
	display: none;
}

input[type="checkbox"] + label {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	padding: 6px 0 6px 20px;
	color: #666;
	font: 14px/1.286 Roboto, sans-serif;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: color 150ms;
	transition: color 150ms;
}

input[type="checkbox"] + label::after {
	content: ' ';
	position: absolute;
	top: 50%;
	left: 0px;
	width: 14px;
	height: 14px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 1px solid #666;
	text-align: center;
	font-size: 11px;
	line-height: 1;
	-webkit-transition: border-color 150ms;
	transition: border-color 150ms;
}

input[type="checkbox"]:not([disabled]):hover + label,
input[type="checkbox"]:not([disabled]):focus + label {
	color: #0cbff2;
}

input[type="checkbox"]:not([disabled]):hover + label::after,
input[type="checkbox"]:not([disabled]):focus + label::after,
input[type="checkbox"]:not([disabled]) + label:focus::after{
	border-color: #0cbff2;
}

input[type="checkbox"]:checked + label::after {
	content: '✔';
	border-color: #0cbff2;
	color: #fff;
	background-color: #0cbff2;
}

.no-opacity input[type="checkbox"] {
	width: 12px;
	height: 12px;
	border: 1px solid #4a4a4a;
	opacity: 1;
	display: inline;
}

.no-opacity input[type="checkbox"] + label::after {
	display: none;
}

.select.disabled select {
	cursor: default;
}

.radio {
	margin: 0px !important;
	padding: 0px 10px;
}

input[type="radio"] {
	display: inline-block;
	width: 14px;
	height: 14px;
	opacity: 0;
}

input[type="radio"] + label {
	display: inline-block;
	position: relative;
	color: #666;
	font: 14px/1.143 Roboto, sans-serif;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: color 150ms;
	transition: color 150ms;
}

input[type="radio"] + label::after {
	content: " ";
	position: absolute;
	top: 50%;
	left: -23px;
	width: 14px;
	height: 14px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 1px solid #666;
	border-radius: 50%;
	background: #fff;
	text-align: center;
	font-size: 20px;
	line-height: 10px;
	-webkit-transition: border-color 150ms;
	transition: border-color 150ms;
}

input[type="radio"]:not([disabled]):hover + label,
input[type="radio"]:not([disabled]):focus + label {
	color: #0cbff2;
}

input[type="radio"]:not([disabled]):hover + label::after,
input[type="radio"]:not([disabled]):focus + label::after,
input[type="radio"]:not([disabled]) + label:focus::after {
	border-color: #0cbff2;
}

input[type="radio"]:checked + label::after {
	border-width: 5px;
	border-color: #0cbff2;
}

.no-opacity input[type="radio"] + label::after {
	display: none;
}

input:not([type="checkbox"])[disabled],
.select.disabled,
input[type="checkbox"][disabled] + label {
	cursor: default;
	opacity: .5;
}

a.link {
	color: #005173;
	text-decoration: underline;
	cursor: pointer;
}

a.link.yellow {
	color: #f2a900;
}

.ui-datepicker {
	z-index: 100 !important;
}

@media (max-width: 767px) {

	.button {
		display: block;
		width: 100%;
		margin: 10px 0px;
	}

	.button:first-child {
		margin-top: 0px;
	}
/*
	.button:last-child {
		margin-bottom: 0px;
	}
*/
	.button + .button {
		margin-left: 0px;
	}

	.checkboxes .checkbox {
		width: 50%;
	}

}