.slider-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e2e2e2;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 5px;
}

.slider-item .icon-sort {
  cursor: all-scroll;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  margin-right: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 5px;
  margin-top: -10px;
  margin-left: -10px;
  margin-bottom: -10px;
  border-radius: 3px 0 0 3px;
}

.slider-item img {
  max-width: 60px;
  margin-right: 20px;
}

.slider-item .slider-item-desc {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}

/*slider positioner*/
.slider-positioner {
  display: table;
}
.slider-positioner .srow {
  display: table-row;
}
.slider-positioner .position {
  display: table-cell;
}
.slider-positioner .position label {
  display: block;
  margin: 0;
  font-weight: 400;
}
.slider-positioner .position input[type="radio"] {
  display: none;
}
.slider-positioner .position input[type="radio"] + .pos-box {
  width: 120px;
  height: 50px;
  cursor: pointer;
  background-color: #eee;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.slider-positioner .position input[type="radio"]:checked + .pos-box {
  background-color: #114979;
  border-color: #114979;
  color: #fff;
}

.login-box-body {
	position: relative;
}
.login-box-body .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom:0;
	z-index: 9999;
	background-color: rgba(0,0,0,0.7);
}
.login-box-body .overlay i {
	position: absolute;
	z-index: 99999;
	top: 50%;
	left: 50%;
}
/* Custom Checkbox and Radio Buttons */
.animated-checkbox input[type="checkbox"] {
  display: none;
}

.animated-checkbox input[type="checkbox"] + .label-text {
  cursor: pointer !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.animated-checkbox input[type="checkbox"] + .label-text:before {
  content: "\f096";
  font-family: "FontAwesome";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  width: 1em;
  display: inline-block;
  margin-right: 5px;
  vertical-align: -1px;
}

.animated-checkbox input[type="checkbox"]:checked + .label-text:before {
  content: "\f14a";
  color: #18578c;
  -webkit-animation: tick 180ms ease-in;
          animation: tick 180ms ease-in;
}

.animated-checkbox input[type="checkbox"]:disabled + .label-text {
  cursor: not-allowed !important;
}

.animated-checkbox input[type="checkbox"]:disabled + .label-text:before {
  content: "\f0c8";
  color: #ccc;
}

.animated-radio-button input[type="radio"] {
  display: none;
}

.animated-radio-button input[type="radio"] + .label-text {
  cursor: pointer !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.animated-radio-button input[type="radio"] + .label-text:before {
  content: "\f1db";
  font-family: "FontAwesome";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  width: 1em;
  display: inline-block;
  margin-right: 5px;
  vertical-align: -1px;
}

.animated-radio-button input[type="radio"]:checked + .label-text:before {
  content: "\f192";
  color: #18578c;
  -webkit-animation: tick 180ms ease-in;
          animation: tick 180ms ease-in;
}

.animated-radio-button input[type="radio"]:disabled + .label-text {
  cursor: not-allowed !important;
}

.animated-radio-button input[type="radio"]:disabled + .label-text:before {
  content: "\f111";
  color: #ccc;
}

@-webkit-keyframes tick {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  90% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes tick {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  90% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
