/*bootstrap*/
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 2px;
  margin-top:10px;
  font-weight: bold;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color:#46558d;
  color: #fff;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-top:10px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #fff;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.btn-block {
  display: block;
}
.btn-block + .btn-block {
  margin-top: 5px;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-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;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
textarea {
  overflow: auto;
}

.response {background-color:green;}
input.error {border:2px solid red;}
label.error {color:red; margin-top:2px;}

.alert-success {background-color:darkseagreen; padding:20px; font-weight:bold;}
.alert-success .close {font-size:2em; color: darkgreen; float:right; margin-top:2px;}
.alert-success a:hover.close {text-decoration: none; text-shadow: 2,2,.2,black;}

.container-alignment{
	margin: 20px auto;
}
/* SMARTPHONES PORTRAIT */
@media only screen and (min-width: 300px) {
	.text-alignment{
		text-align:center;
	}
}
/* SMARTPHONES LANDSCAPE */
@media only screen and (min-width: 480px) {
	.text-alignment{
		text-align:center;
	}
}
/* TABLETS PORTRAIT */
@media only screen and (min-width: 768px) {
	.text-alignment{
		text-align:right;
	}
	
}
@media only screen and (max-width: 768px) {
	.bottom-space{
		margin-bottom:10px;
	}
}

/* TABLET LANDSCAPE / DESKTOP */
@media only screen and (min-width: 1024px) {
	.text-alignment{
		text-align:right;
	}
}