@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('/assets/libraries/bootstrap/fonts/glyphicons-halflings-regular.eot');
  src: url('/assets/libraries/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/assets/libraries/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('/assets/libraries/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/assets/libraries/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/assets/libraries/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.mt-0 { margin-top: 0px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-0 { margin-bottom: 0px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.ml-0 { margin-left: 0px; }
.ml-8 { margin-left: 8px; }
.ml-16 { margin-left: 16px; }
.ml-24 { margin-left: 24px; }
.ml-32 { margin-left: 32px; }
.ml-48 { margin-left: 48px; }
.ml-64 { margin-left: 64px; }
.mr-0 { margin-right: 0px; }
.mr-8 { margin-right: 8px; }
.mr-16 { margin-right: 16px; }
.mr-24 { margin-right: 24px; }
.mr-32 { margin-right: 32px; }
.mr-48 { margin-right: 48px; }
.mr-64 { margin-right: 64px; }

.no-padding {
	padding: 0;
}

.vertical-align {
    display: flex;
    align-items: center;
}
.vertical-align.flex-end {
	justify-content: flex-end;
}
.vertical-align.flex-center {
	justify-content: center;
}

.pointer { cursor: pointer; }

.text-light {
	font-weight: 100;
}

.text-indented {
	text-indent: 16px;
}

.text-white {
	color: white;
}
.text-orange {
	color: #dd7400;
}
a.text-orange:hover {
	color: #b05b00;
}
.text-red {
	color: #fc5b62;
}

.btn-orange {
    background-color: #ee7d01;
    color: white;
}
.btn-orange:hover, .btn-orange:focus, .btn-orange.focus, .btn-orange:active, .btn-orange.active, .open > .dropdown-toggle.btn-orange {
	color: white;
	background: #cc6e0a;
}
.btn-black {
    background-color: black;
    color: white;
}
.btn-black:hover, .btn-black:focus, .btn-black.focus, .btn-black:active, .btn-black.active, .open > .dropdown-toggle.btn-black {
	color: white;
	background: #222222;
}
.btn-red {
    background-color: #973335;
    color: white;
    border-bottom: 1px solid #973335;
}
.btn-red:hover, .btn-red:focus, .btn-red.focus, .btn-red:active, .btn-red.active, .open > .dropdown-toggle.btn-red {
	background-color: #b86163;
	color: white;
    border: 1px solid #b86163;
}
.btn-white {
    background-color: white;
    color: #fc5b62;
    border: 1px solid #fc5b62;
}
.btn-white:hover, .btn-white:focus, .btn-white.focus, .btn-white:active, .btn-white.active, .open > .dropdown-toggle.btn-white {
	background-color: #fc5b62;
	color: white;
}
.btn-transparent {
    background-color: transparent;
    color: #fc5b62;
    border: 1px solid #fc5b62;
}
.btn-transparent:hover, .btn-transparent:focus, .btn-transparent.focus, .btn-transparent:active, .btn-transparent.active, .open > .dropdown-toggle.btn-transparent {
	background-color: #fc5b62;
	color: white;
}

.alert-orange {
    background-color: #ee7d01;
    color: white;
}

.alert-black {
    background-color: black;
    color: white;
}

.form-group .control-label:after {
	content: ":";
}
.form-group .required.control-label:after {
	content:"*:";
}
textarea { resize:none; }

/* Borders	*/
.horizontal-separator {
	background-image: url('../img/separator_horizontal.png');
	background-repeat: repeat-x;
	background-position: top center;
    float: left;
    height: 2px;
    width: 100%;
}
.light-horizontal-separator {
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #3e4243;
}
.light-vertical-separator {
	border-left: 1px solid #ececec;
}
.underline-border {
	border-bottom: 1px solid;
}

/**
*
*	Glyphicons effects (rotate, flip & animate)
*
*/
.glyphicon-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.glyphicon-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.glyphicon-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.glyphicon-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.glyphicon-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.glyphicon-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}


