/* BODY */
body.gray {
  background: #fafafa;
}

/* DEPTH */
.z-1 {
  z-index: 100;
  position: relative;
}
.z-2 {
  z-index: 200;
  position: relative;
}

/* DEFAULT */
.clear {
  display: block;
  overflow: hidden;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-help {
  cursor: help;
  transition: opacity 0.3s;
}
.cursor-help:hover {
  opacity: 0.6;
}
.hr {
  border-color: #ddd;
}
a.hint-icon {
  color: #ccc;
  outline: none;
}
a.link {
  color: #304df0;
  font-weight: 500;
}

/* COLOR */
.highlight {
  display: inline-block;
  background-color: #f5ecbf;
  padding: 0 2px;
}
.lter {
  background-color: rgba(255, 255, 255, 0.035);
}
.dker {
  background-color: rgba(0, 0, 0, 0.035);
}
.light {
  background-color: #f8f8f8;
}
.white {
  background-color: #fff;
}
.dark-white {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fff;
}

/* DISPLAY */
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}

.w-100 {
  width: 100% !important;
}
.w-50 {
  width: 50% !important;
}
.w-25 {
  width: 25% !important;
}
.w-auto {
  width: auto !important;
}

.text-xs {
  font-size: 11px;
  line-height: 11px;
}
.text-sm {
  font-size: 13px;
  line-height: 13px;
}

.text-bold {
  font-weight: bold;
}

