/* -------------------------------
   Predefined CSS
------------------------------- */

.hide { display: none!important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.pull-left { float: left !important; }
.pull-right { float: right !important; }
.pointer-cursor { cursor: pointer !important; }
.cursor-pointer { cursor: pointer !important; }
.cursor-initial { cursor: initial !important; }
.cursor-move { cursor: move !important; }

.animated {
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.fade {
    opacity: 0;
    transition: opacity .3s linear;
}
.fade.show {
	opacity: 1;
}
.text-ellipsis {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.text-nowrap {
    white-space: nowrap !important;
}
.underline {
    border-bottom: 1px solid #e2e7eb !important;
}
.with-shadow {
	box-shadow: 0 12px 36px 6px rgba(0,0,0,0.1) !important;
}

/* -------------------------------
	Event Styles - Buttons
------------------------------- */	
.btn-events-bw {
    border: none;
    border-radius: 2px;
    position: relative;
    padding: 8px 30px;
    margin: 10px 1px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    will-change: box-shadow,transform;
    transition: box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1);
    outline: 0;
    cursor: pointer;
    text-decoration: none;
}

.btn {
  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-image: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  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.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.btn-block {
    padding-left: 12px;
    padding-right: 12px;
}
.btn:active,
.btn-group .btn:active {
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2),0 6px 6px rgba(255, 255, 255, 0.03);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2),0 6px 6px rgba(255, 255, 255, 0.03);
} 
.btn.active,
.btn-group .btn.active {
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.btn-link,
.btn-group .btn {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
}
.btn-group .btn+.btn, 
.btn-group .btn+.btn-group, 
.btn-group .btn-group+.btn, 
.btn-group .btn-group+.btn-group {
    margin-left: 0;
}

/*---------- Colors - Button ----------*/
.btn.btn-colors {
    background: #313131;
    border-color: #313131;
    color: #fff;
}
.btn-colors:hover, 
.btn-colors:focus, 
.btn-colors:active, 
.btn-colors:active:focus,
.btn-colors.focus,
.btn-colors.active,
.btn-colors.active.focus, 
.btn-colors.active:focus, 
.btn-colors.active:hover, 
.btn-colors:active.focus, 
.btn-colors:active:focus, 
.btn-colors:active:hover, 
.open > .dropdown-toggle.btn-colors,
.open > .dropdown-toggle.btn-colors.focus, 
.open > .dropdown-toggle.btn-colors:focus, 
.open > .dropdown-toggle.btn-colors:hover {
    background: #131313;
    border-color: #131313;
}
.btn-group .btn.btn-colors:not(.active) + .btn.btn-colors,
.input-group-btn .btn.btn-colors:not(.active) + .btn.btn-colors {
    border-left-color: #000;
}

.btn.btn-outline-colors {
    color: #313131;
    border-color: #313131;
    background: none;
    border-width: 2px;
    font-weight: 600;
}
.btn.btn-outline-colors:hover,
.btn.btn-outline-colors:focus {
    color: #636363;
    border-color: #636363;
}

.btn.btn-baseworx {
    color: #fff;
    background: #3a2d68;
    border-color: #3a2d68;
}
.btn-baseworx:hover, 
.btn-baseworx:focus, 
.btn-baseworx:active, 
.btn-baseworx:active:focus,
.btn-baseworx.focus,
.btn-baseworx.active,
.btn-baseworx.active.focus, 
.btn-baseworx.active:focus, 
.btn-baseworx.active:hover, 
.btn-baseworx:active.focus, 
.btn-baseworx:active:focus, 
.btn-baseworx:active:hover, 
.open > .dropdown-toggle.btn-baseworx,
.open > .dropdown-toggle.btn-baseworx.focus, 
.open > .dropdown-toggle.btn-baseworx:focus, 
.open > .dropdown-toggle.btn-baseworx:hover {
    background: #534194;
    border-color: #534194;
}
.btn-group .btn.btn-baseworx:not(.active) + .btn.btn-baseworx,
.input-group-btn .btn.btn-baseworx:not(.active) + .btn.btn-baseworx {
    border-left-color: #534194;
}

.btn.btn-default {
    color: #212121;
    background: #fff;
    border-color: #fff;
}
.btn-default:hover, 
.btn-default:focus, 
.btn-default:active, 
.btn-default:active:focus,
.btn-default.focus,
.btn-default.active,
.btn-default.active.focus, 
.btn-default.active:focus, 
.btn-default.active:hover, 
.btn-default:active.focus, 
.btn-default:active:focus, 
.btn-default:active:hover, 
.open > .dropdown-toggle.btn-default,
.open > .dropdown-toggle.btn-default.focus, 
.open > .dropdown-toggle.btn-default:focus, 
.open > .dropdown-toggle.btn-default:hover {
    background: #EEEEEE;
    border-color: #EEEEEE;
}
.btn-default.disabled, 
.btn-default[disabled], 
fieldset[disabled] .btn-default,
.btn-default.active,
.btn-default.active.focus, 
.btn-default.active:hover,
.btn-default.active:focus,
.btn-default:active:focus, 
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default,
.open > .dropdown-toggle.btn-default.focus, 
.open > .dropdown-toggle.btn-default:focus, 
.open > .dropdown-toggle.btn-default:hover {
    border-color: #BDBDBD;
}
.btn-group .btn.btn-default:not(.active) + .btn.btn-default,
.input-group-btn .btn.btn-default:not(.active) + .btn.btn-default {
    border-left-color: #BDBDBD;
}


/* -------------------------------
   Buttons
------------------------------- */

.btn {
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	border-width: 2px;
}
.btn.btn-outline {
    color: #313131;
    border-width: 2px;
    border-color: #313131;
    background: none;
}
.btn.btn-outline:hover,
.btn.btn-outline:focus {
    border-color: #636363;
    color: #636363;
}
.btn:focus, 
.btn:active:focus, 
.btn.active:focus {
    outline: none;
}
.btn-icon,
.btn.btn-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
}
.btn-circle,
.btn.btn-circle {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.btn-icon.btn-xs {
    width: 16px;
    height: 16px;
    font-size: 8px;
    line-height: 16px;
}
.btn-icon.btn-sm {
    width: 22px;
    height: 22px;
    font-size: 11px;
    line-height: 22px;
}
.btn-icon.btn-lg {
    width: 34px;
    height: 34px;
    font-size: 17px;
    line-height: 34px;
}
.btn-scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 1020;
}
.page-with-right-sidebar .btn-scroll-to-top {
    left: 25px;
    right: auto;
}
.btn > .pull-left, 
.btn > .pull-right {
    line-height: 1.428571429;
}
.input-group-prepend .btn {
	border-right: 1px solid;
}
.input-group-append .btn {
	border-left: 1px solid;
}
.btn-rounded {
	border-radius: 200px;
}

.btn-block {
    padding-left: 12px;
    padding-right: 12px;
}
.btn:active,
.btn.active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-block {
	padding-left: 12px;
	padding-right: 12px;
}
.btn.btn-md {
    font-size: 14px;
    line-height: 16px;
    padding: 12px 15px;
}
.btn.btn-sm {
	font-size: 12px;
	line-height: 16px;
	padding: 5px 10px;
}
.btn.btn-xs {
	font-size: 12px;
	line-height: 18px;
	padding: 1px 5px;
}
.btn[class*="btn-gradient-"] {
	transition: background .1s linear;
}
.btn.btn-lg,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-prepend > .btn {
	font-size: 16px;
	line-height: 24px;
	padding: 10px 16px;
}


/* Button - Default */

.btn.btn-default,
.btn.btn-default.disabled,
.btn.btn-default.disabled:hover,
.btn.btn-default.disabled:focus,
.btn.btn-default[disabled],
.btn.btn-default[disabled]:hover,
.btn.btn-default[disabled]:focus {
	color: #2e353c;
    background: #f2f3f4;
    border-color: #f2f3f4;
}
.btn-default:hover, 
.btn-default:focus, 
.btn-default:active, 
.btn-default.active, 
.btn-default.active.focus, 
.btn-default.active:focus, 
.btn-default.active:hover, 
.btn-default:active.focus, 
.btn-default:active:focus, 
.btn-default:active:hover,
.show > .btn-default.dropdown-toggle,
.open > .dropdown-toggle.btn-default,
.open > .dropdown-toggle.btn-default:hover,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:not(:disabled):not(.disabled).active, 
.btn-default:not(:disabled):not(.disabled):active {
    background: #d8d8d8;
    border-color: #d8d8d8;
}
.input-group-append .btn.btn-default,
.btn-group .btn.btn-default:not(.active) + .btn.btn-default,
.input-group-btn .btn.btn-default:not(.active) + .btn.btn-default {
    border-left-color: #d8d8d8;
}
.input-group-prepend .btn.btn-default {
    border-right-color: #d8d8d8;
}


/* Button - White */

.btn.btn-white,
.btn.btn-white.disabled,
.btn.btn-white.disabled:hover,
.btn.btn-white.disabled:focus,
.btn.btn-white[disabled],
.btn.btn-white[disabled]:hover,
.btn.btn-white[disabled]:focus {
    color: #2d353c;
    background: #fff;
    border-color: #ffffff;
}
.btn.btn-white.btn-white-without-border {
    border-color: #fff;
}
.btn.btn-white.btn-white-without-border.active,
.btn.btn-white.btn-white-without-border.active:hover,
.btn.btn-white.btn-white-without-border.active:focus {
    border-color: #eaeaea;
}
.btn.btn-white.btn-white-without-border:hover,
.btn.btn-white.btn-white-without-border:focus {
    border-color: #eaeaea;
}
.btn-white:hover, 
.btn-white:focus, 
.btn-white:active, 
.btn-white.active,
.btn-white.active.focus, 
.btn-white.active:focus, 
.btn-white.active:hover, 
.btn-white:active.focus, 
.btn-white:active:focus, 
.btn-white:active:hover,
.show > .btn-white.dropdown-toggle,
.open > .dropdown-toggle.btn-white,
.open > .dropdown-toggle.btn-white:hover,
.open > .dropdown-toggle.btn-white:focus,
.btn-white:not(:disabled):not(.disabled).active, 
.btn-white:not(:disabled):not(.disabled):active {
    background: #eaeaea;
    border-color: #eaeaea;
}
.input-group-append .btn.btn-white,
.btn-group .btn.btn-white:not(.active) + .btn.btn-white,
.input-group-btn .btn.btn-white:not(.active) + .btn.btn-white {
    border-left-color: #eaeaea;
}
.input-group-prepend .btn.btn-white {
    border-right-color: #eaeaea;
}



/* Button - Inverse */

.btn.btn-inverse,
.btn.btn-inverse.disabled,
.btn.btn-inverse.disabled:hover,
.btn.btn-inverse.disabled:focus,
.btn.btn-inverse[disabled],
.btn.btn-inverse[disabled]:hover,
.btn.btn-inverse[disabled]:focus {
    color: #fff;
    background: #313131;
    border-color: #313131;
}
.btn-inverse:hover, 
.btn-inverse:focus, 
.btn-inverse:active, 
.btn-inverse.active, 
.btn-inverse.active.focus, 
.btn-inverse.active:focus, 
.btn-inverse.active:hover, 
.btn-inverse:active.focus, 
.btn-inverse:active:focus, 
.btn-inverse:active:hover,
.show > .btn-inverse.dropdown-toggle,
.open > .dropdown-toggle.btn-inverse,
.open > .dropdown-toggle.btn-inverse:hover,
.open > .dropdown-toggle.btn-inverse:focus,
.btn-inverse:not(:disabled):not(.disabled).active, 
.btn-inverse:not(:disabled):not(.disabled):active {
    background: #131313;
    border-color: #131313;
}
.input-group-append .btn.btn-inverse,
.btn-group .btn.btn-inverse:not(.active) + .btn.btn-inverse,
.input-group-btn .btn.btn-inverse:not(.active) + .btn.btn-inverse {
    border-left-color: #131313;
}
.input-group-prepend .btn {
    border-right-color: #131313;
}


/* Button - Primary */

.btn.btn-primary,
.btn.btn-primary.disabled,
.btn.btn-primary.disabled:hover,
.btn.btn-primary.disabled:focus,
.btn.btn-primary[disabled],
.btn.btn-primary[disabled]:hover,
.btn.btn-primary[disabled]:focus {
    color: #fff;
    background: #348fe2;
    border-color: #348fe2;
}
.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary.active, 
.btn-primary.active.focus, 
.btn-primary.active:focus, 
.btn-primary.active:hover, 
.btn-primary:active.focus, 
.btn-primary:active:focus, 
.btn-primary:active:hover,
.show > .btn-primary.dropdown-toggle,
.open > .dropdown-toggle.btn-primary,
.open > .dropdown-toggle.btn-primary:hover,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active {
    background: #2a72b5;
    border-color: #2a72b5;
}
.input-group-append .btn.btn-primary,
.btn-group .btn.btn-primary:not(.active) + .btn.btn-primary,
.input-group-btn .btn.btn-primary:not(.active) + .btn.btn-primary {
    border-left-color: #2a72b5;
}
.input-group-prepend .btn.btn-primary {
    border-right-color: #2a72b5;
}


/* Button - Success */

.btn.btn-success,
.btn.btn-success.disabled,
.btn.btn-success.disabled:hover,
.btn.btn-success.disabled:focus,
.btn.btn-success[disabled],
.btn.btn-success[disabled]:hover,
.btn.btn-success[disabled]:focus {
    color: #fff;
    background: #13ac00;
    border-color: #13ac00;
}
.btn-success:hover, 
.btn-success:focus, 
.btn-success:active, 
.btn-success.active, 
.btn-success.active.focus, 
.btn-success.active:focus, 
.btn-success.active:hover, 
.btn-success:active.focus, 
.btn-success:active:focus, 
.btn-success:active:hover,
.show > .btn-success.dropdown-toggle,
.open > .dropdown-toggle.btn-success,
.open > .dropdown-toggle.btn-success:hover,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:not(:disabled):not(.disabled).active, 
.btn-success:not(:disabled):not(.disabled):active {
    background: #129800;
    border-color: #129800;
}
.input-group-append .btn.btn-success,
.btn-group .btn.btn-success:not(.active) + .btn.btn-success,
.input-group-btn .btn.btn-success:not(.active) + .btn.btn-success {
    border-left-color: #129800;
}
.input-group-prepend .btn.btn-success {
    border-right-color: #129800;
}


/* Button - Warning */

.btn.btn-warning,
.btn.btn-warning.disabled,
.btn.btn-warning.disabled:hover,
.btn.btn-warning.disabled:focus,
.btn.btn-warning[disabled],
.btn.btn-warning[disabled]:hover,
.btn.btn-warning[disabled]:focus {
    color: #fff;
    background: #f59c1a;
    border-color: #f59c1a;
}
.btn-warning:hover, 
.btn-warning:focus, 
.btn-warning:active, 
.btn-warning.active, 
.btn-warning.active.focus, 
.btn-warning.active:focus, 
.btn-warning.active:hover, 
.btn-warning:active.focus, 
.btn-warning:active:focus, 
.btn-warning:active:hover,
.show > .btn-warning.dropdown-toggle,
.open > .dropdown-toggle.btn-warning,
.open > .dropdown-toggle.btn-warning:focus,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:not(:disabled):not(.disabled).active, 
.btn-warning:not(:disabled):not(.disabled):active {
    background: #c47d15;
    border-color: #c47d15;
}
.input-group-append .btn.btn-warning,
.btn-group .btn.btn-warning:not(.active) + .btn.btn-warning,
.input-group-btn .btn.btn-warning:not(.active) + .btn.btn-warning {
    border-left-color: #c47d15;
}
.input-group-prepend .btn.btn-warning {
    border-right-color: #c47d15;
}


/* Button - Danger */

.btn.btn-danger,
.btn.btn-danger.disabled,
.btn.btn-danger.disabled:hover,
.btn.btn-danger.disabled:focus,
.btn.btn-danger[disabled],
.btn.btn-danger[disabled]:hover,
.btn.btn-danger[disabled]:focus {
    color: #fff;
    background: #ff5b57;
    border-color: #ff5b57;
}
.btn-danger:hover, 
.btn-danger:focus, 
.btn-danger:active, 
.btn-danger.active, 
.btn-danger.active.focus, 
.btn-danger.active:focus, 
.btn-danger.active:hover, 
.btn-danger:active.focus, 
.btn-danger:active:focus, 
.btn-danger:active:hover,
.show > .btn-danger.dropdown-toggle,
.open > .dropdown-toggle.btn-danger,
.open > .dropdown-toggle.btn-danger:hover,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled).active, 
.btn-danger:not(:disabled):not(.disabled):active {
    background: #cc4946;
    border-color: #cc4946;
}
.input-group-append .btn.btn-danger,
.btn-group .btn.btn-danger:not(.active) + .btn.btn-danger,
.input-group-btn .btn.btn-danger:not(.active) + .btn.btn-danger {
    border-left-color: #cc4946;
}
.input-group-prepend .btn.btn-danger {
    border-right-color: #cc4946;
}


