
/* CSS3 Loader
----------------------------------------------------------------*/
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 99;
	overflow: hidden;
	display: none;
}

#loader .loader {
	border-radius: 50%;
	width: 6em;
	height: 6em;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2.5em 0 0 -3em;
  	font-size: 10px;
  	position: relative;
  	text-indent: -9999em;
  	border-top: .6em solid rgba(255, 255, 255, 0.2);
  	border-right: .6em solid rgba(255, 255, 255, 0.2);
  	border-bottom: .6em solid rgba(255, 255, 255, 0.2);
  	border-left: .6em solid #ffffff;
  	-webkit-animation: loader .8s infinite linear;
  	-moz-animation: loader .8s infinite linear;
  	animation: loader .8s infinite linear;
}

#loader .loader,
#loader .loader:after {
  border-radius: 50%;
  width: 6em;
  height: 6em;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@-moz-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

.products {
  background: #fff;
  margin: 5px -26px;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

@media screen and (max-width: 991px) {
  .products {
    margin: 5px -18px;
  }
}

.row-l-0 {
  margin-left: 0;
}

.products .control-label {
  text-align: left !important;
}

.product-item {
  border-bottom: 1px dotted #f1f1f1;
}

.product-item:last-child {
  border-color: transparent;
}

.title_color_hex {
  color: #fff;
  display: inline-block;
  width: 100%;
  margin-left: -2px;
}

.title_color_hex span {
    padding: 5px 10px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: block;
}

.title_color_hex div:first-child {
    padding-right: 0;
}

.title_color_hex div:first-child span {
    margin-right: 15px;
    text-align: center;
}

.title_color_hex div:last-child {
    padding-left: 0;
}


.pagination .first,
.pagination .last {
  display: none;
}

.bottom-fixed-btns {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  -webkit-opacity: .4;
   -khtml-opacity: .4;
     -moz-opacity: .4;
          opacity: .4;
  -webkit-transition: all .2s;
     -moz-transition: all .2s;
       -o-transition: all .2s;
          transition: all .2s;
}

.bottom-fixed-btns:hover {
  -webkit-opacity: 1;
   -khtml-opacity: 1;
     -moz-opacity: 1;
          opacity: 1;
}

.text-grey {
  color: #777;
}

.fileinput_ui {
  /*margin-top: -5px;*/
}

.vertical-text {
  height: 30px;
  line-height: 30px
}

.form-control-select {
    line-height: 22px !important;
}