.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-top {
  vertical-align: text-top;
}
.text-bottom {
  vertical-align: text-bottom;
}
.text-ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
td.text-ellipsis {
  display: table-cell;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-shadow {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.text-dker {
  color: rgba(0, 0, 0, 0.4);
}

.nowrap {
  white-space: nowrap;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-scroll {
  overflow-x: auto;
}

.row {
  margin-left: -5px;
  margin-right: -5px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  padding-left: 5px;
  padding-right: 5px;
}

/* HOVE */
.visible-hover {
  opacity: 0;
  transition: 0.3s;
}
.visible-hover:hover {
  opacity: 1;
}

.visible-hover-item .visible-hover {
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
.visible-hover-item:hover .visible-hover {
  opacity: 1;
  pointer-events: auto;
}

/* V ALIGN */

.v-top {
  vertical-align: top !important;
}
.v-bottom {
  vertical-align: bottom !important;
}
.v-middle {
  vertical-align: middle !important;
}

/* POSTION */
.pos-relative {
  position: relative !important;
}
.pos-absolute {
  position: absolute !important;
}
.pos-inherit {
  position: inherit !important;
}

/* MARGIN */
.m-a {
  margin: 1rem !important;
}
.m-t {
  margin-top: 1rem !important;
}
.m-r {
  margin-right: 1rem !important;
}
.m-b {
  margin-bottom: 1rem !important;
}
.m-l {
  margin-left: 1rem !important;
}
.m-x {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.m-y {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.m-t-0 {
  margin-top: 0 !important;
}
.m-b-0 {
  margin-bottom: 0 !important;
}
.m-a-0 {
  margin: 0 !important;
}
.m-a-lg {
  margin: 3rem !important;
}
.m-t-lg {
  margin-top: 3rem !important;
}
.m-r-lg {
  margin-right: 3rem !important;
}
.m-b-lg {
  margin-bottom: 3rem !important;
}
.m-l-lg {
  margin-left: 3rem !important;
}
.m-x-lg {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.m-y-lg {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.m-a-md {
  margin: 1.5rem !important;
}
.m-t-md {
  margin-top: 1.5rem !important;
}
.m-r-md {
  margin-right: 1.5rem !important;
}
.m-b-md {
  margin-bottom: 1.5rem !important;
}
.m-l-md {
  margin-left: 1.5rem !important;
}
.m-x-md {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.m-y-md {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.m-a-sm {
  margin: 0.5rem !important;
}
.m-t-sm {
  margin-top: 0.5rem !important;
}
.m-r-sm {
  margin-right: 0.5rem !important;
}
.m-b-sm {
  margin-bottom: 0.5rem !important;
}
.m-l-sm {
  margin-left: 0.5rem !important;
}
.m-x-sm {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.m-y-sm {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.m-a-xs {
  margin: 0.25rem !important;
}
.m-t-xs {
  margin-top: 0.25rem !important;
}
.m-r-xs {
  margin-right: 0.25rem !important;
}
.m-b-xs {
  margin-bottom: 0.25rem !important;
}
.m-l-xs {
  margin-left: 0.25rem !important;
}
.m-x-xs {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.m-y-xs {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.margin {
  margin-bottom: 1.5rem;
}

/* PADDING */
.p-a {
  padding: 1rem !important;
}
.p-t {
  padding-top: 1rem !important;
}
.p-r {
  padding-right: 1rem !important;
}
.p-b {
  padding-bottom: 1rem !important;
}
.p-l {
  padding-left: 1rem !important;
}
.p-x {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.p-y {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.p-x-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.p-a-0 {
  padding: 0 !important;
}
.p-l-0 {
  padding-left: 0 !important;
}
.p-r-0 {
  padding-right: 0 !important;
}
.p-t-0 {
  padding-top: 0 !important;
}
.p-b-0 {
  padding-bottom: 0 !important;
}
.p-a-lg {
  padding: 3rem !important;
}
.p-t-lg {
  padding-top: 3rem !important;
}
.p-r-lg {
  padding-right: 3rem !important;
}
.p-b-lg {
  padding-bottom: 3rem !important;
}
.p-l-lg {
  padding-left: 3rem !important;
}
.p-x-lg {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.p-y-lg {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.p-a-md {
  padding: 1.5rem !important;
}
.p-t-md {
  padding-top: 1.5rem !important;
}
.p-r-md {
  padding-right: 1.5rem !important;
}
.p-b-md {
  padding-bottom: 1.5rem !important;
}
.p-l-md {
  padding-left: 1.5rem !important;
}
.p-x-md {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.p-y-md {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.p-a-sm {
  padding: 0.5rem !important;
}
.p-t-sm {
  padding-top: 0.5rem !important;
}
.p-r-sm {
  padding-right: 0.5rem !important;
}
.p-b-sm {
  padding-bottom: 0.5rem !important;
}
.p-l-sm {
  padding-left: 0.5rem !important;
}
.p-x-sm {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.p-y-sm {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.p-a-xs {
  padding: 0.25rem !important;
}
.p-t-xs {
  padding-top: 0.25rem !important;
}
.p-r-xs {
  padding-right: 0.25rem !important;
}
.p-b-xs {
  padding-bottom: 0.25rem !important;
}
.p-l-xs {
  padding-left: 0.25rem !important;
}
.p-x-xs {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.p-y-xs {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.padding {
  padding: 1.5rem 1.5rem;
}

@media (max-width: 991px) {
  .padding {
    padding: 1rem 1rem;
  }
  .margin {
    margin-bottom: 1rem;
  }
  .box,
  .box-color {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .padding {
    padding: 0.5rem 0.5rem;
  }
  .margin {
    margin-bottom: 0.5rem;
  }
  .box,
  .box-color {
    margin-bottom: 0.5rem;
  }
}

/* NEW STYLE CONTAINER */
@media (min-width: 768px) {
  .container-large {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container-large {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container-large {
    width: 1170px;
  }
}

/* BUTTON */
.btn {
  border-radius: 4px;
  font-weight: 400;
  text-shadow: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  line-height: 40px;
}
.btn-sm {
  font-size: 15px;
  line-height: 36px;
}
.btn-xs {
  font-size: 15px;
  line-height: 32px;
  padding-left: 10px;
  padding-right: 10px;
}
.btn-mini {
  font-size: 13px;
  line-height: 24px;
  padding-left: 5px;
  padding-right: 5px;
}
.btn-mini .text {
  font-size: 13px;
}
.btn-mini .material-icons.xs {
  margin-top: -2px;
}
.btn-shadow {
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.btn-default {
  background: #ebebeb;
  color: #5d5d5d;
}

.btn-primary,
.btn-primary:visited {
  background-color: #39c089;
  color: #fff;
  font-weight: 400;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #3fcc91;
}
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:active:hover {
  background-color: #39c089;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  background-color: #3fcc91;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: #f06464;
}

.btn-info,
.btn-info:visited {
  background-color: #00a7ff;
  font-weight: 400;
}
.btn-info:hover,
.btn-info:focus {
  background-color: #2594f0;
}
.btn-info:active,
.btn-info:active:focus,
.btn-info:active:hover {
  background-color: #1881d6;
}

.btn-default-outline {
  color: #666;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.btn-default-outline:active {
  background-color: #eee;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.btn-primary-outline {
  background: #fff;
  border: 1px solid #39c089;
}
.btn-primary-outline:active {
  background-color: #eee;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.btn-danger-outline {
  background: #fff;
  border: 1px solid #d9534f;
  color: #d9534f;
}
.btn-danger-outline:active {
  background-color: #eee;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.btn-info-outline {
  background: #fff;
  border: 1px solid #1f8ceb;
  color: #1f8ceb;
}
.btn-info-outline:active {
  background-color: #eee;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.btn-group
  > .btn:first-child:not(:last-child):not(.dropdown-toggle):not(.btn-radio):not(.btn-checkbox) {
  border-right: 0;
}
.btn-group .btn.active {
  background: #eee;
  box-shadow: none;
}
.btn-group .btn.btn-checkbox.active {
  background: #fff;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
}
.btn[disabled],
.btn-primary.disabled,
.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
  background: #eee;
  color: #999;
  border-color: transparent;
}

.btn-fluid {
  width: 100%;
  text-align: left;
}
.btn-fluid .caret {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -2px;
}

.btn-center {
  text-align: center;
}
.btn-back {
  padding-left: 30px;
  background-image: url(/img/icon_left.png);
  background-repeat: no-repeat;
  background-position: 6px center;
}
.btn-back:active {
  background-color: rgba(0, 0, 0, 0.05);
}
.btn .material-icons + .text {
  margin-left: 2px;
}
.btn-group.open .dropdown-toggle,
.btn-group .dropdown-toggle:active {
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.12);
}
.btn.btn-add {
  text-decoration: none;
  padding-left: 35px;
  background-repeat: no-repeat;
  background-position: 10px center;
}
.btn.btn-mini.btn-add {
  padding-left: 23px;
  background-position: 3px center;
}
.btn.btn-xs.btn-add {
  padding-left: 28px;
  background-position: 7px center;
}
.btn.btn-add,
.btn.btn-add:active {
  background-image: url(/img/icon_add_black.png);
}
.btn-info.btn-add,
.open > .dropdown-toggle.btn-info.btn-add,
.btn-info.btn-add:active,
.btn-primary.btn-add,
.open > .dropdown-toggle.btn-primary.btn-add,
.btn-primary.btn-add:active {
  background-image: url(/img/icon_add.png);
}
.btn-check {
  padding-left: 35px;
  background-repeat: no-repeat;
  background-position: 10px center;
}
.btn-check,
.btn-check:active {
  background-image: url(/img/icon_check_black.png);
}
.btn-check.btn-check-white,
.btn-check.btn-check-white:active {
  background-image: url(/img/icon_check.png);
}
.btn-flat {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  outline: none;
  border: 0;
  border-radius: 3px;
  padding: 6px;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-style: inherit;
  font-variant: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  height: auto;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
}
.btn-flat:not([disabled]):hover,
.btn-flat:not([disabled]):focus {
  background-color: rgba(158, 158, 158, 0.2);
}
.btn-flat[disabled] {
  color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
  cursor: not-allowed;
}
.btn-flat:focus {
  outline: none;
}
.btn-flat:hover {
  text-decoration: none;
}

/* INPUT GROUP */
.input-group {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.04);
}
.input-group .form-control,
.input-group .form-control:active,
.input-group .form-control:focus {
  background: #fff;
}
.input-group .form-control {
  height: 40px;
}
.input-group .form-control[type="number"] {
  padding-right: 5px;
}
.input-group .btn.b-r {
  border-right: 1px solid #f8f8f8;
  margin-right: 1px;
}
.input-group .input-group-addon {
  background: #fafafa;
  min-width: 40px;
  font-size: 13px;
  padding-left: 4px;
  padding-right: 4px;
}
.input-group-sm .form-control {
  height: 30px;
}

/* DROPDOWN */
.dropdown-menu {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
  z-index: 1002;
}
.dropdown-menu > li > a {
  cursor: pointer;
}

/* ALERT */
.alert {
  font-size: 13px;
  line-height: 21px; /*border-width:0; */
  border-radius: 5px;
  text-align: center;
}
.alert-default {
  color: #716600;
  background-color: #fffdeb;
  border-color: #c7b721;
}
.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #6fce84;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #d69299;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.single-alert {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 120px;
}
.single-alert h1 {
  font-weight: 100;
  font-size: 48px;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 60px;
}
.single-alert p {
  color: #666;
  font-size: 20px;
  margin-top: 0;
  line-height: 32px;
}
.single-alert a {
  display: inline-block;
  color: #fff;
  border-radius: 2px;
  background-color: #636363;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin: 20px 0 40px;
  text-align: center;
}
.single-alert span {
  color: #a27ee8;
  font-size: 11px;
}

/* BORDER */
.b-a {
  border: 1px solid rgba(120, 120, 120, 0.15);
}
.b-l {
  border-left: 1px solid rgba(120, 120, 120, 0.15);
}
.b-r {
  border-right: 1px solid rgba(120, 120, 120, 0.15);
}
.b-t {
  border-top: 1px solid rgba(120, 120, 120, 0.15);
}
.b-b {
  border-bottom: 1px solid rgba(120, 120, 120, 0.15);
}
.b-t-0 {
  border-top: 0 !important;
}
.b-b-0 {
  border-bottom: 0 !important;
}
.b-point {
  border-color: #ccc;
}

/* TOOLTIP */
.tooltip {
  font-size: 14px;
}

/* POPOVER */
.popover-content {
  font-size: 14px;
  color: #333;
}

/* EMPTY */
.empty-box {
  display: block;
  text-align: center;
  padding: 20px;
  font-size: 15px;
  color: #999;
  background: #fafafa;
  border: 1px solid #ddd;
  margin-top: 15px;
  margin-bottom: 30px;
  border-radius: 4px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
}
.empty-wrap {
  font-size: 14px;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #999;
}
.empty-wrap h2 {
  color: #666;
  margin-bottom: 20px;
}
.empty-wrap h2 .material-icons {
  font-size: 60px;
}

.box .empty-wrap {
  border-top: 1px solid #eee;
}
.box td .empty-wrap {
  border-top: 0;
}

/* IMAGE */
.favicon {
  width: 14px;
  height: 14px;
}
.img-full {
  width: 100%;
}

/* POS */
.up-1 {
  margin-top: -1px;
}
.up-2 {
  margin-top: -2px;
}

/* ICON */
.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.icon-file {
  background: url(/img/icon_file.png) no-repeat left center;
}
.icon-download {
  background: url(/img/icon_download.png) no-repeat left center;
}
.icon-hint {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/img/icon_hint.png) no-repeat center;
  margin-right: 2px;
  margin-top: -3px;
}

/* ICON / MATERIAL */
.material-icons {
  vertical-align: middle;
}
.material-icons.xs {
  font-size: 16px;
}
.material-icons.sm {
  font-size: 18px;
}
.material-icons.up {
  margin-top: -2px;
}
.material-icons.up-2 {
  margin-top: -4px;
}

/* HELP */
span.help {
  display: inline-block;
  margin-left: 5px;
  background: #000;
  color: #fff;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}

/* BREADCRUMBS */
ol.breadcrumb {
  background: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

/* MODAL */
.modal-header {
  padding: 18px 20px;
}
.modal-header h3 {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
}
.modal-header .close {
  margin-top: 2px;
}
.modal-title {
  display: inline-block;
  font-size: 16px;
}
.modal-sub-body {
  padding: 15px 20px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  background: #fafafa;
  text-align: center;
}
.modal-body {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 300;
}
.modal-body .hint {
  font-size: 13px;
  text-align: center;
  margin-top: 7px;
}
.modal-body input[type="text"] {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 5px 10px;
}
.modal-footer .btn {
  font-size: 16px;
  line-height: 34px;
  padding-left: 20px;
  padding-right: 20px;
}
.modal-footer .btn + .btn {
  margin-left: 10px;
}
.bootbox-form .form-control {
  height: 40px;
  padding: 10px 14px;
}

/** BOX */
.box,
.box-color {
  background-color: #fff;
  position: relative;
  margin-bottom: 1.5rem;
}
.box-transparent {
  background-color: transparent;
}
.box-header {
  position: relative;
  padding: 1rem 0.7rem;
}
.box-header h2,
.box-header h3,
.box-header h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
}
.box-header h3 {
  font-size: 16px;
}
.box-header h4 {
  font-size: 15px;
}
.box-header h5 {
  font-weight: 500;
  line-height: 24px;
}
.box-header small {
  display: block;
  margin-top: 4px;
  opacity: 0.6;
}
.box-header .material-icons {
  margin-right: 4px;
}
.box-header .material-icons:last-child {
  margin-right: 0;
}
.box-body {
  padding: 1rem;
}
.box-footer {
  padding: 1rem;
}
.box-divider {
  border-bottom: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0 16px;
  height: 0;
}
.box-tool {
  position: absolute;
  right: 16px;
  top: 12px;
}
.box-tool.left {
  left: 16px;
  right: auto;
}
.box-tool .sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #eee;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 10px;
}
.box-tool a {
  font-size: 13px;
}
.box-tool .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.box-tool .nav .nav-item {
  display: inline-block;
  margin-right: 15px;
}
.box-tool .nav .nav-item:last-child {
  margin-right: 0;
}
.box-tool .nav .nav-item.active {
  position: relative;
  font-weight: 500;
  color: #333;
}
.box-tool .nav .nav-item.active a {
  color: #333;
}
.box-tool .nav .nav-item.active:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  bottom: 0;
}
.box-tool .nav > li > a {
  padding: 0;
}
.box-tool .nav > li.active > a {
  background: transparent;
}
.box-tool .nav > li.active > a:after {
  height: 1px;
}
.box-tool .btn {
  /*margin-top:-6px;*/
}

.box-border,
.box-border .box,
.box-border .box-color {
  border: 1px solid #ccc;
}

.box-shadow,
.box-shadow .box,
.box-shadow .box-color {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.03), 0 1px 0 rgba(0, 0, 0, 0.03);
}

.box-shadow-z0,
.box-shadow-z0 .box,
.box-shadow-z0 .box-color {
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.15);
}

.box-shadow-z1,
.box-shadow-z1 .box,
.box-shadow-z1 .box-color {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

.box-shadow-z2,
.box-shadow-z2 .box,
.box-shadow-z2 .box-color {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

.box-shadow-z3,
.box-shadow-z3 .box,
.box-shadow-z3 .box-color {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

.box-shadow-z4,
.box-shadow-z4 .box,
.box-shadow-z4 .box-color {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

.box-radius-1x,
.box-radius-1x .box,
.box-radius-1x .box-color {
  border-radius: 2px;
}

.box-radius-2x,
.box-radius-2x .box,
.box-radius-2x .box-color {
  border-radius: 3px;
}

.box-radius-3x,
.box-radius-3x .box,
.box-radius-3x .box-color {
  border-radius: 4px;
}

.box .table {
  border-top: 1px solid #eee;
}
.box .table.b-b-1 {
  border-bottom: 1px solid #eee;
}
.box .table.b-point {
  border-color: inherit;
}

.box-body + .table {
  border-top: 0;
}

.box .box-header + .table {
  border-top: 0;
}
.box .table + .box-footer {
  margin-top: -20px;
}
/*.box .table:last-child { margin-bottom:0; }*/

/* BLOCK */
.block {
  position: relative;
}
.block.left {
  text-align: left;
}
.block.right {
  text-align: right;
}
.block .left {
  position: absolute;
  left: 0;
  top: 0;
}
.block .right {
  position: absolute;
  right: 0;
  top: 0;
}

/* ADDITION UI */
.step-menu-wrap {
}
.step-menu-wrap h2 {
  text-align: center;
  font-size: 24px;
  color: #000;
  margin: 0;
  margin-bottom: 26px;
}
.step-menu-wrap ul {
}
.step-menu-wrap ul li {
  display: block;
  float: left;
}
.step-menu-wrap ul li a {
  display: block;
}
.step-menu-wrap ul li a {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid #d5d5d5;
  background: #fff;
  text-align: center;
  font-size: 14px;
  color: #646464;
  line-height: 38px;
}
.step-menu-wrap ul li a:hover {
  text-decoration: none;
}
.step-menu-wrap ul li .number {
  display: inline-block;
}
.step-menu-wrap ul li .text {
  display: inline-block;
  margin-left: 5px;
}
.step-menu-wrap ul li:before {
  z-index: 0;
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #d5d5d5;
}
.step-menu-wrap ul li:first-child:before {
  left: 50%;
}
.step-menu-wrap ul li:last-child:before {
  right: 50%;
}
.step-menu-wrap ul.with-text li {
  width: auto;
}
.step-menu-wrap ul.with-text li {
  padding-left: 6px;
  padding-right: 6px;
}
.step-menu-wrap ul.with-text li a {
  width: auto;
  border-radius: 30px;
  padding-left: 10px;
  padding-right: 10px;
}
.step-menu-wrap ul.step-active-1 li a.step-1,
.step-menu-wrap ul.step-active-2 li a.step-2,
.step-menu-wrap ul.step-active-3 li a.step-3,
.step-menu-wrap ul.step-active-4 li a.step-4,
.step-menu-wrap ul.step-active-5 li a.step-5,
.step-menu-wrap ul.step-active-6 li a.step-6 {
  border-color: #25a1f3;
  color: #25a1f3;
  font-weight: 500;
}
.step-menu-wrap ul.step-ok-1 li a.step-1,
.step-menu-wrap ul.step-ok-2 li a.step-2,
.step-menu-wrap ul.step-ok-3 li a.step-3,
.step-menu-wrap ul.step-ok-4 li a.step-4,
.step-menu-wrap ul.step-ok-5 li a.step-5,
.step-menu-wrap ul.step-ok-6 li a.step-6 {
  background-image: url(/img/icon_check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px 12px;
  border-color: #25a1f3;
  background-color: #25a1f3;
  color: #fff;
  text-indent: -1000px;
  overflow: hidden;
}
.step-menu-wrap ul.step-count-2 {
  width: 300px;
  height: 30px;
  margin: 0 auto;
  padding: 0;
}
.step-menu-wrap ul.step-count-2 li {
  width: 50%;
  text-align: center;
  position: relative;
}
.step-menu-wrap ul.step-count-3 {
  width: 400px;
  height: 30px;
  margin: 0 auto;
  padding: 0;
}
.step-menu-wrap ul.step-count-3 li {
  width: 33.3%;
  text-align: center;
  position: relative;
}
.step-menu-wrap ul.step-count-4 {
  width: 540px;
  height: 30px;
  margin: 0 auto;
  padding: 0;
}
.step-menu-wrap ul.step-count-4 li {
  width: 25%;
  text-align: center;
  position: relative;
}
.step-menu-wrap ul.step-count-5 {
  width: 640px;
  height: 30px;
  margin: 0 auto;
  padding: 0;
}
.step-menu-wrap ul.step-count-5 li {
  width: 20%;
  text-align: center;
  position: relative;
}

/* RADIO GROUP */
.radio-group a.btn {
  overflow: hidden;
}
.radio-group input {
  height: 1px;
  width: 1px;
  position: absolute;
  top: -20px;
}

/* SELECT GROUP */
.select-group {
  width: 100%;
}
.select-group .radio-group {
}
.select-group .radio-group .btn {
  cursor: pointer;
  text-align: center;
  position: relative;
  padding: 0;
  background: #fafafa;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  width: 100%;
  height: 100px;
  line-height: 100px;
  font-size: 18px;
  color: #95989a;
}
.select-group .radio-group .btn.active {
  border-color: #159af3;
  color: #159af3;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}

/* IMAGE CHECKBOX */
.image-checkbox {
  position: relative;
  overflow: hidden;
}
.image-checkbox .form-check-label {
  cursor: pointer;
}
.image-checkbox .form-check-input {
  position: absolute;
  left: -1000px;
}
.image-checkbox .form-check-input + span {
  display: inline-block;
  position: relative;
  line-height: 24px;
  color: #95989a;
  padding-left: 32px;
}
.image-checkbox .form-check-input + span:before {
  position: absolute;
  left: 0;
  top: 0;
  content: " ";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/img/ui_check.png) no-repeat center;
  transition: all ease-in-out 0.05s;
}
.image-checkbox .form-check-input:checked + span {
}
.image-checkbox .form-check-input:checked + span:before {
  background-image: url(/img/ui_checked.png);
}
.form-group.error .image-checkbox .form-check-input + span:before {
  border: 1px solid #e63138;
  border-radius: 2px;
  background: #fff;
  box-sizing: border-box;
}

.image-checkbox.sm .form-check-input + span {
  padding-left: 26px;
  font-size: 13px;
  line-height: 26px;
  font-weight: normal;
}
.image-checkbox.sm .form-check-input + span:before {
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: url(/img/ui_check.png) no-repeat center;
}
.image-checkbox.sm .form-check-input:checked + span:before {
  background-image: url(/img/ui_checked.png);
}

/* FORM */
form {
}
form fieldset {
  margin-top: 30px;
}
form legend {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  padding-top: 30px;
  border-bottom: 0;
  border-top: 1px solid #e6e6e6;
}
form h4.hint {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  margin-bottom: 16px;
  font-weight: 300;
  color: #95989a;
  margin-top: -10px;
}
form h4.hint strong {
  color: #eb0972;
  font-weight: 400;
}

/* FORM GROUP */
.form-group {
  margin-bottom: 1rem;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-group label.form-control-label {
  color: #333;
  font-size: 16px;
  margin: 0;
  margin-bottom: 10px;
  font-weight: normal;
}
.form-group label.form-control-label span.required {
  color: #aaa;
  display: inline-block;
  margin-left: 10px;
  font-weight: normal;
}
.form-group div.text {
  font-size: 16px;
}
.form-group .help-block {
  font-size: 13px;
  margin-top: 14px;
  color: #95989a;
}
.form-group .help-block strong {
  color: #eb0972;
  font-weight: 400;
}
.form-group .help-block.big {
  font-size: 16px;
  line-height: 24px;
}
.form-group .form-control.error {
  border: 1px solid #e63138;
  background: #fff0f0;
  color: #e63138;
}
.form-group.error label {
  color: #e63138;
}
.form-group label.error {
  color: #e63138;
  font-size: 13px;
  font-weight: normal;
  margin-top: 10px;
  padding-left: 30px;
  background: url(/img/icon_report.png) no-repeat left 3px;
  background-size: 22px 19px;
}
.form-group:last-child .help-block {
  margin-bottom: 0;
}

/* FORM CONTROL */
.form-control {
  border: 1px solid #f4f4f4;
  border-radius: 2px;
  background: #f4f4f4;
  box-shadow: none;
  outline: none;
  padding: 14px;
  font-size: 16px;
  height: 50px;
}
.form-control:focus,
.form-control:active {
  box-shadow: none;
  background: #f8f8f8;
  border-color: #dadada;
}
.form-control-sm {
  font-size: 15px;
  padding: 8px 10px;
  height: 40px;
}

input[type="text"].form-control {
  background: #eee;
}
textarea.form-control {
  resize: vertical;
}

/* LABEL */
label.is-live {
  border: 1px solid #cc0000;
  color: #cc0000;
  font-size: 10px;
  padding: 0px 6px;
  border-radius: 3px;
}

.label {
  display: inline-block;
  padding: 0.25em 0.5em;
  font-size: 75%;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  font-weight: normal;
  background-color: #868686;
  color: #fff;
  border-radius: 0.2rem;
}
.label-default {
  background: 777;
}
.label.no-bg {
  background-color: transparent;
  color: inherit;
}
.label.up {
  position: relative;
  top: -10px;
  min-width: 4px;
  min-height: 4px;
  display: inline-block;
}
.label-lg.up {
  top: -7px;
}
.label-md.up {
  top: -5px;
}
.label-lg {
  font-size: 1.33rem;
  padding: 5px 9px;
}
.label-md {
  font-size: 1rem;
  padding: 5px 9px;
}
.label-sm {
  font-size: 13px;
  padding: 3px 4px;
}
.label-xs {
  padding: 0.1em 0.25em;
}

/* Dot Label */
.dot { display:inline-block; width:10px; height:10px; border-radius: 100%; margin-right:4px; vertical-align: middle; }
.dot.blue { background-color:#159af3; }
.dot.red { background-color:#cc0000; }
.dot.green { background-color:#39c089; }
.dot.black { background-color:#333; }

/* TABLE */
table.table td.fix:not(.have-input) {
  opacity: 0.7;
  text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
  background: #eee;
}
table.table.table-header-background th {
  background: #f8f8f8;
}
table.table > tbody > tr > th,
table.table > tbody > tr > td {
  vertical-align: middle;
}
table.table span.point {
  font-weight: 500;
}
table.table p.emtpy {
  color: #999;
}
table.info-table {
  font-size: 15px;
}
table.info-table:last-child {
  margin-bottom: 0;
}
table.info-table > thead > tr > th,
table.info-table > tbody > tr > th,
table.info-table > tfoot > tr > th,
table.info-table > thead > tr > td,
table.info-table > tbody > tr > td,
table.info-table > tfoot > tr > td {
  padding: 12px 0;
  border-color: #eee;
}
table.info-table > tbody > tr.line {
  height: 2px;
  background: #eee;
}
table tr td span.sep {
  color: #ccc;
  display: inline-block;
}
table tr td a.link {
  text-decoration: none;
  border-bottom: 1px solid #bbb;
}
table tr td a.link:hover {
  text-decoration: none;
  border-bottom-color: #666;
}
table tr td .buttons-wrap + .buttons-wrap {
  padding-top: 6px;
  border-top: 1px dotted #eee;
  margin-top: 6px;
}
table tr td .buttons-wrap .btn + .btn {
  margin-left: 5px;
}
table tr td.payment-type span {
  display:inline-block;
}
table tr td.payment-type span + span {
  padding-left:18px;
  position:relative;
}
table tr td.payment-type span + span:before {
  content:'·';
  position:absolute;
  left:5px;
  top:50%;
  transform: translateY(-50%);
}

.box table.info-table > thead > tr > th,
.box table.info-table > tbody > tr > th,
.box table.info-table > tfoot > tr > th,
.box table.info-table > thead > tr > td,
.box table.info-table > tbody > tr > td,
.box table.info-table > tfoot > tr > td {
  padding: 12px;
  vertical-align: middle;
}

table.info-table > tbody > tr:first-child th,
table.info-table > tbody > tr:first-child td {
  border-color: transparent;
}
table.info-table > tbody > tr > th {
  width: 150px;
  font-weight: 400;
  color: #333;
}
table.info-table .thumbnail {
  max-width: 300px;
  margin-bottom: 0;
}
table.info-table img {
  max-width: 100%;
}
table.info-table .bootstrap-select + .btn {
  margin-left: 5px;
}
table.info-table > tbody > tr.line > th,
table.info-table > tbody > tr.line > td {
  padding: 0;
  border-top: 1px solid #eee;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th {
  padding-left: 16px;
  padding-right: 16px;
  border-color: #eee;
}
.table > thead > tr > th {
  padding: 10px 16px;
  border-bottom-width: 1px;
  border-color: #eee;
}
.table > tfoot > tr > td {
  background: #fafafa;
}

.table.table-sm > thead > tr > th,
.table.table-sm > thead > tr > td {
  font-weight: 350;
  color: #888;
}

.table.table-sm > thead > tr > th,
.table.table-sm > thead > tr > td,
.table.table-sm > tbody > tr > td,
.table.table-sm > tbody > tr > th,
.table.table-sm > tfoot > tr > td,
.table.table-sm > tfoot > tr > th {
  font-size: 12px;
  padding: 6px 12px;
}

.table-hover tr:hover,
.table tr.active,
.table td.active,
.table th.active {
  background-color: rgba(0, 0, 0, 0.03) !important;
}
.table tr.muted {
  background-color: #fafafa !important;
  color: #999;
}
.table tr td.is-empty {
  background-color: #fafafa;
  text-align: center;
  color: #999;
}
.table tr td.have-value {
  text-align: center;
  color: #333;
}
.table tr.muted .material-icons {
  color: #aaa;
}

.table.hover-effect tbody tr:hover td,
.table.hover-effect tbody tr:hover th {
  background: #fafafa;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

table.wrap th,
table.wrap td {
  white-space: nowrap;
}

/* FILTER */
.filter-wrap .btn-group {
  margin-right: 10px;
}
.filter-wrap .btn-filter {
  background: #ebebeb;
  font-size: 14px;
  line-height: 24px;
}
.filter-wrap .btn.btn-filter {
  height: 34px;
}
.filter-wrap .btn.btn-filter.btn-primary {
  background: #39c089;
}
.filter-wrap .btn-filter:hover {
  background: rgb(255, 255, 255);
}
.filter-wrap .btn-filter .bs-caret {
  display: inline-block;
  line-height: 34px;
}

/** LIST */
.list {
  padding-left: 0;
  padding-right: 0;
  border-radius: 3px;
}
.list.no-border {
  padding-top: 8px;
  padding-bottom: 8px;
}
.list-item {
  display: block;
  position: relative;
  padding: 12px 16px;
}
.list-item::after {
  content: "";
  display: table;
  clear: both;
}
.list-item:last-child .list-body:after {
  border: none;
}
.no-border .list-item {
  padding-top: 8px;
  padding-bottom: 8px;
}
.no-padding .list-item {
  padding-left: 0;
  padding-right: 0;
}
.list-left {
  float: left;
  padding-right: 1rem;
  padding-top: 4px;
}
.list-left + .list-body {
  margin-left: 56px;
}
.list-body h3 {
  font-size: 16px;
  margin: 0 0 3px 0;
  font-weight: normal;
}
.list-body:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid rgba(120, 130, 140, 0.065);
}
.inset .list-body:after {
  left: 72px;
}
.no-border .list-body:after {
  display: none;
}

/* PROGRESS */
.progress[value]::-webkit-progress-bar {
  background-color: rgba(0, 0, 0, 0.065);
}
.progress {
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.065);
}
.progress-bar {
  display: inline-block;
  float: left;
  height: 100%;
  border-radius: 0.25rem;
  text-align: center;
  background-color: #0074d9;
  font-size: 0.8em;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-xxs {
  height: 4px;
}
.progress-xs {
  height: 8px;
}
.progress-sm {
  height: 12px;
  font-size: 0.8em;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: -o-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .image-checkbox .form-check-input + span:before {
    background-image: url(/img/ui_check@2x.png);
    background-size: 24px 24px;
  }
  .image-checkbox .form-check-input:checked + span:before {
    background-image: url(/img/ui_checked@2x.png);
    background-size: 24px 24px;
  }
  .image-checkbox.sm .form-check-input + span:before {
    background-image: url(/img/ui_check@2x.png);
    background-size: 18px 18px;
  }
  .image-checkbox.sm .form-check-input:checked + span:before {
    background-image: url(/img/ui_checked@2x.png);
    background-size: 18px 18px;
  }

  .icon-hint {
    background: url(/img/icon_hint@2x.png) no-repeat center;
    background-size: 14px 14px;
  }
  .icon-download {
    background: url(/img/icon_download@2x.png) no-repeat center;
    background-size: contain;
  }

  .btn.btn-add,
  .btn.btn-add:active {
    background-image: url(/img/icon_add_black@2x.png);
    background-size: 18px 18px;
  }
  .btn.btn-info.btn-add,
  .btn.btn-info.btn-add:active,
  .btn.btn-primary.btn-add,
  .btn.btn-primary.btn-add:active {
    background-image: url(/img/icon_add@2x.png);
    background-size: 18px 18px;
  }
}

@media (max-width: 991px) {
  #popup-player {
    max-width: 100%;
    max-height: 316px;
  }

  .single-alert {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
  .single-alert h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .single-alert a {
    margin-top: 20px;
  }

  .btn {
    font-size: 14px;
    height: 38px;
    line-height: 38px;
  }
  .btn.dropdown-toggle {
    padding-left: 10px;
  }
  .modal-body .hint {
    font-size: 12px;
  }
  .modal-footer .btn {
    line-height: 30px;
  }
  .pagination > li > a,
  .pagination > li > span {
    font-size: 13px;
    padding: 3px 10px;
    margin-left: 2px;
    margin-right: 2px;
  }

  .step-menu-wrap ul.step-count-3 {
    width: auto;
  }
  .step-menu-wrap ul li a {
    font-size: 13px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .step-menu-wrap ul li .text {
    display: none;
  }
  .step-menu-wrap ul.with-text li a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .step-menu-wrap ul.step-count-4,
  .step-menu-wrap ul.step-count-5 {
    width: auto;
  }
  .image-checkbox span {
    font-size: 14px;
    padding-left: 28px;
  }
  .image-checkbox .form-check-input + span:before,
  .image-checkbox .form-check-input:checked + span:before {
    background-size: 16px 16px;
  }

  .agreement-wrap .terms-wrap h4 {
    font-size: 14px;
  }

  form fieldset {
    margin-top: 20px;
  }
  form legend {
    font-size: 16px;
    padding-top: 15px;
    margin-bottom: 10px;
  }

  .form-control {
    padding: 10px;
    font-size: 16px;
    height: 38px;
    line-height: 38px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .form-control-sm {
    font-size: 16px;
    height: 38px;
    line-height: 38px;
  }
  .form-maker-form textarea.form-control {
    padding: 10px;
    font-size: 16px;
  }
  .form-maker-form input.form-control,
  .form-maker-form div.form-control {
    padding: 10px;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
  }

  .form-group {
    margin-bottom: 10px;
  }
  .form-group .help-block {
    font-size: 13px;
    line-height: 20px;
    margin-top: 5px;
  }
  .form-group label.error {
    font-size: 13px;
    line-height: 18px;
  }
  .form-group label.form-control-label {
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 10px;
  }

  .join-step-wrap .step-footer .btn {
    padding-left: 10px;
    padding-right: 10px;
  }

  table.info-table > thead > tr > th,
  table.info-table > tbody > tr > th,
  table.info-table > tfoot > tr > th,
  table.info-table > thead > tr > td,
  table.info-table > tbody > tr > td,
  table.info-table > tfoot > tr > td {
    padding: 10px 0;
    font-size: 12px;
  }
  table.info-table > tbody > tr > th {
    width: 100px;
    padding-right: 10px;
  }
  table.info-table .thumbnail {
    max-width: 100px;
  }
}

/* PLUGINS */
/* CHECKBOX WRAP FOR BOOTBOX*/
.bootbox-body .managers-checkbox-wrap {
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
}
.bootbox-body .managers-checkbox-wrap span.title {
  display: inline-block;
  margin-right: 10px;
}
.bootbox-body .managers-checkbox-wrap label {
  margin-right: 10px;
}

/* BOOTSTRAP SELECTPICKER */
.bootstrap-select.btn-group.open .dropdown-toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.bootstrap-select.btn-group.size-sm .dropdown-toggle {
  padding-left: 10px;
  height: 28px;
}
.bootstrap-select.btn-group.size-sm .dropdown-toggle .filter-option {
  line-height: 26px;
}
.bootstrap-select.btn-group.size-sm .dropdown-toggle .filter-option .count {
  display: inline-block;
  background: transparent;
  border-right: 1px solid #ccc;
  color: #323ff0;
  padding: 4px;
  padding-left: 13px;
  min-width: 30px;
  margin-left: -2px;
  height: 26px;
  font-weight: bold;
  text-align: left;
  line-height: 18px;
  margin-right: 6px;
}

.bootstrap-select.btn-group.size-sm
  .dropdown-toggle
  .filter-option
  .count:before {
  font-family: "Material Icons";
  content: "filter_list";
  position: absolute;
  left: 6px;
}
.bootstrap-select.btn-group.size-sm
  .dropdown-toggle.bs-placeholder
  .filter-option
  .count,
.bootstrap-select.btn-group.size-sm
  .dropdown-toggle
  .filter-option
  .count.selected-one-오늘_합계,
.bootstrap-select.btn-group.size-sm
  .dropdown-toggle
  .filter-option
  .count.selected-one-전체_사이트,
.bootstrap-select.btn-group.size-sm
  .dropdown-toggle
  .filter-option
  .count.selected-one-전체_페이지,
.bootstrap-select.btn-group.size-sm
  .dropdown-toggle
  .filter-option
  .count.selected-one-전체_언론사 {
  display: none;
}
.bootstrap-select.btn-group.size-sm .dropdown-menu li a {
  font-size: 0.75rem;
}

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled,
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
  pointer-events: none;
  cursor: default;
}
.bootstrap-select.btn-group.disabled .btn,
.bootstrap-select.btn-group > .disabled .btn,
.bootstrap-select.btn-group.disabled:focus .btn,
.bootstrap-select.btn-group > .disabled:focus .btn {
  border-color: #eee;
  color: #ccc;
}

.bootstrap-select.btn-group.disabled .text-muted,
.bootstrap-select.btn-group > .disabled .text-muted,
.bootstrap-select.btn-group.disabled:focus .text-muted,
.bootstrap-select.btn-group > .disabled:focus .text-muted {
  color: #ccc;
}

/* STICKY PLUGIN */
.sticky-wrapper {
  position: relative;
  z-index: 1000;
}

/* DATE RANGE */
.daterangepicker .icon-chevron-left {
  display: inline-block;
  width: 24px;
  height: 22px;
  margin-top: 8px;
  background: url(/img/img_arrow_prev.png) no-repeat center;
  background-size: 6px 10px;
}
.daterangepicker .icon-chevron-right {
  display: inline-block;
  width: 24px;
  height: 22px;
  margin-top: 8px;
  background: url(/img/img_arrow_next.png) no-repeat center;
  background-size: 6px 10px;
}

/* FLOT PLUGIN */
.tickLabels .count {
  display: inline-block;
  color: #333;
  background: #eee;
  padding: 0 3px;
  font-size: 10px;
  line-height: 14px;
  border-radius: 2px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  margin-top: -2px;
  margin-left: 4px;
  position: absolute;
}
.tickLabels .count-0 {
  display: none;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .daterangepicker .icon-chevron-left {
    background-image: url(/img/img_arrow_prev@2x.png);
  }
  .daterangepicker .icon-chevron-right {
    background-image: url(/img/img_arrow_next@2x.png);
  }
}

/* Changed */
.changed {
  display: inline-block;
  margin-left: 4px;
  font-size: 11px;
  font-weight: 500;
}
.changed.plus {
  color: #0a60bd;
}
.changed.minus {
  color: #ac222f;
}