/* Button - Info */

.btn.btn-info,
.btn.btn-info.disabled,
.btn.btn-info.disabled:hover,
.btn.btn-info.disabled:focus,
.btn.btn-info[disabled],
.btn.btn-info[disabled]:hover,
.btn.btn-info[disabled]:focus {
    color: #fff;
    background: #49b6d6;
    border-color: #49b6d6;
}
.btn-info:hover, 
.btn-info:focus, 
.btn-info:active, 
.btn-info.active, 
.btn-info.active.focus, 
.btn-info.active:focus, 
.btn-info.active:hover, 
.btn-info:active.focus, 
.btn-info:active:focus, 
.btn-info:active:hover,
.show > .btn-info.dropdown-toggle,
.open > .dropdown-toggle.btn-info,
.open > .dropdown-toggle.btn-info:hover,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:not(:disabled):not(.disabled).active, 
.btn-info:not(:disabled):not(.disabled):active {
    background: #3a92ab;
    border-color: #3a92ab;
}
.input-group-append .btn.btn-info,
.btn-group .btn.btn-info:not(.active) + .btn.btn-info,
.input-group-btn .btn.btn-info:not(.active) + .btn.btn-info {
    border-left-color: #3a92ab;
}
.input-group-prepend .btn.btn-info {
    border-right-color: #3a92ab;
}


