input[type=text] {
    background-color: rgba(93,171,196,0.15);
    border: none;
	border-bottom: 2px solid #5dabc4;
	border-left: 2px solid #5dabc4;
	width: 100%;
	color: #333333;
	display: inline-block;
	margin: 0 0 20px 0;
	padding: 15px;
	font-size: 100%;
}

textarea {
    background-color: rgba(93,171,196,0.15);
    border: none;
	border-bottom: 2px solid #5dabc4;
	border-left: 2px solid #5dabc4;
	width: 100%;
	color: #333333;
	display: inline-block;
	padding: 15px;
	font-size: 100%;
}

input[type=file] {
    display: block;
}

.inputfile {
	width: auto;
	height: auto;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    color: #ffffff;
    background: #a8b4b6;
    padding: 25px 25px 20px 25px;
    border: solid #5dabc4 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s!important;
    position: relative;
	z-index: 36;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.07);
    width: 40%;
    display: inline-block;
}

.inputfile + label p {
	padding-top: 10px;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background: rgba(24,125,173,1);
    color: #ffffff;
	box-shadow: 0px 1px 6px rgba(0,0,0,0.15);
}

.inputfile + label {
	cursor: pointer; /* "hand" cursor */
    min-height: auto;
}

.inputfile:focus + label {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label:before {
    content: url("../images/svgs/plus_icon.svg");
    display: inline-block;
    width: 45px;
    height: 45px;
	opacity: 0.5;
    padding: 0;
    margin: 0;
    transition: all .5s ease;
}



::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #5dabc4;
	opacity: 1;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #5dabc4;
	opacity: 1;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #5dabc4;
	opacity: 1;
}

:-moz-placeholder { /* Firefox 18- */
    color: #5dabc4;
	opacity: 1;
}
	
#schedule {
    width: 100%;
	max-width: 1360px;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:not(:disabled) ~ label {
  cursor: pointer;
}

input[type="radio"]:disabled ~ label {
  color: #1c75bc;
  border-color: #1c75bc;
  box-shadow: none;
}

label {
  display: block;
  color: white;	
  border-radius: 2px;
  text-align: center;
  position: relative;
  transition: all 0.5s ease;
	min-height: 80px;
    font-weight: inherit!important;
}

label:hover {
  transition: all 0.5s ease;
}

input[type="radio"]:checked + label {
  background: #333333;
  color: white;
}

input[type="radio"]:checked + label::after {
  color: #ffffff;
    font-family: FontAwesome;
    border: 2px solid #f38343;
    content: "\f00c";
    font-size: 13px;
    text-transform: uppercase;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
    width: 30px;
    line-height: 27px;
    text-align: center;
    border-radius: 50%;
    background: #e06721;
    box-shadow: 0px 2px 5px -2px rgb(0 0 0 / 25%);
}

.alert {
	background: #333333;
	width: 100%;
	color: #f38343;
	font-size: 100%;
	border: none;
	border: 2px solid #f38343;
	margin: auto;
	padding: 10px;
	border-radius: 0!important;
}