/*
* D-TECT
* Version: 1
*/


/* form */
.form-control {
	color: #555555;
	font-size: 15px;
	font-weight: 400;
	height:1%;
	box-shadow: none;
	border: 1px solid #ccc;
	border-left-color: transparent !important;
	border-right-color: transparent !important;
	border-top-color: transparent !important;
	border-bottom-color: solid 1px #ccc !important;
	border-bottom-style:dashed;
	padding:15px 0 8px 0;
	background: #f8f8f8;
	outline:none !important;
}

.form-control:focus {
	outline:none !important;
	border-left-color: transparent !important;
	border-right-color: transparent !important;
	border-top-color: transparent !important;
	border-bottom-color: solid 1px #bbb !important;
	box-shadow: none !important;
}

.form-control::-moz-placeholder {
	color: #555555;
	opacity: 1;
}
.form-control:-ms-input-placeholder {
	color: #555555;
}
.form-control::-webkit-input-placeholder {
	color: #555555;
}

input:-ms-input-placeholder {
    color: #555555;
}

.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}

.control-group {
    margin-bottom: 0 !important;
}

.alert-success {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #555555;
  padding-left:0 !important;
  padding-right:0 !important;
  padding-bottom:0 !important;
}

.alert-danger {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #555555;
  padding-left:0 !important;
  padding-right:0 !important;
  padding-bottom:0 !important;
}

.close {
  float: right;
  font-size: 26px;
  font-weight: normal !important;
  line-height: 1;
  color: #555555 !important;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
}
.close:hover,
.close:focus {
  color: #888888 !important;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=100);
  opacity: 1;
}

button:focus {outline:0 !important;}

.topfmfield {
	display:none;
}

.help-block li {
  color: #ec6707;
  list-style:none;
  margin-left:-40px;
  margin-bottom: 10px;
  margin-top:0;
  font-size:14px;
}

.help-block li:before {
  content: '\f176' /*fontawesome char code inside the ''*/;
  font-family: FontAwesome; /* or whatever */
  font-size:18px;
  display: inline-block;
  color:#ec6707;
  width: 1em; /*same as padding-left set on li*/

}

/* modal */
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .1);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .1);
}

.modal-header {
  padding: 15px 30px;
  border-bottom: 1px solid #e5e5e5;
  background:#21417a;
}

.modal-header .close {
  float: right;
  margin-top:0;
  font-size:36px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300 !important;
  color:#ffffff !important;
}

.modal-title {
	position: relative;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600 !important;
	color:#ffffff;
	font-size:18px;
	letter-spacing:1px;
	line-height: 34px !important;
}

.modal-header .intro-heading p {
	color:#ffffff;	
}


.modal-body {
  position: relative;
  padding: 15px 30px 5px 30px;
  background:#f8f8f8;
}

.modal-footer {
  padding: 0 30px 15px 30px;
  text-align: right;
  border-top: transparent;
  background:#f8f8f8;
}

@media (max-width: 340px) {
.modal-title {
	padding: 0 0 0 0;
}
.modal-title:before {
	content: ' ';
	width: 0;
	position: absolute;
	border-width: 1px;
	border-color: #ffffff;
	top: 17px;
	left:0;
	border-bottom-style: solid;
}
}