/* Button - Purple */

.btn.btn-purple,
.btn.btn-purple.disabled,
.btn.btn-purple.disabled:hover,
.btn.btn-purple.disabled:focus,
.btn.btn-purple[disabled],
.btn.btn-purple[disabled]:hover,
.btn.btn-purple[disabled]:focus {
    color: #fff;
    background: #727cb6;
    border-color: #727cb6;
}
.btn-purple:hover, 
.btn-purple:focus, 
.btn-purple:active, 
.btn-purple.active, 
.btn-purple.active.focus, 
.btn-purple.active:focus, 
.btn-purple.active:hover, 
.btn-purple:active.focus, 
.btn-purple:active:focus, 
.btn-purple:active:hover,
.show > .btn-purple.dropdown-toggle,
.open > .dropdown-toggle.btn-purple,
.open > .dropdown-toggle.btn-purple:hover,
.open > .dropdown-toggle.btn-purple:focus,
.btn-purple:not(:disabled):not(.disabled).active, 
.btn-purple:not(:disabled):not(.disabled):active {
    background: #555d88;
    border-color: #555d88;
}
.input-group-append .btn.btn-purple,
.btn-group .btn.btn-purple:not(.active) + .btn.btn-purple,
.input-group-btn .btn.btn-purple:not(.active) + .btn.btn-purple {
    border-left-color: #555d88;
}
.input-group-prepend .btn.btn-purple {
    border-right-color: #555d88;
}


/* Button - Yellow */

.btn.btn-yellow,
.btn.btn-yellow.disabled,
.btn.btn-yellow.disabled:hover,
.btn.btn-yellow.disabled:focus,
.btn.btn-yellow[disabled],
.btn.btn-yellow[disabled]:hover,
.btn.btn-yellow[disabled]:focus{
    color: #000;
    background: #ffd900;
    border-color: #ffd900;
}
.btn-yellow:hover, 
.btn-yellow:focus, 
.btn-yellow:active, 
.btn-yellow.active, 
.btn-yellow.active.focus, 
.btn-yellow.active:focus, 
.btn-yellow.active:hover, 
.btn-yellow:active.focus, 
.btn-yellow:active:focus, 
.btn-yellow:active:hover,
.show > .btn-yellow.dropdown-toggle,
.open > .dropdown-toggle.btn-yellow,
.open > .dropdown-toggle.btn-yellow:hover,
.open > .dropdown-toggle.btn-yellow:focus,
.btn-yellow:not(:disabled):not(.disabled).active, 
.btn-yellow:not(:disabled):not(.disabled):active {
    background: #bfa300;
    border-color: #bfa300;
}
.input-group-append .btn.btn-yellow,
.btn-group .btn.btn-yellow:not(.active) + .btn.btn-yellow,
.input-group-btn .btn.btn-yellow:not(.active) + .btn.btn-yellow {
    border-left-color: #bfa300;
}
.input-group-prepend .btn.btn-yellow {
    border-right-color: #bfa300;
}


/* Button - Grey */

.btn.btn-grey,
.btn.btn-grey.disabled,
.btn.btn-grey.disabled:hover,
.btn.btn-grey.disabled:focus,
.btn.btn-grey[disabled],
.btn.btn-grey[disabled]:hover,
.btn.btn-grey[disabled]:focus {
    color: #fff;
    background: #b6c2c9;
    border-color: #b6c2c9;
}
.btn-grey:hover, 
.btn-grey:focus, 
.btn-grey:active, 
.btn-grey.active, 
.btn-grey.active.focus, 
.btn-grey.active:focus, 
.btn-grey.active:hover, 
.btn-grey:active.focus, 
.btn-grey:active:focus, 
.btn-grey:active:hover,
.show > .btn-grey.dropdown-toggle,
.open > .dropdown-toggle.btn-grey,
.open > .dropdown-toggle.btn-grey:hover,
.open > .dropdown-toggle.btn-grey:focus,
.btn-grey:not(:disabled):not(.disabled).active, 
.btn-grey:not(:disabled):not(.disabled):active {
    background: #889197;
    border-color: #889197;
}
.input-group-append .btn.btn-grey,
.btn-group .btn.btn-grey:not(.active) + .btn.btn-grey,
.input-group-btn .btn.btn-grey:not(.active) + .btn.btn-grey {
    border-left-color: #889197;
}
.input-group-prepend .btn.btn-grey {
    border-right-color: #889197;
}


/* Button - Lime */

.btn.btn-lime,
.btn.btn-lime.disabled,
.btn.btn-lime.disabled:hover,
.btn.btn-lime.disabled:focus,
.btn.btn-lime[disabled],
.btn.btn-lime[disabled]:hover,
.btn.btn-lime[disabled]:focus {
    color: #fff;
    background: #90ca4b;
    border-color: #90ca4b;
}
.btn-lime:hover, 
.btn-lime:focus, 
.btn-lime:active, 
.btn-lime.active, 
.btn-lime.active.focus, 
.btn-lime.active:focus, 
.btn-lime.active:hover, 
.btn-lime:active.focus, 
.btn-lime:active:focus, 
.btn-lime:active:hover,
.show > .btn-lime.dropdown-toggle,
.open > .dropdown-toggle.btn-lime,
.open > .dropdown-toggle.btn-lime:hover,
.open > .dropdown-toggle.btn-lime:focus,
.btn-lime:not(:disabled):not(.disabled).active, 
.btn-lime:not(:disabled):not(.disabled):active {
    background: #6c9738;
    border-color: #6c9738;
}
.input-group-append .btn.btn-lime,
.btn-group .btn.btn-lime:not(.active) + .btn.btn-lime,
.input-group-btn .btn.btn-lime:not(.active) + .btn.btn-lime {
    border-left-color: #6c9738;
}
.input-group-prepend .btn.btn-lime {
    border-right-color: #6c9738;
}


/* Button - Pink */

.btn.btn-pink,
.btn.btn-pink.disabled,
.btn.btn-pink.disabled:hover,
.btn.btn-pink.disabled:focus,
.btn.btn-pink[disabled],
.btn.btn-pink[disabled]:hover,
.btn.btn-pink[disabled]:focus {
    color: #fff;
    background: #fb5597;
    border-color: #fb5597;
}
.btn-pink:hover, 
.btn-pink:focus, 
.btn-pink:active, 
.btn-pink.active, 
.btn-pink.active.focus, 
.btn-pink.active:focus, 
.btn-pink.active:hover, 
.btn-pink:active.focus, 
.btn-pink:active:focus, 
.btn-pink:active:hover,
.show > .btn-pink.dropdown-toggle,
.open > .dropdown-toggle.btn-pink,
.open > .dropdown-toggle.btn-pink:hover,
.open > .dropdown-toggle.btn-pink:focus,
.btn-pink:not(:disabled):not(.disabled).active, 
.btn-pink:not(:disabled):not(.disabled):active {
    background: #bc4071;
    border-color: #bc4071;
}
.input-group-append .btn.btn-pink,
.btn-group .btn.btn-pink:not(.active) + .btn.btn-pink,
.input-group-btn .btn.btn-pink:not(.active) + .btn.btn-pink {
    border-left-color: #bc4071;
}
.input-group-prepend .btn.btn-pink {
    border-right-color: #bc4071;
}


/* Button - Indigo */

.btn.btn-indigo,
.btn.btn-indigo.disabled,
.btn.btn-indigo.disabled:hover,
.btn.btn-indigo.disabled:focus,
.btn.btn-indigo[disabled],
.btn.btn-indigo[disabled]:hover,
.btn.btn-indigo[disabled]:focus {
    color: #fff;
    background: #8753de;
    border-color: #8753de;
}
.btn-indigo:hover, 
.btn-indigo:focus, 
.btn-indigo:active, 
.btn-indigo.active, 
.btn-indigo.active.focus, 
.btn-indigo.active:focus, 
.btn-indigo.active:hover, 
.btn-indigo:active.focus, 
.btn-indigo:active:focus, 
.btn-indigo:active:hover,
.show > .btn-indigo.dropdown-toggle,
.open > .dropdown-toggle.btn-indigo,
.open > .dropdown-toggle.btn-indigo:hover,
.open > .dropdown-toggle.btn-indigo:focus,
.btn-indigo:not(:disabled):not(.disabled).active, 
.btn-indigo:not(:disabled):not(.disabled):active {
    background: #653ea6;
    border-color: #653ea6;
}
.input-group-append .btn.btn-indigo,
.btn-group .btn.btn-indigo:not(.active) + .btn.btn-indigo,
.input-group-btn .btn.btn-indigo:not(.active) + .btn.btn-indigo {
    border-left-color: #653ea6;
}
.input-group-prepend .btn.btn-indigo {
    border-right-color: #653ea6;
}


/* Button - Green */

.btn.btn-green,
.btn.btn-green.disabled,
.btn.btn-green.disabled:hover,
.btn.btn-green.disabled:focus,
.btn.btn-green[disabled],
.btn.btn-green[disabled]:hover,
.btn.btn-green[disabled]:focus {
    color: #fff;
    background: #32a932;
    border-color: #32a932;
}
.btn-green:hover, 
.btn-green:focus, 
.btn-green:active, 
.btn-green.active, 
.btn-green.active.focus, 
.btn-green.active:focus, 
.btn-green.active:hover, 
.btn-green:active.focus, 
.btn-green:active:focus, 
.btn-green:active:hover,
.show > .btn-green.dropdown-toggle,
.open > .dropdown-toggle.btn-green,
.open > .dropdown-toggle.btn-green:hover,
.open > .dropdown-toggle.btn-green:focus,
.btn-green:not(:disabled):not(.disabled).active, 
.btn-green:not(:disabled):not(.disabled):active {
    background: #257f25;
    border-color: #257f25;
}
.input-group-append .btn.btn-green,
.btn-group .btn.btn-green:not(.active) + .btn.btn-green,
.input-group-btn .btn.btn-green:not(.active) + .btn.btn-green {
    border-left-color: #257f25;
}
.input-group-prepend .btn.btn-green {
    border-right-color: #257f25;
}

/* Button - Green-2 */

.btn.btn-green-2,
.btn.btn-green-2.disabled,
.btn.btn-green-2.disabled:hover,
.btn.btn-green-2.disabled:focus,
.btn.btn-green-2[disabled],
.btn.btn-green-2[disabled]:hover,
.btn.btn-green-2[disabled]:focus {
    color: #fff;
    background: #00acac;
    border-color: #00acac;
}
.btn-green-2:hover, 
.btn-green-2:focus, 
.btn-green-2:active, 
.btn-green-2.active, 
.btn-green-2.active.focus, 
.btn-green-2.active:focus, 
.btn-green-2.active:hover, 
.btn-green-2:active.focus, 
.btn-green-2:active:focus, 
.btn-green-2:active:hover,
.show > .btn-green-2.dropdown-toggle,
.open > .dropdown-toggle.btn-green-2,
.open > .dropdown-toggle.btn-green-2:hover,
.open > .dropdown-toggle.btn-green-2:focus,
.btn-green-2:not(:disabled):not(.disabled).active, 
.btn-green-2:not(:disabled):not(.disabled):active {
    background: #008a8a;
    border-color: #008a8a;
}
.input-group-append .btn.btn-green-2,
.btn-group .btn.btn-green-2:not(.active) + .btn.btn-green-2,
.input-group-btn .btn.btn-green-2:not(.active) + .btn.btn-green-2 {
    border-left-color: #008a8a;
}
.input-group-prepend .btn.btn-green-2 {
    border-right-color: #008a8a;
}

/* -------------------------------
   Platform & Module Buttons
------------------------------- */

/* Button - Sizes */

.btn.btn-1 {
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 25px;
    text-transform: uppercase;
}
.btn.btn-2 {
    font-size: 14px;
    line-height: 1.5;
    padding: 6px 25px;
    text-transform: uppercase;
}
.btn.btn-3 {
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 35px;
    text-transform: uppercase;
}
.btn.btn-sm-actions {
    font-size: 13px;
    line-height: 1.3;
    padding: 6px 12px;
    padding-bottom: 6px;
    margin-right: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.btn.btn-right {
   margin-right:5px;
}
.label.label-sm-actions {
	font-size: 13px;
    line-height: 1.4;
    padding: 6px 12px;
    padding-bottom: 7px;
    margin-right: 5px;
	border-top: 1px solid;
    text-transform: uppercase;
}

/* Button - Bookings */

.btn.btn-book,
.btn.btn-book.disabled,
.btn.btn-book.disabled:hover,
.btn.btn-book.disabled:focus,
.btn.btn-book[disabled],
.btn.btn-book[disabled]:hover,
.btn.btn-book[disabled]:focus {
    color: #fff;
    background: #313131;
    border-color: #313131;
}
.btn-book:hover, 
.btn-book:focus, 
.btn-book:active, 
.btn-book.active, 
.btn-book.active.focus, 
.btn-book.active:focus, 
.btn-book.active:hover, 
.btn-book:active.focus, 
.btn-book:active:focus, 
.btn-book:active:hover,
.show > .btn-book.dropdown-toggle,
.open > .dropdown-toggle.btn-book,
.open > .dropdown-toggle.btn-book:hover,
.open > .dropdown-toggle.btn-book:focus,
.btn-book:not(:disabled):not(.disabled).active, 
.btn-book:not(:disabled):not(.disabled):active {
    color: #fff;
	background: #131313;
    border-color: #131313;
}
.input-group-append .btn.btn-book,
.btn-group .btn.btn-book:not(.active) + .btn.btn-book,
.input-group-btn .btn.btn-book:not(.active) + .btn.btn-book {
    border-left-color: #131313;
}

/* Button - Booking Success */

.btn.btn-booksuccess,
.btn.btn-booksuccess.disabled,
.btn.btn-booksuccess.disabled:hover,
.btn.btn-booksuccess.disabled:focus,
.btn.btn-booksuccess[disabled],
.btn.btn-booksuccess[disabled]:hover,
.btn.btn-booksuccess[disabled]:focus {
    color: #fff;
    background: #13ac00;
    border-color: #13ac00;
}
.btn-booksuccess:hover, 
.btn-booksuccess:focus, 
.btn-booksuccess:active, 
.btn-booksuccess.active, 
.btn-booksuccess.active.focus, 
.btn-booksuccess.active:focus, 
.btn-booksuccess.active:hover, 
.btn-booksuccess:active.focus, 
.btn-booksuccess:active:focus, 
.btn-booksuccess:active:hover,
.show > .btn-booksuccess.dropdown-toggle,
.open > .dropdown-toggle.btn-booksuccess,
.open > .dropdown-toggle.btn-booksuccess:hover,
.open > .dropdown-toggle.btn-booksuccess:focus,
.btn-booksuccess:not(:disabled):not(.disabled).active, 
.btn-booksuccess:not(:disabled):not(.disabled):active {
    color: #fff;
	background: #129800;
    border-color: #129800;
}
.input-group-append .btn.btn-booksuccess,
.btn-group .btn.btn-booksuccess:not(.active) + .btn.btn-booksuccess,
.input-group-btn .btn.btn-booksuccess:not(.active) + .btn.btn-booksuccess {
    border-left-color: #129800;
}

/* Button - Booking Secondary */

.btn.btn-booksecondary,
.btn.btn-booksecondary.disabled,
.btn.btn-booksecondary.disabled:hover,
.btn.btn-booksecondary.disabled:focus,
.btn.btn-booksecondary[disabled],
.btn.btn-booksecondary[disabled]:hover,
.btn.btn-booksecondary[disabled]:focus {
    color: #fff;
    background: #a5a5a5;
    border-color: #a5a5a5;
}
.btn-booksecondary:hover, 
.btn-booksecondary:focus, 
.btn-booksecondary:active, 
.btn-booksecondary.active, 
.btn-booksecondary.active.focus, 
.btn-booksecondary.active:focus, 
.btn-booksecondary.active:hover, 
.btn-booksecondary:active.focus, 
.btn-booksecondary:active:focus, 
.btn-booksecondary:active:hover,
.show > .btn-booksecondary.dropdown-toggle,
.open > .dropdown-toggle.btn-booksecondary,
.open > .dropdown-toggle.btn-booksecondary:hover,
.open > .dropdown-toggle.btn-booksecondary:focus,
.btn-booksecondary:not(:disabled):not(.disabled).active, 
.btn-booksecondary:not(:disabled):not(.disabled):active {
    color: #fff;
	background: #b7b7b7;
    border-color: #b7b7b7;
}
.input-group-append .btn.btn-booksecondary,
.btn-group .btn.btn-booksecondary:not(.active) + .btn.btn-booksecondary,
.input-group-btn .btn.btn-booksecondary:not(.active) + .btn.btn-booksecondary {
    border-left-color: #b7b7b7;
}

/* Button - Booking Danger */

.btn.btn-bookdanger,
.btn.btn-bookdanger.disabled,
.btn.btn-bookdanger.disabled:hover,
.btn.btn-bookdanger.disabled:focus,
.btn.btn-bookdanger[disabled],
.btn.btn-bookdanger[disabled]:hover,
.btn.btn-bookdanger[disabled]:focus {
    color: #fff;
    background: #ff0000;
    border-color: #ff0000;
}
.btn-bookdanger:hover, 
.btn-bookdanger:focus, 
.btn-bookdanger:active, 
.btn-bookdanger.active, 
.btn-bookdanger.active.focus, 
.btn-bookdanger.active:focus, 
.btn-bookdanger.active:hover, 
.btn-bookdanger:active.focus, 
.btn-bookdanger:active:focus, 
.btn-bookdanger:active:hover,
.show > .btn-bookdanger.dropdown-toggle,
.open > .dropdown-toggle.btn-bookdanger,
.open > .dropdown-toggle.btn-bookdanger:hover,
.open > .dropdown-toggle.btn-bookdanger:focus,
.btn-bookdanger:not(:disabled):not(.disabled).active, 
.btn-bookdanger:not(:disabled):not(.disabled):active {
    color: #fff;
	background: #E50000;
    border-color: #E50000;
}
.btn.btn-bookdanger:hover {
    color: #fff;
}
.btn.btn-bookdanger-text {
    color: #fff !important;
}
.btn.btn-bookdanger-text:hover {
    color: #fff !important;
}
.input-group-append .btn.btn-bookdanger,
.btn-group .btn.btn-bookdanger:not(.active) + .btn.btn-bookdanger,
.input-group-btn .btn.btn-bookdanger:not(.active) + .btn.btn-bookdanger {
    border-left-color: #E50000;
}

/* Button - Default */

.btn.btn-bookdefault,
.btn.btn-bookdefault.disabled,
.btn.btn-bookdefault.disabled:hover,
.btn.btn-bookdefault.disabled:focus,
.btn.btn-bookdefault[disabled],
.btn.btn-bookdefault[disabled]:hover,
.btn.btn-bookdefault[disabled]:focus {
    color: #000;
    background: #fff;
    border-color: #6d6d6d;
}
.btn-bookdefault:hover, 
.btn-bookdefault:focus, 
.btn-bookdefault:active, 
.btn-bookdefault.active, 
.btn-bookdefault.active.focus, 
.btn-bookdefault.active:focus, 
.btn-bookdefault.active:hover, 
.btn-bookdefault:active.focus, 
.btn-bookdefault:active:focus, 
.btn-bookdefault:active:hover,
.show > .btn-bookdefault.dropdown-toggle,
.open > .dropdown-toggle.btn-bookdefault,
.open > .dropdown-toggle.btn-bookdefault:hover,
.open > .dropdown-toggle.btn-bookdefault:focus,
.btn-bookdefault:not(:disabled):not(.disabled).active, 
.btn-bookdefault:not(:disabled):not(.disabled):active {
    color: #000;
	background: #fff;
    border-color: #181818;
}
.input-group-append .btn.btn-bookdefault,
.btn-group .btn.btn-bookdefault:not(.active) + .btn.btn-bookdefault,
.input-group-btn .btn.btn-bookdefault:not(.active) + .btn.btn-bookdefault {
    border-left-color: #eee;
}

/* -------------------------------
   Progress Bar
------------------------------- */

.progress {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    height: 15px;
    overflow: visible;
    background: #e2e7eb;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.progress .progress-bar {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    position: relative;
}
.progress .progress-bar .progress-number {
    position: absolute;
    right: 0;
    bottom: 100%;
    background: #333;
    padding: 2px 6px 1px;
    border-radius: 4px;
    margin-bottom: 5px;
    display: block;
    line-height: 16px;
}
.progress .progress-bar .progress-number:before {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -5px;
    bottom: -10px;
    border: 5px solid transparent;
    border-top-color: #333;
}
.progress-bar.progress-bar-success {
    background: #00acac;
}
.progress.progress-striped .progress-bar {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}
.progress-xs {
    height: 5px;
}
.progress-xs .progress-bar {
    line-height: 5px;
}
.progress-sm {
    height: 10px;
}
.progress-sm .progress-bar {
    line-height: 10px;
}
.progress-lg {
    height: 30px;
}
.progress-lg .progress-bar {
    line-height: 30px;
}
.progress-bar {
    background: #348fe2;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.progress-bar.progress-bar-success {
    background-color: #00acac;
}
.progress-bar.progress-bar-info {
    background-color: #49b6d6;
}
.progress-bar.progress-bar-warning {
    background-color: #f59c1a;
}
.progress-bar.progress-bar-danger {
    background-color: #ff5b57;
}
.progress-bar.progress-bar-inverse {
    background-color: #2d353c;
}
.progress-bar.progress-bar-purple {
    background-color: #727cb6;
}


/* -------------------------------
   Form Control
------------------------------- */

.form-control {
    border: 2px solid #ccd0d4;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}
.form-control.input-white {
    background: #fff;
    border-color: #fff;
}
.form-control.input-white:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}
.form-control[disabled], 
.form-control[readonly],
fieldset[disabled] .form-control {
    background: #e5e9ed;
    opacity: 0.6;
    filter: alpha(opacity=60);
}
.form-control[disabled]:focus, 
.form-control[readonly]:focus,
fieldset[disabled] .form-control:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    border: 1px solid #ccd0d4;
}
.form-control:focus {
    border-color: #9fa2a5;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-horizontal.form-bordered .form-group {
    border-bottom: 1px solid #eee;
    margin: 0;
}
.form-horizontal.form-bordered .form-group:last-child {
    border-bottom: 0;
}
.form-horizontal.form-bordered .form-group > .control-label {
    padding: 22px 15px 15px;
}
.form-horizontal.form-bordered .form-group > div {
    padding: 15px;
}
.form-horizontal.form-bordered .form-group > div {
    border-left: 1px solid #eee;
}
.form-horizontal.form-bordered .form-group > .control-label {
    border-right: 1px solid #eee;
    margin-right: -1px;
}
.form-horizontal.form-bordered .has-feedback .form-control-feedback {
    top: 15px;
}
label {
    font-weight: 500;
}
.has-success .form-control,
.has-success .form-control:focus,
.has-warning .form-control,
.has-warning .form-control:focus,
.has-error .form-control,
.has-error .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.has-success .help-block, 
.has-success .control-label, 
.has-success .radio, 
.has-success .checkbox, 
.has-success .radio-inline, 
.has-success .checkbox-inline,
.has-success .form-control-feedback {
    color: #00acac;
}
.has-success .form-control {
    border-color: #00acac;
}
.has-success .form-control:focus {
    border-color: #008a8a;
}
.has-warning .help-block, 
.has-warning .control-label, 
.has-warning .radio, 
.has-warning .checkbox, 
.has-warning .radio-inline, 
.has-warning .checkbox-inline,
.has-warning .form-control-feedback {
    color: #f59c1a;
}
.has-warning .form-control {
    border-color: #f59c1a;
}
.has-warning .form-control:focus {
    border-color: #c47d15;
}
.has-error .help-block, 
.has-error .control-label, 
.has-error .radio, 
.has-error .checkbox, 
.has-error .radio-inline, 
.has-error .checkbox-inline,
.has-error .form-control-feedback {
    color: #ff5b57;
}
.has-error .form-control {
    border-color: #ff5b57;
}
.has-error .form-control:focus {
    border-color: #cc4946;
}
.form-control-feedback {
    line-height: 34px;
}

select.form-control {
    border-color: #ccd0d4;
}
select[multiple].form-control {
    border-color: #ccd0d4;
}
.input-group-addon {
    background: #e2e7eb;
    border: none;
}
legend {
    padding-bottom: 3px;
    border-bottom: 1px solid #e2e7eb;
}



/* -------------------------------
   Misc
------------------------------- */

.tooltip-inner {
    padding: 4px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/* Alert */

.alert {
    border: none;
}
.alert.alert-default {
    background-color: #eee;
    color: #424242
}
.alert.alert-success {
    background: #7cdda7;
}
.alert.alert-info {
    background: #93cfe5;
}
.alert.alert-danger {
    background: #f8b2b2;
}
.alert.alert-warning {
    background: #ffead0;
}
.alert-bookingemail {
    padding-left: 10px;
    padding-right: 10px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

/* Badge & Label Setting */

.badge {
    font-size: 75%;
    line-height: 1.25;
    font-weight: 600;
}
.label {
    font-size: 75%;
    font-weight: 600;
}
.badge.badge-square {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.badge.badge-default,
.label.label-default {
    background: #b6c2c9;
	border-color: #b6c2c9;
}
.badge.badge-danger,
.label.label-danger {
    background: #ff5b57 ;
    color:#ffffff;
	border-color: #ff5b57;
}
.badge.badge-warning,
.label.label-warning {
    background: #f59c1a ;
    color:#ffffff;
	border-color: #f59c1a;
}
.badge.badge-success,
.label.label-success {
    background: #13ac00;
    color:#ffffff;
	border-color: #13ac00;
}
.badge.badge-info,
.label.label-info {
    background: #49b6d6 ;
    color:#ffffff;
	border-color: #49b6d6;
}
.badge.badge-primary,
.label.label-primary {
    background: #348fe2 ;
    color:#ffffff;
	border-color: #348fe2;
}
.badge.badge-inverse,
.label.label-inverse {
    background: #2d353c ;
    color:#ffffff;
	border-color: #2d353c;
}



/* -------------------------------
   Nav & Tabs
------------------------------- */

.nav > li > a {
    color: #6e7179;
}
.nav > li > a:hover,
.nav > li > a:focus {
    color: #333;
    background: #fafafa;
}

/* Nav Tabs */

.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:hover, 
.nav-tabs > li.active > a:focus,
.nav-tabs.nav-justified > .active > a, 
.nav-tabs.nav-justified > .active > a:hover, 
.nav-tabs.nav-justified > .active > a:focus {
    color: #242a30;
}
.nav-tabs.nav-tabs-inverse {
    background: #242a30;
}
.nav-tabs.nav-justified > li > a {
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}
.nav-tabs.nav-tabs-inverse > li.active > a,
.nav-tabs.nav-tabs-inverse > li.active > a:hover,
.nav-tabs.nav-tabs-inverse > li.active > a:focus {
    background: #fff;
}
.nav-tabs.nav-tabs-inverse > li > a:hover,
.nav-tabs.nav-tabs-inverse > li > a:focus {
    color: #fff;
    background: none;
}
.nav-tabs > li > a,
.nav-tabs .nav-item .nav-link {
    margin-right: 5px;
    line-height: 20px;
    padding: 10px 15px;
}
.panel-heading .nav-tabs > li > a {
	color: #ffffff;
    font-weight: 600;
	border-top-left-radius: 0px;
    border-top-right-radius: 0px;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


/* Nav Pills */

.nav-pills {
    margin-bottom: 10px;
}
.nav-pills > li + li {
    margin-left: 5px;
}
.nav-pills > li > a {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.nav-pills > li.active > a, 
.nav-pills > li.active > a:hover, 
.nav-pills > li.active > a:focus {
    background: #242a30;
}

.nav-stacked > li + li {
    margin-left: 0;
    margin-top: 5px;
}


/* Tab Content */

.tab-content {
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.nav-tabs + .tab-content {
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}



/* -------------------------------
   Panels
------------------------------- */

/* Accordion Panel */

.panel-title a {
    display: block;
}
.panel-title > a:hover,
.panel-title > a:focus {
    text-decoration: none;
}


/* Component - Panel */

.panel {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.panel.panel-no-rounded-corner .panel-heading,
.panel.panel-no-rounded-corner .panel-body,
.panel.panel-no-rounded-corner .panel-footer {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}
.panel-heading {
    padding: 10px 15px;
    border: none;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}
.panel-heading + .table,
.panel-heading + .slimScrollDiv {
    border-top: 1px solid #ddd;
}
.panel-heading-btn {
    float: right;
}
.panel-heading-btn > a {
    margin-left: 8px;
}
.panel-heading .btn-group .btn {
    margin-top: -7px;
}
.panel-heading .btn-group .btn.btn-sm {
    margin-top: -5px;
}
.panel-heading .btn-group .btn.btn-xs {
    margin-top: -1px;
}
.panel-heading .label.pull-left,
.panel-heading .label.pull-right {
    line-height: 15px;
}
.panel-heading .progress.pull-right,
.panel-heading .progress.pull-left {
    width: 40%;
    min-width: 120px;
}
.panel-heading + .alert {
    margin-bottom: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.panel-with-tabs .panel-heading {
    background: #c1ccd1;
    color: #333;
}
.panel-heading .nav-tabs {
    margin-top: -10px;
    margin-right: -20px;
}
.panel-heading .nav-tabs > li > a {
    padding: 10px 15px;
    line-height: 20px;
}
.panel-title {
    margin-top: 0;
	margin-bottom: 0;
	line-height: 20px;
    font-size: 14px;
	color: inherit;
}
.panel-title .accordion-toggle {
    margin: -10px -15px;
    padding: 10px 15px;
}
.panel-title .accordion-toggle.accordion-toggle-styled .fa:before {
    content: '\f056';
}
.panel-title .accordion-toggle.accordion-toggle-styled.collapsed .fa:before {
    content: '\f055';
}
.panel-title .pull-right {
    line-height: 20px;
}
.panel-toolbar {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 15px;
    background: #fff;
}
.panel-toolbar + .form-control {
    margin: -1px 0 0;
    border-right: none;
    border-left: none;
}
.panel-group .panel {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.form-control + .panel-footer {
    border-top: none;
}
.panel-body {
    padding: 15px;
}
.panel-body.no-border {
    border: none !important;
}
.panel-body.panel-table,
.panel-body.panel-form,
.panel-body.no-padding,
.panel-body.panel-full-width {
    padding: 0 !important;
}
.panel-body.with-table > .table {
    border: 0;
    margin: 0;
}
.panel-body.with-table > .table tr:last-child th,
.panel-body.with-table > .table tr:last-child td{
    border-bottom: 0;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
    border-top: 1px solid #ddd;
}
.panel-footer {
    background: #fff;
    border-top: 1px solid #ddd;
}
.panel .tab-content {
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}
.panel-default > .panel-heading {
    background: #fafafa;
}
.panel-inverse > .panel-heading,
.panel-success > .panel-heading,
.panel-warning > .panel-heading,
.panel-danger > .panel-heading,
.panel-primary > .panel-heading,
.panel-info > .panel-heading {
    color: #fff;
}
.panel-inverse { border-color: #242a30; }
.panel-inverse > .panel-heading { background: #242a30; }
.panel-success { border-color: #008a8a; }
.panel-success > .panel-heading { background: #008a8a; }
.panel-warning { border-color: #c47d15; }
.panel-warning > .panel-heading { background: #c47d15; }
.panel-danger { border-color: #cc4946; }
.panel-danger > .panel-heading { background: #cc4946; }
.panel-primary { border-color: #2a72b5; }
.panel-primary > .panel-heading { background: #2a72b5; }
.panel-info { border-color: #3a92ab; }
.panel-info > .panel-heading { background: #3a92ab; }
.panel-cpheading > .panel-heading { 
	background: #8c8c8c; 
	color: #fff;
}
.panel-inverse .panel-heading a:hover,
.panel-inverse .panel-heading a:focus,
.panel-success .panel-heading a:hover,
.panel-success .panel-heading a:focus,
.panel-warning .panel-heading a:hover,
.panel-warning .panel-heading a:focus,
.panel-danger .panel-heading a:hover,
.panel-danger .panel-heading a:focus,
.panel-primary .panel-heading a:hover,
.panel-primary .panel-heading a:focus,
.panel-info .panel-heading a:hover,
.panel-info .panel-heading a:focus {
    color: #fff;
}


/* Panel Expand */

.panel.panel-expand {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    overflow: hidden;
    z-index: 1080;
}
.panel-expand .height-xs,
.panel-expand .height-sm,
.panel-expand .height-md,
.panel-expand .height-lg,
.panel-expand .height-full {
    height: 100% !important;
}
@keyframes panelExpand {
    from { top: 50%; left: 50%; right: 50%; bottom: 50%; }
    to { top: 0; left: 0; right: 0; bottom: 0; }
}
@-webkit-keyframes panelExpand {
    from { top: 50%; left: 50%; right: 50%; bottom: 50%; }
    to { top: 0; left: 0; right: 0; bottom: 0; }
}
.panel.panel-expand > .panel-heading .fa.fa-expand:before {
    content: '\f066';
}
.panel.panel-expand,
.panel.panel-expand > .panel-heading,
.panel.panel-expand > .panel-body {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.panel.panel-expand > .panel-body {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 40px;
    overflow-y: scroll;
    z-index: 1020;
}
.panel.panel-expand > .panel-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}


/* Panel loading */

.panel.panel-loading .panel-body {
    position: relative;
    z-index: 0;
}
.panel.panel-loading.panel-expand .panel-body {
    position: absolute;
}
.panel.panel-loading .panel-body .panel-loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.9;
    filter: alpha(opacity=90);
    animation: fadeIn .2s;
    -webkit-animation: fadeIn .2s;
    z-index: 1020;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Modal Setting */

.modal-content {
    border: none;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.modal-header {
    padding: 12px 15px;
    border-bottom-color: #e2e7eb;
}
.modal-body {
    padding: 15px;
}
.modal-footer {
    border-top-color: #e2e7eb;
    padding: 14px 15px 15px;
}

.modal-message .modal-dialog {
    width: 100%;
}
.modal-message .modal-content {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.modal-message .modal-header,
.modal-message .modal-body,
.modal-message .modal-footer {
    width: 60%;
    border: none;
    margin: 0 auto;
}

/* Component - Theme Panel */

.theme-panel .theme-collapse-btn {
    position: absolute;
    left: -40px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #000;
    background: #fff;
    background: rgba(255,255,255,0.9);
    border-radius: 4px 0 0 4px;
    text-align: center;
    box-shadow: 0 0 2px rgba(0,0,0,.4);
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,.4);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.4);
    text-decoration: none;
}
.theme-panel {
    position: fixed;
    right: -180px;
    top: 200px;
    z-index: 1020;
    box-shadow: 0 0 2px rgba(0,0,0,.4);
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,.4);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.4);
    width: 180px;
    -webkit-transition: right .2s linear;
    -moz-transition: right .2s linear;
    transition: right .2s linear;
}
.theme-panel .theme-panel-content {
    padding: 5px;
    background: #fff;
    position: relative;
    z-index: 1020;
}
.theme-panel .theme-list {
    list-style-type: none;
    margin: 0 -5px -5px 0;
    padding: 0;
}
.theme-panel .theme-list > li {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
}
.theme-panel .theme-list > li > a {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: block;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    position: relative;
    text-decoration: none;
}
.theme-panel .theme-list > li.active > a:before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 14px;
    color: #fff;
    opacity: .4;
    filter: alpha(opacity=40);
    text-align: center;
    line-height: 30px;
    text-align: center;
}
.theme-panel.active {
    right: 0;
}


/* -------------------------------
   Lightbox
------------------------------- */

/* Preload images */
body:after {
  display: none;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    display: none
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: 400
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;
    border: 4px solid white
}

.lightbox a img {
    border: none
}

.lb-outerContainer {
    position: relative;
    *zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: white
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../img/loading.gif) no-repeat
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10
}

.lb-container>.nav {
    left: 0
}

.lb-nav a {
    outline: none;
    background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
}

.lb-prev,.lb-next {
    height: 100%;
    cursor: pointer;
    display: block
}

.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(../img/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity .6s
}

.lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}

.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(../img/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity .6s
}

.lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 15px;
    *zoom: 1;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both
}

.lb-data {
    padding: 0 4px;
    color: #ccc
}

.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: 700;
    line-height: 1em
}

.lb-data .lb-caption a {
    color: #4ae
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(../img/close.png) top right no-repeat;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: .7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    transition: opacity .2s
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}

.modal-backdrop {
    background-color: rgba(0,0,0,0.5);
}
.hide {
	display:none;
}
.dismiss-red{
	color:red;
	cursor: pointer;
}

/* Backgrounds - Success */
.bgsuccess {
    background: #13ac00;
}

/* -------------------------------
   Modules Unlimited Nav Tabs
------------------------------- */

.tab-overflow {
	position: relative;
	overflow: hidden;
	border-radius: 2px 2px 0 0;
}
.tab-overflow .nav.nav-tabs {
	white-space: nowrap;
	overflow: hidden;
	display: table;
	border-radius: 2px 2px 0 0;
}
.tab-overflow .nav.nav-tabs > li,
.tab-overflow.nav.nav-tabs > li {
	display: table-cell;
	float: none;
}
.tab-overflow .nav.nav-tabs > li > a {
	margin-left: -1px;
	margin-right: 15px;
}
.tab-overflow .next-button,
.tab-overflow .prev-button {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
	display: none !important;
	opacity: 0;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	transition: all .2s linear;
}
.tab-overflow .prev-button {
	left: 0;
	right: auto;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.tab-overflow .nav.nav-tabs.nav-tabs-inverse .next-button,
.tab-overflow .nav.nav-tabs.nav-tabs-inverse .prev-button {
	box-shadow: 0 0 15px #000;
}
.tab-overflow .nav.nav-tabs.nav-tabs-inverse .prev-button {
	box-shadow: 0 0 15px #000;
}
.tab-overflow .next-button a,
.tab-overflow .prev-button a {
	margin: 0;
	background: #d9d9d9;
}
.flat-black .tab-overflow .next-button a,
.flat-black .tab-overflow .prev-button a {
	background: #d2d2d2;
}
.tab-overflow .prev-button > a {
	border-radius: 3px 0 3px;
}
.tab-overflow .nav-tabs-inverse .next-button > a,
.tab-overflow .nav-tabs-inverse .prev-button > a,
.nav.nav-tabs.nav-tabs-inverse > li > a,
.nav.nav-tabs.nav-tabs-inverse > li > a:hover,
.nav.nav-tabs.nav-tabs-inverse > li > a:focus {
	background: #242a30;
}
.flat-black .tab-overflow .nav-tabs-inverse .next-button > a,
.flat-black .tab-overflow .nav-tabs-inverse .prev-button > a,
.flat-black .nav.nav-tabs.nav-tabs-inverse > li > a,
.flat-black .nav.nav-tabs.nav-tabs-inverse > li > a:hover,
.flat-black .nav.nav-tabs.nav-tabs-inverse > li > a:focus {
	background: #2A2A2A;
}
.nav.nav-tabs.nav-tabs-inverse > li.active > a,
.nav.nav-tabs.nav-tabs-inverse > li.active > a:hover,
.nav.nav-tabs.nav-tabs-inverse > li.active > a:focus {
	background: #fff;
	color: #242a30;
}
.tab-overflow.overflow-right .next-button,
.tab-overflow.overflow-left .prev-button {
	display: block !important;
	opacity: 1;
	background: none;
}
.tab-overflow .nav-tabs > li.prev-button + li.active > a {
	border-radius: 0 3px 0 0;
}

/* -------------------------------
   Component - Note Label
------------------------------- */

.note {
	margin-bottom: 20px;
	padding: 15px;
	border-left: 3px solid;
	position: relative;
	border-radius: 4px;
}
.panel > .note {
	border-radius: 0;
}
.note h1,
.note h2,
.note h3,
.note h4,
.note h5,
.note h6 {
	color: inherit;
}
.note .note-icon {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 80px;
	font-size: 56px;
	line-height: 56px;
	text-align: center;
}
.note .note-icon > i {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin-top: -28px;
}
.note .note-icon + .note-content {
	margin-left: 85px;
}
.note.note-with-right-icon {
	border-left: none;
	border-right: 3px solid;
}
.note.note-with-right-icon .note-icon {
	left: auto;
	right: 0;
}
.note.note-with-right-icon .note-content {
	margin-left: 0;
	margin-right: 85px;
}
.note-danger { border-color: #FF3B30; background: #ffcecb; color: #801e18; }
.note-danger .note-icon { background: #FF3B30; }
.note-warning { border-color: #FF9500; background: #ffe4bf; color: #804b00; }
.note-warning .note-icon { background: #FF9500; }
.note-yellow { border-color: #ffd900; background: #fff2bf; color: #806d00; }
.note-yellow .note-icon { background: #ffd900; }
.note-lime { border-color: #90ca4b; background: #ddefc9; color: #486626; }
.note-lime .note-icon { background: #90ca4b; }
.note-success { border-color: #4CD964; background: #d2f5d8; color: #266d32; }
.note-success .note-icon { background: #4CD964; }
.note-primary { border-color: #007aff; background: #bfdeff; color: #003d80; }
.note-primary .note-icon { background: #007aff; }
.note-info { border-color: #5AC8FA; background: #d6f1fe; color: #2d647d; }
.note-info .note-icon { background: #5AC8FA; }
.note-purple { border-color: #b503ff; background: #f0cdff; color: #5b0280; }
.note-purple .note-icon { background: #b503ff; }
.note-dark, .note.note-inverse { border-color: #222; background: #c8c8c8; color: #111; }
.note-dark .note-icon, .note.note-inverse .note-icon { background: #222; }
.note-secondary, .note.note-default { border-color: #bbb; background: #e2e2e3; color: #454548; }
.note-secondary .note-icon, .note.note-default .note-icon { background: #bbb; }
.note-light { border-color: #fff; background: #fff; color: #666; }
.note-light .note-icon { background: #fff; }
.note-indigo { border-color: #5856D6; background: #cdccf3; color: #2c2b6b; }
.note-indigo .note-icon { background: #5856D6; }
.note-pink { border-color: #FF2D55; background: #ffc0cc; color: #80172b; }
.note-pink .note-icon { background: #FF2D55; }
.note-green { border-color: #58eaa1; background: #cdf9e3; color: #2c7551; }
.note-green .note-icon { background: #58eaa1; }

/* -------------------------------
   Modules Common Style
------------------------------- */

.bw-modules-top {
    margin-top: 25px;
}
.bw-modules-page-area {
    text-align: center;
    margin-bottom: 20px;
}
.bw-modules-page-area-bg {
    background: #ececec;
	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
	background-attachment: fixed;
	margin-top: 0px;
	position: relative;
	padding-top: 55px;
    padding-bottom: 45px;
}
.bw-modules-page-area-bg:after {
    display: block !important;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: none;
    z-index: 0;
}
.bw-modules-page-info {
    z-index: 1;
}
.bw-modules-page-area-extra {
    margin-bottom: -10px;
}
.bw-modules-page-area-extra-2 {
    margin-bottom: 0px;
}
.bw-modules-page-area-extra-3 {
    margin-bottom: 40px;
}
.bw-modules-page-area-extra-4 {
    padding-top: 65px;
    padding-bottom: 52px;
}
.bw-modules-page-desc {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.bw-tabscolor-1 .nav-pills > li > a {
    text-transform: uppercase;
	padding: 10px 20px;
    margin-bottom: 5px;
}
.bw-tabscolor-1 .nav-pills i {
    margin-right:3px;
}
.bw-tabscolor-1 .nav-pills > li + li {
    margin-left: 15px;
}
.bw-tabscolor-1 .nav.nav-tabs > li > a {
    text-transform: uppercase;
	padding: 10px 20px;
    margin-bottom: 5px;
}
.bw-tabscolor-1 .nav-tabs i {
    margin-right:3px;
}



/* -------------------------------
   Module Colors
------------------------------- */

.bw-bg-1 {
    background: #f1f1f1;
}
.bw-bg-1-2 {
    background: #ececec;
}
.bw-bg-2 {
    background: #7f7f7f;
}


.bw-color-1-1 {
    color: #929ba1;
}
.bw-color-1 {
    color: #222;
}
.bw-color-a-1 a {
    color: #222;
}
.bw-color-a-1 a:hover {
    color: #222;
}

.bw-tabscolor-1 .nav.nav-tabs > li > a {
    background: #eee;
    color: #333;
    border-color: rgb(245 245 245);
}
.bw-tabscolor-1 .nav.nav-tabs > li > a:hover {
    background: #313131;
    color: #fff;
    border-color: rgb(49 49 49);
}
.bw-tabscolor-1 .nav.nav-tabs > li > .active  {
    background: #313131;
    color: #fff;
    border-color: rgb(49 49 49);
}
.bw-tabscolor-1 .nav.nav-pills > li > a {
    background: #eee;
    color: #333;
    border-color: rgb(245 245 245);
}
.bw-tabscolor-1 .nav.nav-pills > li > a:hover {
    background: #313131;
    color: #fff;
    border-color: rgb(49 49 49);
}
.bw-tabscolor-1 .nav.nav-pills > li > .active  {
    background: #313131;
    color: #fff;
    border-color: rgb(49 49 49);
}
.bw-btn-white-a {
    color: #ffffff;
}
.bw-btn-white-a:hover {
    color: #ffffff;
}
/* -------------------------------
   Z-Custom
------------------------------- */
.price-tag{
	display:block !important;
	margin: 2px 20px 0 0px;
}
.zmt5{
	margin-top:5px;
}
.zmt10{
	margin-top:10px;
}
.zmt15{
	margin-top:15px;
}
.zpt5{
	padding-top:5px;
}
.zpt10{
	padding-top:10px;
}
.zm10{
	margin:10px;
}
.zmb10{
	margin-bottom:10px;
}
.zmb15{
	margin-bottom:15px;
}
.zp10{
	padding:10px;
}
.hidden{
	display:none;
}
.booking-modal-h5{
	width:95%;
}
/* -------------------------------
   2 Factor Auth
------------------------------- */
#security-overlay {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 5555555555;
	top: 0;
	left: 0;
	background:#000;
	overflow-x: hidden;
	transition: 0.5s;
}
#security-cover {
	background:#000;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	position: relative;
}
#security-cover-caption {
	width: 100%;
	position: relative;
	z-index: 1;
}
#security-form:before {
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.3);
	z-index: -1;
	border-radius: 10px;
}
.security-fix{
	font-size: 1.5rem;
	color: #fff;
}

/* -------------------------------
   Meeting Rooms / Events Colors
------------------------------- */
.be-category-bar-blue {background-color: #028ff3;}
.be-category-bar-pink {background-color: #f5569c;}
.be-category-bar-yellow {background-color: #cd3333;}
.be-category-bar-orange {background-color: #fb8104;}
.be-category-bar-green {background-color: #318c41;}
.be-category-bar-white {background-color: #111111;}
.be-category-bar-purple {background-color: #9900CC;}

.fc-time-grid .fc-bgevent, .fc-time-grid .fc-event {
    background-image: linear-gradient( 60deg , transparent, rgb(255 255 255 / 25%));
}
