@charset "UTF-8";
@import url(/assets/common/common/fonts/ROBOTO/fonts.css);
@import url(/assets/common/common/fonts/en_OpenSans/fonts.css);
/***********************************************************************************************************************
 * Grid break point
 ***********************************************************************************************************************/
/*
// for mobile
@media (max-width:$grid-float-breakpoint-max) {}

// SCREEN(MD)
@media only screen
and (min-width:$screen-md)
and (max-width: $screen-md-max)
{}

// for desktop
@media (min-width:$grid-float-breakpoint) {}
*/
/***********************************************************************************************************************
 * Path
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Bootstrap variables for custom style
 ***********************************************************************************************************************/
/**
언어별 파일에서 $font-global-font 를 설정하면 각각 다른 언어로 css 파일을 만들 수 있다.
 */
/***********************************************************************************************************************
 * Hack
 *
 ***********************************************************************************************************************/
/* ie hack */
/***********************************************************************************************************************
 * Icomoon과 충돌 방지
 ***********************************************************************************************************************/
.glyphicon {
  font-family: "Glyphicons Halflings" !important;
}

/********** Panels **********/
/********** Toggle Switch 버튼 **********/
/***********************************************************************************************************************
 *
 * 사이트의 custom view 스타일만을 위한 파일.(bootstrap은 별도로 컴파일됨)
 * view, layout scss만 컴파일 되므로 속도가 빠름.
 *
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Grid break point
 ***********************************************************************************************************************/
/*
// for mobile
@media (max-width:$grid-float-breakpoint-max) {}

// SCREEN(MD)
@media only screen
and (min-width:$screen-md)
and (max-width: $screen-md-max)
{}

// for desktop
@media (min-width:$grid-float-breakpoint) {}
*/
/***********************************************************************************************************************
 * Path
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Bootstrap variables for custom style
 ***********************************************************************************************************************/
/**
언어별 파일에서 $font-global-font 를 설정하면 각각 다른 언어로 css 파일을 만들 수 있다.
 */
/***********************************************************************************************************************
 * Hack
 *
 ***********************************************************************************************************************/
/* ie hack */
/***********************************************************************************************************************
 * Icomoon과 충돌 방지
 ***********************************************************************************************************************/
.glyphicon {
  font-family: "Glyphicons Halflings" !important;
}

/********** Panels **********/
/********** Toggle Switch 버튼 **********/
/***********************************************************************************************************************
 * Default Main Color
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * 절대!! 지우지 말것! 컬러 component를 만들어줌.
 * 컬러가 추가되면 color-list와 color-brand-list에 추가할 것.
 * color-list와 brand-list의 순서는 동일해야 함.
 ************************************************************************************************************************/
/***********************************************************************************************************************
 * Config Style Variables
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Base Style Variables
 ***********************************************************************************************************************/
/**
 * Make align position
 */
/**
 *
 */
/**
 * Make border radius
 */
/**
SYNTEX
background: linear-gradient(angle, color-stop1, color-stop2);

@include make_gradient_linear(-90deg, red, yellow)
*/
/**
@include make_gradient_linear_repeat(red, yellow 10%, green 20%)
*/
/**
SYNTEX
background: radial-gradient(shape size at position, start-color, ..., last-color);

@include make_gradient_radial(red, yellow, green);              // 박스의 가로세로 비율 맞춰 fixed 비율
@include make_gradient_radial(red 5%, yellow 15%, green 60%);   // 박스의 가로세로 비율 맞춤
@include make_gradient_radial(circle, red, yellow, green);      // 정원
*/
/**
@include make_gradient_radial_repeat(red, yellow 10%, green 15%);
*/
/**
 * Make box shadow
 */
/**
 * Make position animation
 */
/**
 * Make transparent
 */
/**
 * Make flex object
 */
/**
 * Make blur
 */
/**
 * Make fade in and out
 */
/**
* buttons-size overwrite to bootstrap
*/
/**
 * draw browser break point in body
 */
/***********************************************************************************************************************
 * hidden-mobile, hidden-desktop
 ***********************************************************************************************************************/
@media (max-width: 991px) {
  .show-mobile {
    display: block !important;
  }
  .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .show-desktop {
    display: block !important;
  }
  .hidden-desktop {
    display: none !important;
  }
}
/***********************************************************************************************************************
 * toggle-switch
 ***********************************************************************************************************************/
.toggle-switch,
.toggle-switch-md {
  position: relative;
  display: inline-block;
  width: 110px;
  border: solid 1px #337ab7;
  line-height: 1px;
  background-color: #FFF;
  padding: 1px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.toggle-switch > input,
.toggle-switch-md > input {
  display: none;
}
.toggle-switch > label,
.toggle-switch-md > label {
  position: relative;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.toggle-switch > label:before,
.toggle-switch-md > label:before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.toggle-switch > label > span,
.toggle-switch-md > label > span {
  position: relative;
  display: inline-block;
  width: 50%;
  padding: 5px 0;
  z-index: 1;
  font-size: 11px;
  line-height: 11px;
  text-align: center;
  color: #999;
  font-weight: bold;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.toggle-switch > label > span:first-child,
.toggle-switch-md > label > span:first-child {
  float: left;
}
.toggle-switch > label > span:last-child,
.toggle-switch-md > label > span:last-child {
  float: right;
}
.toggle-switch > input + label:before,
.toggle-switch-md > input + label:before {
  left: 50%;
  background-color: #999;
}
.toggle-switch > input + label > span:first-child,
.toggle-switch-md > input + label > span:first-child {
  color: #337ab7;
}
.toggle-switch > input + label > span:last-child,
.toggle-switch-md > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch > input:checked + label:before,
.toggle-switch-md > input:checked + label:before {
  left: 0;
  background-color: #337ab7;
}
.toggle-switch > input:checked + label > span:first-child,
.toggle-switch-md > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch > input:checked + label > span:last-child,
.toggle-switch-md > input:checked + label > span:last-child {
  color: #999;
}
.toggle-switch.disabled,
.toggle-switch-md.disabled {
  opacity: 0.4;
  filter: alpha(opacity=40); /* For IE8 and earlier */
}
.toggle-switch.disabled label,
.toggle-switch-md.disabled label {
  cursor: auto;
}
.toggle-switch.toggle-switch-xs > label > span,
.toggle-switch-md.toggle-switch-xs > label > span {
  display: none;
}
.toggle-switch.toggle-switch-sm > label > span,
.toggle-switch-md.toggle-switch-sm > label > span {
  text-transform: lowercase;
}
.toggle-switch.toggle-switch-lg > label > span,
.toggle-switch-md.toggle-switch-lg > label > span {
  text-transform: uppercase;
}

.toggle-switch-xs {
  position: relative;
  display: inline-block;
  width: 36px;
  border: solid 1px #337ab7;
  line-height: 1px;
  background-color: #FFF;
  padding: 1px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.toggle-switch-xs > input {
  display: none;
}
.toggle-switch-xs > label {
  position: relative;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.toggle-switch-xs > label:before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.toggle-switch-xs > label > span {
  position: relative;
  display: inline-block;
  width: 50%;
  padding: 3px 0;
  z-index: 1;
  font-size: 8px;
  line-height: 8px;
  text-align: center;
  color: #999;
  font-weight: bold;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.toggle-switch-xs > label > span:first-child {
  float: left;
}
.toggle-switch-xs > label > span:last-child {
  float: right;
}
.toggle-switch-xs > input + label:before {
  left: 50%;
  background-color: #999;
}
.toggle-switch-xs > input + label > span:first-child {
  color: #337ab7;
}
.toggle-switch-xs > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-xs > input:checked + label:before {
  left: 0;
  background-color: #337ab7;
}
.toggle-switch-xs > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-xs > input:checked + label > span:last-child {
  color: #999;
}
.toggle-switch-xs.disabled {
  opacity: 0.4;
  filter: alpha(opacity=40); /* For IE8 and earlier */
}
.toggle-switch-xs.disabled label {
  cursor: auto;
}
.toggle-switch-xs.toggle-switch-xs > label > span {
  display: none;
}
.toggle-switch-xs.toggle-switch-sm > label > span {
  text-transform: lowercase;
}
.toggle-switch-xs.toggle-switch-lg > label > span {
  text-transform: uppercase;
}

.toggle-switch-sm {
  position: relative;
  display: inline-block;
  width: 80px;
  border: solid 1px #337ab7;
  line-height: 1px;
  background-color: #FFF;
  padding: 1px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.toggle-switch-sm > input {
  display: none;
}
.toggle-switch-sm > label {
  position: relative;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.toggle-switch-sm > label:before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.toggle-switch-sm > label > span {
  position: relative;
  display: inline-block;
  width: 50%;
  padding: 4px 0;
  z-index: 1;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  color: #999;
  font-weight: bold;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.toggle-switch-sm > label > span:first-child {
  float: left;
}
.toggle-switch-sm > label > span:last-child {
  float: right;
}
.toggle-switch-sm > input + label:before {
  left: 50%;
  background-color: #999;
}
.toggle-switch-sm > input + label > span:first-child {
  color: #337ab7;
}
.toggle-switch-sm > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-sm > input:checked + label:before {
  left: 0;
  background-color: #337ab7;
}
.toggle-switch-sm > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-sm > input:checked + label > span:last-child {
  color: #999;
}
.toggle-switch-sm.disabled {
  opacity: 0.4;
  filter: alpha(opacity=40); /* For IE8 and earlier */
}
.toggle-switch-sm.disabled label {
  cursor: auto;
}
.toggle-switch-sm.toggle-switch-xs > label > span {
  display: none;
}
.toggle-switch-sm.toggle-switch-sm > label > span {
  text-transform: lowercase;
}
.toggle-switch-sm.toggle-switch-lg > label > span {
  text-transform: uppercase;
}

.toggle-switch-lg {
  position: relative;
  display: inline-block;
  width: 150px;
  border: solid 1px #337ab7;
  line-height: 1px;
  background-color: #FFF;
  padding: 1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.toggle-switch-lg > input {
  display: none;
}
.toggle-switch-lg > label {
  position: relative;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.toggle-switch-lg > label:before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.toggle-switch-lg > label > span {
  position: relative;
  display: inline-block;
  width: 50%;
  padding: 10px 0;
  z-index: 1;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #999;
  font-weight: bold;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.toggle-switch-lg > label > span:first-child {
  float: left;
}
.toggle-switch-lg > label > span:last-child {
  float: right;
}
.toggle-switch-lg > input + label:before {
  left: 50%;
  background-color: #999;
}
.toggle-switch-lg > input + label > span:first-child {
  color: #337ab7;
}
.toggle-switch-lg > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-lg > input:checked + label:before {
  left: 0;
  background-color: #337ab7;
}
.toggle-switch-lg > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-lg > input:checked + label > span:last-child {
  color: #999;
}
.toggle-switch-lg.disabled {
  opacity: 0.4;
  filter: alpha(opacity=40); /* For IE8 and earlier */
}
.toggle-switch-lg.disabled label {
  cursor: auto;
}
.toggle-switch-lg.toggle-switch-xs > label > span {
  display: none;
}
.toggle-switch-lg.toggle-switch-sm > label > span {
  text-transform: lowercase;
}
.toggle-switch-lg.toggle-switch-lg > label > span {
  text-transform: uppercase;
}

.toggle-switch-white {
  border-color: #999;
  background-color: transparent;
}
.toggle-switch-white > label {
  color: #999;
}
.toggle-switch-white > input + label:before {
  background-color: #999;
}
.toggle-switch-white > input + label > span:first-child {
  color: #FFF;
}
.toggle-switch-white > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-white > input:checked + label:before {
  background-color: #FFF;
}
.toggle-switch-white > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-white > input:checked + label > span:last-child {
  color: #999;
}
.toggle-switch-white > input + label > span:last-child {
  color: #FFF !important;
}
.toggle-switch-white > input:checked + label > span:first-child {
  color: #999;
}

.toggle-switch-primary {
  border-color: #999;
}
.toggle-switch-primary > label {
  color: #999;
}
.toggle-switch-primary > input + label:before {
  background-color: #999;
}
.toggle-switch-primary > input + label > span:first-child {
  color: #337ab7;
}
.toggle-switch-primary > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-primary > input:checked + label:before {
  background-color: #337ab7;
}
.toggle-switch-primary > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-primary > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-success {
  border-color: #999;
}
.toggle-switch-success > label {
  color: #999;
}
.toggle-switch-success > input + label:before {
  background-color: #999;
}
.toggle-switch-success > input + label > span:first-child {
  color: #5cb85c;
}
.toggle-switch-success > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-success > input:checked + label:before {
  background-color: #5cb85c;
}
.toggle-switch-success > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-success > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-info {
  border-color: #999;
}
.toggle-switch-info > label {
  color: #999;
}
.toggle-switch-info > input + label:before {
  background-color: #999;
}
.toggle-switch-info > input + label > span:first-child {
  color: #5bc0de;
}
.toggle-switch-info > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-info > input:checked + label:before {
  background-color: #5bc0de;
}
.toggle-switch-info > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-info > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-warning {
  border-color: #999;
}
.toggle-switch-warning > label {
  color: #999;
}
.toggle-switch-warning > input + label:before {
  background-color: #999;
}
.toggle-switch-warning > input + label > span:first-child {
  color: #f0ad4e;
}
.toggle-switch-warning > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-warning > input:checked + label:before {
  background-color: #f0ad4e;
}
.toggle-switch-warning > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-warning > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-danger {
  border-color: #999;
}
.toggle-switch-danger > label {
  color: #999;
}
.toggle-switch-danger > input + label:before {
  background-color: #999;
}
.toggle-switch-danger > input + label > span:first-child {
  color: #d9534f;
}
.toggle-switch-danger > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-danger > input:checked + label:before {
  background-color: #d9534f;
}
.toggle-switch-danger > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-danger > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-white {
  border-color: #999;
  background-color: transparent;
}
.toggle-switch-white > label {
  color: #999;
}
.toggle-switch-white > input + label:before {
  background-color: #999;
}
.toggle-switch-white > input + label > span:first-child {
  color: #FFF;
}
.toggle-switch-white > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-white > input:checked + label:before {
  background-color: #FFF;
}
.toggle-switch-white > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-white > input:checked + label > span:last-child {
  color: #999;
}
.toggle-switch-white > input + label > span:last-child {
  color: #FFF !important;
}
.toggle-switch-white > input:checked + label > span:first-child {
  color: #999;
}

.toggle-switch-main {
  border-color: #999;
}
.toggle-switch-main > label {
  color: #999;
}
.toggle-switch-main > input + label:before {
  background-color: #999;
}
.toggle-switch-main > input + label > span:first-child {
  color: #2e7ad8;
}
.toggle-switch-main > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-main > input:checked + label:before {
  background-color: #2e7ad8;
}
.toggle-switch-main > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-main > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-main-pin {
  border-color: #999;
}
.toggle-switch-main-pin > label {
  color: #999;
}
.toggle-switch-main-pin > input + label:before {
  background-color: #999;
}
.toggle-switch-main-pin > input + label > span:first-child {
  color: #5bc0de;
}
.toggle-switch-main-pin > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-main-pin > input:checked + label:before {
  background-color: #5bc0de;
}
.toggle-switch-main-pin > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-main-pin > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-red {
  border-color: #999;
}
.toggle-switch-red > label {
  color: #999;
}
.toggle-switch-red > input + label:before {
  background-color: #999;
}
.toggle-switch-red > input + label > span:first-child {
  color: #fe4641;
}
.toggle-switch-red > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-red > input:checked + label:before {
  background-color: #fe4641;
}
.toggle-switch-red > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-red > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-red-dark {
  border-color: #999;
}
.toggle-switch-red-dark > label {
  color: #999;
}
.toggle-switch-red-dark > input + label:before {
  background-color: #999;
}
.toggle-switch-red-dark > input + label > span:first-child {
  color: #d2182e;
}
.toggle-switch-red-dark > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-red-dark > input:checked + label:before {
  background-color: #d2182e;
}
.toggle-switch-red-dark > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-red-dark > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-excel-green {
  border-color: #999;
}
.toggle-switch-excel-green > label {
  color: #999;
}
.toggle-switch-excel-green > input + label:before {
  background-color: #999;
}
.toggle-switch-excel-green > input + label > span:first-child {
  color: #45760f;
}
.toggle-switch-excel-green > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-excel-green > input:checked + label:before {
  background-color: #45760f;
}
.toggle-switch-excel-green > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-excel-green > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-green {
  border-color: #999;
}
.toggle-switch-green > label {
  color: #999;
}
.toggle-switch-green > input + label:before {
  background-color: #999;
}
.toggle-switch-green > input + label > span:first-child {
  color: #91af1a;
}
.toggle-switch-green > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-green > input:checked + label:before {
  background-color: #91af1a;
}
.toggle-switch-green > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-green > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-dark-violet {
  border-color: #999;
}
.toggle-switch-dark-violet > label {
  color: #999;
}
.toggle-switch-dark-violet > input + label:before {
  background-color: #999;
}
.toggle-switch-dark-violet > input + label > span:first-child {
  color: #3f4b77;
}
.toggle-switch-dark-violet > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-dark-violet > input:checked + label:before {
  background-color: #3f4b77;
}
.toggle-switch-dark-violet > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-dark-violet > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-emerald {
  border-color: #999;
}
.toggle-switch-emerald > label {
  color: #999;
}
.toggle-switch-emerald > input + label:before {
  background-color: #999;
}
.toggle-switch-emerald > input + label > span:first-child {
  color: #14afc1;
}
.toggle-switch-emerald > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-emerald > input:checked + label:before {
  background-color: #14afc1;
}
.toggle-switch-emerald > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-emerald > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-gray {
  border-color: #999;
}
.toggle-switch-gray > label {
  color: #999;
}
.toggle-switch-gray > input + label:before {
  background-color: #999;
}
.toggle-switch-gray > input + label > span:first-child {
  color: #9f9f9f;
}
.toggle-switch-gray > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-gray > input:checked + label:before {
  background-color: #9f9f9f;
}
.toggle-switch-gray > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-gray > input:checked + label > span:last-child {
  color: #999;
}

.toggle-switch-navy {
  border-color: #999;
}
.toggle-switch-navy > label {
  color: #999;
}
.toggle-switch-navy > input + label:before {
  background-color: #999;
}
.toggle-switch-navy > input + label > span:first-child {
  color: #242f52;
}
.toggle-switch-navy > input + label > span:last-child {
  color: #FFF;
}
.toggle-switch-navy > input:checked + label:before {
  background-color: #242f52;
}
.toggle-switch-navy > input:checked + label > span:first-child {
  color: #FFF;
}
.toggle-switch-navy > input:checked + label > span:last-child {
  color: #999;
}

/***********************************************************************************************************************
 * Radio & Checkbox
 ***********************************************************************************************************************/
.radio-xs {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding-left: 0 !important;
}
.radio-xs input {
  display: none;
}
.radio-xs .label-text {
  position: relative;
  padding-left: 16px;
}
.radio-xs .label-text:before, .radio-xs .label-text:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.radio-xs .label-text:before {
  width: 11px;
  height: 11px;
  margin-right: 3px;
  border: solid 1px #e0e5e8;
}
.radio-xs .label-text:after {
  left: 3px;
  width: 5px;
  height: 5px;
  border: none;
}
.radio-xs input:checked + .label-text:after {
  background-color: #e0e5e8;
}

.radio, .radio-sm {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding-left: 0 !important;
}
.radio input, .radio-sm input {
  display: none;
}
.radio .label-text, .radio-sm .label-text {
  position: relative;
  padding-left: 19px;
}
.radio .label-text:before, .radio .label-text:after, .radio-sm .label-text:before, .radio-sm .label-text:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.radio .label-text:before, .radio-sm .label-text:before {
  width: 14px;
  height: 14px;
  margin-right: 3px;
  border: solid 1px #e0e5e8;
}
.radio .label-text:after, .radio-sm .label-text:after {
  left: 3px;
  width: 8px;
  height: 8px;
  border: none;
}
.radio input:checked + .label-text:after, .radio-sm input:checked + .label-text:after {
  background-color: #e0e5e8;
}

.radio-md {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding-left: 0 !important;
}
.radio-md input {
  display: none;
}
.radio-md .label-text {
  position: relative;
  padding-left: 23px;
}
.radio-md .label-text:before, .radio-md .label-text:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.radio-md .label-text:before {
  width: 18px;
  height: 18px;
  margin-right: 3px;
  border: solid 1px #e0e5e8;
}
.radio-md .label-text:after {
  left: 3px;
  width: 12px;
  height: 12px;
  border: none;
}
.radio-md input:checked + .label-text:after {
  background-color: #e0e5e8;
}

.radio-lg {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding-left: 0 !important;
}
.radio-lg input {
  display: none;
}
.radio-lg .label-text {
  position: relative;
  padding-left: 27px;
}
.radio-lg .label-text:before, .radio-lg .label-text:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.radio-lg .label-text:before {
  width: 22px;
  height: 22px;
  margin-right: 3px;
  border: solid 1px #e0e5e8;
}
.radio-lg .label-text:after {
  left: 3px;
  width: 16px;
  height: 16px;
  border: none;
}
.radio-lg input:checked + .label-text:after {
  background-color: #e0e5e8;
}

.radio-primary input:checked + .label-text:after {
  background-color: #337ab7;
}

.radio-success input:checked + .label-text:after {
  background-color: #5cb85c;
}

.radio-info input:checked + .label-text:after {
  background-color: #5bc0de;
}

.radio-warning input:checked + .label-text:after {
  background-color: #f0ad4e;
}

.radio-danger input:checked + .label-text:after {
  background-color: #d9534f;
}

.radio-white input:checked + .label-text:after {
  background-color: #FFF;
}

.radio-main input:checked + .label-text:after {
  background-color: #2e7ad8;
}

.radio-main-pin input:checked + .label-text:after {
  background-color: #5bc0de;
}

.radio-red input:checked + .label-text:after {
  background-color: #fe4641;
}

.radio-red-dark input:checked + .label-text:after {
  background-color: #d2182e;
}

.radio-excel-green input:checked + .label-text:after {
  background-color: #45760f;
}

.radio-green input:checked + .label-text:after {
  background-color: #91af1a;
}

.radio-dark-violet input:checked + .label-text:after {
  background-color: #3f4b77;
}

.radio-emerald input:checked + .label-text:after {
  background-color: #14afc1;
}

.radio-gray input:checked + .label-text:after {
  background-color: #9f9f9f;
}

.radio-navy input:checked + .label-text:after {
  background-color: #242f52;
}

.checkbox-xs {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding-left: 0 !important;
}
.checkbox-xs input {
  display: none;
}
.checkbox-xs .label-text {
  position: relative;
  padding-left: 16px;
}
.checkbox-xs .label-text:before, .checkbox-xs .label-text:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.checkbox-xs .label-text:before {
  width: 11px;
  height: 11px;
  margin-right: 3px;
  border: solid 1px #e0e5e8;
}
.checkbox-xs .label-text:after {
  left: 3px;
  width: 5px;
  height: 5px;
  border: none;
}
.checkbox-xs input:checked + .label-text:after {
  background-color: #e0e5e8;
}

.checkbox, .checkbox-sm {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding-left: 0 !important;
}
.checkbox input, .checkbox-sm input {
  display: none;
}
.checkbox .label-text, .checkbox-sm .label-text {
  position: relative;
  padding-left: 19px;
}
.checkbox .label-text:before, .checkbox .label-text:after, .checkbox-sm .label-text:before, .checkbox-sm .label-text:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.checkbox .label-text:before, .checkbox-sm .label-text:before {
  width: 14px;
  height: 14px;
  margin-right: 3px;
  border: solid 1px #e0e5e8;
}
.checkbox .label-text:after, .checkbox-sm .label-text:after {
  left: 3px;
  width: 8px;
  height: 8px;
  border: none;
}
.checkbox input:checked + .label-text:after, .checkbox-sm input:checked + .label-text:after {
  background-color: #e0e5e8;
}

.checkbox-md {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding-left: 0 !important;
}
.checkbox-md input {
  display: none;
}
.checkbox-md .label-text {
  position: relative;
  padding-left: 23px;
}
.checkbox-md .label-text:before, .checkbox-md .label-text:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.checkbox-md .label-text:before {
  width: 18px;
  height: 18px;
  margin-right: 3px;
  border: solid 1px #e0e5e8;
}
.checkbox-md .label-text:after {
  left: 3px;
  width: 12px;
  height: 12px;
  border: none;
}
.checkbox-md input:checked + .label-text:after {
  background-color: #e0e5e8;
}

.checkbox-lg {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding-left: 0 !important;
}
.checkbox-lg input {
  display: none;
}
.checkbox-lg .label-text {
  position: relative;
  padding-left: 27px;
}
.checkbox-lg .label-text:before, .checkbox-lg .label-text:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.checkbox-lg .label-text:before {
  width: 22px;
  height: 22px;
  margin-right: 3px;
  border: solid 1px #e0e5e8;
}
.checkbox-lg .label-text:after {
  left: 3px;
  width: 16px;
  height: 16px;
  border: none;
}
.checkbox-lg input:checked + .label-text:after {
  background-color: #e0e5e8;
}

.checkbox-primary .label-text:before {
  border-color: #337ab7;
}
.checkbox-primary input:checked + .label-text:after {
  background-color: #337ab7;
}

.checkbox-success .label-text:before {
  border-color: #5cb85c;
}
.checkbox-success input:checked + .label-text:after {
  background-color: #5cb85c;
}

.checkbox-info .label-text:before {
  border-color: #5bc0de;
}
.checkbox-info input:checked + .label-text:after {
  background-color: #5bc0de;
}

.checkbox-warning .label-text:before {
  border-color: #f0ad4e;
}
.checkbox-warning input:checked + .label-text:after {
  background-color: #f0ad4e;
}

.checkbox-danger .label-text:before {
  border-color: #d9534f;
}
.checkbox-danger input:checked + .label-text:after {
  background-color: #d9534f;
}

.checkbox-white .label-text:before {
  border-color: #FFF;
}
.checkbox-white input:checked + .label-text:after {
  background-color: #FFF;
}

.checkbox-main .label-text:before {
  border-color: #2e7ad8;
}
.checkbox-main input:checked + .label-text:after {
  background-color: #2e7ad8;
}

.checkbox-main-pin .label-text:before {
  border-color: #5bc0de;
}
.checkbox-main-pin input:checked + .label-text:after {
  background-color: #5bc0de;
}

.checkbox-red .label-text:before {
  border-color: #fe4641;
}
.checkbox-red input:checked + .label-text:after {
  background-color: #fe4641;
}

.checkbox-red-dark .label-text:before {
  border-color: #d2182e;
}
.checkbox-red-dark input:checked + .label-text:after {
  background-color: #d2182e;
}

.checkbox-excel-green .label-text:before {
  border-color: #45760f;
}
.checkbox-excel-green input:checked + .label-text:after {
  background-color: #45760f;
}

.checkbox-green .label-text:before {
  border-color: #91af1a;
}
.checkbox-green input:checked + .label-text:after {
  background-color: #91af1a;
}

.checkbox-dark-violet .label-text:before {
  border-color: #3f4b77;
}
.checkbox-dark-violet input:checked + .label-text:after {
  background-color: #3f4b77;
}

.checkbox-emerald .label-text:before {
  border-color: #14afc1;
}
.checkbox-emerald input:checked + .label-text:after {
  background-color: #14afc1;
}

.checkbox-gray .label-text:before {
  border-color: #9f9f9f;
}
.checkbox-gray input:checked + .label-text:after {
  background-color: #9f9f9f;
}

.checkbox-navy .label-text:before {
  border-color: #242f52;
}
.checkbox-navy input:checked + .label-text:after {
  background-color: #242f52;
}

/***********************************************************************************************************************
 * add text color
 * result - @include _text-emphasis-variant-maker('.text-primary', $brand-primary);
 ***********************************************************************************************************************/
.text-color-primary-light {
  color: #5094ce;
}

.text-color-primary-light-important {
  color: #5094ce !important;
}

.text-color-primary {
  color: #337ab7;
}

.text-color-primary-important {
  color: #337ab7 !important;
}

.text-color-primary-darken {
  color: #286090;
}

.text-color-primary-darken-important {
  color: #286090 !important;
}

.text-color-success-light {
  color: #80c780;
}

.text-color-success-light-important {
  color: #80c780 !important;
}

.text-color-success {
  color: #5cb85c;
}

.text-color-success-important {
  color: #5cb85c !important;
}

.text-color-success-darken {
  color: #449d44;
}

.text-color-success-darken-important {
  color: #449d44 !important;
}

.text-color-info-light {
  color: #85d0e7;
}

.text-color-info-light-important {
  color: #85d0e7 !important;
}

.text-color-info {
  color: #5bc0de;
}

.text-color-info-important {
  color: #5bc0de !important;
}

.text-color-info-darken {
  color: #31b0d5;
}

.text-color-info-darken-important {
  color: #31b0d5 !important;
}

.text-color-warning-light {
  color: #f4c37d;
}

.text-color-warning-light-important {
  color: #f4c37d !important;
}

.text-color-warning {
  color: #f0ad4e;
}

.text-color-warning-important {
  color: #f0ad4e !important;
}

.text-color-warning-darken {
  color: #ec971f;
}

.text-color-warning-darken-important {
  color: #ec971f !important;
}

.text-color-danger-light {
  color: #e27c79;
}

.text-color-danger-light-important {
  color: #e27c79 !important;
}

.text-color-danger {
  color: #d9534f;
}

.text-color-danger-important {
  color: #d9534f !important;
}

.text-color-danger-darken {
  color: #c9302c;
}

.text-color-danger-darken-important {
  color: #c9302c !important;
}

.text-color-white-light {
  color: white;
}

.text-color-white-light-important {
  color: white !important;
}

.text-color-white {
  color: #FFF;
}

.text-color-white-important {
  color: #FFF !important;
}

.text-color-white-darken {
  color: #e6e6e6;
}

.text-color-white-darken-important {
  color: #e6e6e6 !important;
}

.text-color-main-light {
  color: #5995e0;
}

.text-color-main-light-important {
  color: #5995e0 !important;
}

.text-color-main {
  color: #2e7ad8;
}

.text-color-main-important {
  color: #2e7ad8 !important;
}

.text-color-main-darken {
  color: #2162b2;
}

.text-color-main-darken-important {
  color: #2162b2 !important;
}

.text-color-main-pin-light {
  color: #85d0e7;
}

.text-color-main-pin-light-important {
  color: #85d0e7 !important;
}

.text-color-main-pin {
  color: #5bc0de;
}

.text-color-main-pin-important {
  color: #5bc0de !important;
}

.text-color-main-pin-darken {
  color: #31b0d5;
}

.text-color-main-pin-darken-important {
  color: #31b0d5 !important;
}

.text-color-red-light {
  color: #fe7774;
}

.text-color-red-light-important {
  color: #fe7774 !important;
}

.text-color-red {
  color: #fe4641;
}

.text-color-red-important {
  color: #fe4641 !important;
}

.text-color-red-darken {
  color: #fe150e;
}

.text-color-red-darken-important {
  color: #fe150e !important;
}

.text-color-red-dark-light {
  color: #e8354a;
}

.text-color-red-dark-light-important {
  color: #e8354a !important;
}

.text-color-red-dark {
  color: #d2182e;
}

.text-color-red-dark-important {
  color: #d2182e !important;
}

.text-color-red-dark-darken {
  color: #a41324;
}

.text-color-red-dark-darken-important {
  color: #a41324 !important;
}

.text-color-excel-green-light {
  color: #5fa315;
}

.text-color-excel-green-light-important {
  color: #5fa315 !important;
}

.text-color-excel-green {
  color: #45760f;
}

.text-color-excel-green-important {
  color: #45760f !important;
}

.text-color-excel-green-darken {
  color: #2b4909;
}

.text-color-excel-green-darken-important {
  color: #2b4909 !important;
}

.text-color-green-light {
  color: #b6db21;
}

.text-color-green-light-important {
  color: #b6db21 !important;
}

.text-color-green {
  color: #91af1a;
}

.text-color-green-important {
  color: #91af1a !important;
}

.text-color-green-darken {
  color: #6c8313;
}

.text-color-green-darken-important {
  color: #6c8313 !important;
}

.text-color-dark-violet-light {
  color: #516098;
}

.text-color-dark-violet-light-important {
  color: #516098 !important;
}

.text-color-dark-violet {
  color: #3f4b77;
}

.text-color-dark-violet-important {
  color: #3f4b77 !important;
}

.text-color-dark-violet-darken {
  color: #2d3656;
}

.text-color-dark-violet-darken-important {
  color: #2d3656 !important;
}

.text-color-emerald-light {
  color: #20d3e8;
}

.text-color-emerald-light-important {
  color: #20d3e8 !important;
}

.text-color-emerald {
  color: #14afc1;
}

.text-color-emerald-important {
  color: #14afc1 !important;
}

.text-color-emerald-darken {
  color: #0f8593;
}

.text-color-emerald-darken-important {
  color: #0f8593 !important;
}

.text-color-gray-light {
  color: #b9b9b9;
}

.text-color-gray-light-important {
  color: #b9b9b9 !important;
}

.text-color-gray {
  color: #9f9f9f;
}

.text-color-gray-important {
  color: #9f9f9f !important;
}

.text-color-gray-darken {
  color: #868686;
}

.text-color-gray-darken-important {
  color: #868686 !important;
}

.text-color-navy-light {
  color: #344375;
}

.text-color-navy-light-important {
  color: #344375 !important;
}

.text-color-navy {
  color: #242f52;
}

.text-color-navy-important {
  color: #242f52 !important;
}

.text-color-navy-darken {
  color: #141b2f;
}

.text-color-navy-darken-important {
  color: #141b2f !important;
}

/***********************************************************************************************************************
 * add button color and size
 ***********************************************************************************************************************/
.btn-white {
  color: #1a1a1a;
  background-color: #FFF;
  border-color: #ccc;
}
.btn-white:focus, .btn-white.focus {
  color: #1a1a1a;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-white:hover {
  color: #1a1a1a;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-white:active, .btn-white.active, .open > .btn-white.dropdown-toggle {
  color: #1a1a1a;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-white:active:hover, .btn-white:active:focus, .btn-white:active.focus, .btn-white.active:hover, .btn-white.active:focus, .btn-white.active.focus, .open > .btn-white.dropdown-toggle:hover, .open > .btn-white.dropdown-toggle:focus, .open > .btn-white.dropdown-toggle.focus {
  color: #1a1a1a;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-white.disabled:hover, .btn-white.disabled:focus, .btn-white.disabled.focus, .btn-white[disabled]:hover, .btn-white[disabled]:focus, .btn-white[disabled].focus, fieldset[disabled] .btn-white:hover, fieldset[disabled] .btn-white:focus, fieldset[disabled] .btn-white.focus {
  background-color: #FFF;
  border-color: #ccc;
}
.btn-white .badge {
  color: #FFF;
  background-color: #1a1a1a;
}

.btn-default {
  color: #333;
  background-color: #F4F4F4;
  border-color: #ccc;
}
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #dbdbdb;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #dbdbdb;
  border-color: #adadad;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #dbdbdb;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #c9c9c9;
  border-color: #8c8c8c;
}
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #F4F4F4;
  border-color: #ccc;
}
.btn-default .badge {
  color: #F4F4F4;
  background-color: #333;
}

.btn-gray {
  color: #333;
  background-color: #dbe1e8;
  border-color: #cbd4de;
}
.btn-gray:focus, .btn-gray.focus {
  color: #333;
  background-color: #bcc7d4;
  border-color: #7e93ac;
}
.btn-gray:hover {
  color: #333;
  background-color: #bcc7d4;
  border-color: #a6b5c6;
}
.btn-gray:active, .btn-gray.active, .open > .btn-gray.dropdown-toggle {
  color: #333;
  background-color: #bcc7d4;
  background-image: none;
  border-color: #a6b5c6;
}
.btn-gray:active:hover, .btn-gray:active:focus, .btn-gray:active.focus, .btn-gray.active:hover, .btn-gray.active:focus, .btn-gray.active.focus, .open > .btn-gray.dropdown-toggle:hover, .open > .btn-gray.dropdown-toggle:focus, .open > .btn-gray.dropdown-toggle.focus {
  color: #333;
  background-color: #a6b5c6;
  border-color: #7e93ac;
}
.btn-gray.disabled:hover, .btn-gray.disabled:focus, .btn-gray.disabled.focus, .btn-gray[disabled]:hover, .btn-gray[disabled]:focus, .btn-gray[disabled].focus, fieldset[disabled] .btn-gray:hover, fieldset[disabled] .btn-gray:focus, fieldset[disabled] .btn-gray.focus {
  background-color: #dbe1e8;
  border-color: #cbd4de;
}
.btn-gray .badge {
  color: #dbe1e8;
  background-color: #333;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
}

.btn, .btn-md {
  padding: 7px 14px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
}

button:focus {
  outline: 0 !important;
}

.btn-primary {
  color: #FFF !important;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus, .btn-primary.focus {
  color: #FFF !important;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #FFF !important;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #FFF !important;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #FFF !important;
}

.btn-success {
  color: #FFF !important;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus, .btn-success.focus {
  color: #FFF !important;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #FFF !important;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #FFF !important;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #398439;
  border-color: #255625;
}
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #FFF !important;
}

.btn-info {
  color: #FFF !important;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus, .btn-info.focus {
  color: #FFF !important;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #FFF !important;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #FFF !important;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #FFF !important;
}

.btn-warning {
  color: #FFF !important;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus, .btn-warning.focus {
  color: #FFF !important;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #FFF !important;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #FFF !important;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #FFF !important;
}

.btn-danger {
  color: #FFF !important;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus, .btn-danger.focus {
  color: #FFF !important;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #FFF !important;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #FFF !important;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #FFF !important;
}

.btn-white {
  color: #FFF !important;
  background-color: #FFF;
  border-color: #f2f2f2;
}
.btn-white:focus, .btn-white.focus {
  color: #FFF !important;
  background-color: #e6e6e6;
  border-color: #b3b3b3;
}
.btn-white:hover {
  color: #FFF !important;
  background-color: #e6e6e6;
  border-color: #d4d4d4;
}
.btn-white:active, .btn-white.active, .open > .btn-white.dropdown-toggle {
  color: #FFF !important;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #d4d4d4;
}
.btn-white:active:hover, .btn-white:active:focus, .btn-white:active.focus, .btn-white.active:hover, .btn-white.active:focus, .btn-white.active.focus, .open > .btn-white.dropdown-toggle:hover, .open > .btn-white.dropdown-toggle:focus, .open > .btn-white.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #d4d4d4;
  border-color: #b3b3b3;
}
.btn-white.disabled:hover, .btn-white.disabled:focus, .btn-white.disabled.focus, .btn-white[disabled]:hover, .btn-white[disabled]:focus, .btn-white[disabled].focus, fieldset[disabled] .btn-white:hover, fieldset[disabled] .btn-white:focus, fieldset[disabled] .btn-white.focus {
  background-color: #FFF;
  border-color: #f2f2f2;
}
.btn-white .badge {
  color: #FFF;
  background-color: #FFF !important;
}

.btn-main {
  color: #FFF !important;
  background-color: #2e7ad8;
  border-color: #256ec7;
}
.btn-main:focus, .btn-main.focus {
  color: #FFF !important;
  background-color: #2162b2;
  border-color: #11335c;
}
.btn-main:hover {
  color: #FFF !important;
  background-color: #2162b2;
  border-color: #1c5194;
}
.btn-main:active, .btn-main.active, .open > .btn-main.dropdown-toggle {
  color: #FFF !important;
  background-color: #2162b2;
  background-image: none;
  border-color: #1c5194;
}
.btn-main:active:hover, .btn-main:active:focus, .btn-main:active.focus, .btn-main.active:hover, .btn-main.active:focus, .btn-main.active.focus, .open > .btn-main.dropdown-toggle:hover, .open > .btn-main.dropdown-toggle:focus, .open > .btn-main.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #1c5194;
  border-color: #11335c;
}
.btn-main.disabled:hover, .btn-main.disabled:focus, .btn-main.disabled.focus, .btn-main[disabled]:hover, .btn-main[disabled]:focus, .btn-main[disabled].focus, fieldset[disabled] .btn-main:hover, fieldset[disabled] .btn-main:focus, fieldset[disabled] .btn-main.focus {
  background-color: #2e7ad8;
  border-color: #256ec7;
}
.btn-main .badge {
  color: #2e7ad8;
  background-color: #FFF !important;
}

.btn-main-pin {
  color: #FFF !important;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-main-pin:focus, .btn-main-pin.focus {
  color: #FFF !important;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-main-pin:hover {
  color: #FFF !important;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-main-pin:active, .btn-main-pin.active, .open > .btn-main-pin.dropdown-toggle {
  color: #FFF !important;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
.btn-main-pin:active:hover, .btn-main-pin:active:focus, .btn-main-pin:active.focus, .btn-main-pin.active:hover, .btn-main-pin.active:focus, .btn-main-pin.active.focus, .open > .btn-main-pin.dropdown-toggle:hover, .open > .btn-main-pin.dropdown-toggle:focus, .open > .btn-main-pin.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-main-pin.disabled:hover, .btn-main-pin.disabled:focus, .btn-main-pin.disabled.focus, .btn-main-pin[disabled]:hover, .btn-main-pin[disabled]:focus, .btn-main-pin[disabled].focus, fieldset[disabled] .btn-main-pin:hover, fieldset[disabled] .btn-main-pin:focus, fieldset[disabled] .btn-main-pin.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-main-pin .badge {
  color: #5bc0de;
  background-color: #FFF !important;
}

.btn-red {
  color: #FFF !important;
  background-color: #fe4641;
  border-color: #fe2d28;
}
.btn-red:focus, .btn-red.focus {
  color: #FFF !important;
  background-color: #fe150e;
  border-color: #a50501;
}
.btn-red:hover {
  color: #FFF !important;
  background-color: #fe150e;
  border-color: #e70701;
}
.btn-red:active, .btn-red.active, .open > .btn-red.dropdown-toggle {
  color: #FFF !important;
  background-color: #fe150e;
  background-image: none;
  border-color: #e70701;
}
.btn-red:active:hover, .btn-red:active:focus, .btn-red:active.focus, .btn-red.active:hover, .btn-red.active:focus, .btn-red.active.focus, .open > .btn-red.dropdown-toggle:hover, .open > .btn-red.dropdown-toggle:focus, .open > .btn-red.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #e70701;
  border-color: #a50501;
}
.btn-red.disabled:hover, .btn-red.disabled:focus, .btn-red.disabled.focus, .btn-red[disabled]:hover, .btn-red[disabled]:focus, .btn-red[disabled].focus, fieldset[disabled] .btn-red:hover, fieldset[disabled] .btn-red:focus, fieldset[disabled] .btn-red.focus {
  background-color: #fe4641;
  border-color: #fe2d28;
}
.btn-red .badge {
  color: #fe4641;
  background-color: #FFF !important;
}

.btn-red-dark {
  color: #FFF !important;
  background-color: #d2182e;
  border-color: #bb1529;
}
.btn-red-dark:focus, .btn-red-dark.focus {
  color: #FFF !important;
  background-color: #a41324;
  border-color: #490810;
}
.btn-red-dark:hover {
  color: #FFF !important;
  background-color: #a41324;
  border-color: #840f1d;
}
.btn-red-dark:active, .btn-red-dark.active, .open > .btn-red-dark.dropdown-toggle {
  color: #FFF !important;
  background-color: #a41324;
  background-image: none;
  border-color: #840f1d;
}
.btn-red-dark:active:hover, .btn-red-dark:active:focus, .btn-red-dark:active.focus, .btn-red-dark.active:hover, .btn-red-dark.active:focus, .btn-red-dark.active.focus, .open > .btn-red-dark.dropdown-toggle:hover, .open > .btn-red-dark.dropdown-toggle:focus, .open > .btn-red-dark.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #840f1d;
  border-color: #490810;
}
.btn-red-dark.disabled:hover, .btn-red-dark.disabled:focus, .btn-red-dark.disabled.focus, .btn-red-dark[disabled]:hover, .btn-red-dark[disabled]:focus, .btn-red-dark[disabled].focus, fieldset[disabled] .btn-red-dark:hover, fieldset[disabled] .btn-red-dark:focus, fieldset[disabled] .btn-red-dark.focus {
  background-color: #d2182e;
  border-color: #bb1529;
}
.btn-red-dark .badge {
  color: #d2182e;
  background-color: #FFF !important;
}

.btn-excel-green {
  color: #FFF !important;
  background-color: #45760f;
  border-color: #385f0c;
}
.btn-excel-green:focus, .btn-excel-green.focus {
  color: #FFF !important;
  background-color: #2b4909;
  border-color: black;
}
.btn-excel-green:hover {
  color: #FFF !important;
  background-color: #2b4909;
  border-color: #182905;
}
.btn-excel-green:active, .btn-excel-green.active, .open > .btn-excel-green.dropdown-toggle {
  color: #FFF !important;
  background-color: #2b4909;
  background-image: none;
  border-color: #182905;
}
.btn-excel-green:active:hover, .btn-excel-green:active:focus, .btn-excel-green:active.focus, .btn-excel-green.active:hover, .btn-excel-green.active:focus, .btn-excel-green.active.focus, .open > .btn-excel-green.dropdown-toggle:hover, .open > .btn-excel-green.dropdown-toggle:focus, .open > .btn-excel-green.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #182905;
  border-color: black;
}
.btn-excel-green.disabled:hover, .btn-excel-green.disabled:focus, .btn-excel-green.disabled.focus, .btn-excel-green[disabled]:hover, .btn-excel-green[disabled]:focus, .btn-excel-green[disabled].focus, fieldset[disabled] .btn-excel-green:hover, fieldset[disabled] .btn-excel-green:focus, fieldset[disabled] .btn-excel-green.focus {
  background-color: #45760f;
  border-color: #385f0c;
}
.btn-excel-green .badge {
  color: #45760f;
  background-color: #FFF !important;
}

.btn-green {
  color: #FFF !important;
  background-color: #91af1a;
  border-color: #7f9917;
}
.btn-green:focus, .btn-green.focus {
  color: #FFF !important;
  background-color: #6c8313;
  border-color: #232a06;
}
.btn-green:hover {
  color: #FFF !important;
  background-color: #6c8313;
  border-color: #52640f;
}
.btn-green:active, .btn-green.active, .open > .btn-green.dropdown-toggle {
  color: #FFF !important;
  background-color: #6c8313;
  background-image: none;
  border-color: #52640f;
}
.btn-green:active:hover, .btn-green:active:focus, .btn-green:active.focus, .btn-green.active:hover, .btn-green.active:focus, .btn-green.active.focus, .open > .btn-green.dropdown-toggle:hover, .open > .btn-green.dropdown-toggle:focus, .open > .btn-green.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #52640f;
  border-color: #232a06;
}
.btn-green.disabled:hover, .btn-green.disabled:focus, .btn-green.disabled.focus, .btn-green[disabled]:hover, .btn-green[disabled]:focus, .btn-green[disabled].focus, fieldset[disabled] .btn-green:hover, fieldset[disabled] .btn-green:focus, fieldset[disabled] .btn-green.focus {
  background-color: #91af1a;
  border-color: #7f9917;
}
.btn-green .badge {
  color: #91af1a;
  background-color: #FFF !important;
}

.btn-dark-violet {
  color: #FFF !important;
  background-color: #3f4b77;
  border-color: #364066;
}
.btn-dark-violet:focus, .btn-dark-violet.focus {
  color: #FFF !important;
  background-color: #2d3656;
  border-color: #0a0c13;
}
.btn-dark-violet:hover {
  color: #FFF !important;
  background-color: #2d3656;
  border-color: #21273e;
}
.btn-dark-violet:active, .btn-dark-violet.active, .open > .btn-dark-violet.dropdown-toggle {
  color: #FFF !important;
  background-color: #2d3656;
  background-image: none;
  border-color: #21273e;
}
.btn-dark-violet:active:hover, .btn-dark-violet:active:focus, .btn-dark-violet:active.focus, .btn-dark-violet.active:hover, .btn-dark-violet.active:focus, .btn-dark-violet.active.focus, .open > .btn-dark-violet.dropdown-toggle:hover, .open > .btn-dark-violet.dropdown-toggle:focus, .open > .btn-dark-violet.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #21273e;
  border-color: #0a0c13;
}
.btn-dark-violet.disabled:hover, .btn-dark-violet.disabled:focus, .btn-dark-violet.disabled.focus, .btn-dark-violet[disabled]:hover, .btn-dark-violet[disabled]:focus, .btn-dark-violet[disabled].focus, fieldset[disabled] .btn-dark-violet:hover, fieldset[disabled] .btn-dark-violet:focus, fieldset[disabled] .btn-dark-violet.focus {
  background-color: #3f4b77;
  border-color: #364066;
}
.btn-dark-violet .badge {
  color: #3f4b77;
  background-color: #FFF !important;
}

.btn-emerald {
  color: #FFF !important;
  background-color: #14afc1;
  border-color: #129aaa;
}
.btn-emerald:focus, .btn-emerald.focus {
  color: #FFF !important;
  background-color: #0f8593;
  border-color: #063136;
}
.btn-emerald:hover {
  color: #FFF !important;
  background-color: #0f8593;
  border-color: #0c6872;
}
.btn-emerald:active, .btn-emerald.active, .open > .btn-emerald.dropdown-toggle {
  color: #FFF !important;
  background-color: #0f8593;
  background-image: none;
  border-color: #0c6872;
}
.btn-emerald:active:hover, .btn-emerald:active:focus, .btn-emerald:active.focus, .btn-emerald.active:hover, .btn-emerald.active:focus, .btn-emerald.active.focus, .open > .btn-emerald.dropdown-toggle:hover, .open > .btn-emerald.dropdown-toggle:focus, .open > .btn-emerald.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #0c6872;
  border-color: #063136;
}
.btn-emerald.disabled:hover, .btn-emerald.disabled:focus, .btn-emerald.disabled.focus, .btn-emerald[disabled]:hover, .btn-emerald[disabled]:focus, .btn-emerald[disabled].focus, fieldset[disabled] .btn-emerald:hover, fieldset[disabled] .btn-emerald:focus, fieldset[disabled] .btn-emerald.focus {
  background-color: #14afc1;
  border-color: #129aaa;
}
.btn-emerald .badge {
  color: #14afc1;
  background-color: #FFF !important;
}

.btn-gray {
  color: #FFF !important;
  background-color: #9f9f9f;
  border-color: #929292;
}
.btn-gray:focus, .btn-gray.focus {
  color: #FFF !important;
  background-color: #868686;
  border-color: #535353;
}
.btn-gray:hover {
  color: #FFF !important;
  background-color: #868686;
  border-color: #747474;
}
.btn-gray:active, .btn-gray.active, .open > .btn-gray.dropdown-toggle {
  color: #FFF !important;
  background-color: #868686;
  background-image: none;
  border-color: #747474;
}
.btn-gray:active:hover, .btn-gray:active:focus, .btn-gray:active.focus, .btn-gray.active:hover, .btn-gray.active:focus, .btn-gray.active.focus, .open > .btn-gray.dropdown-toggle:hover, .open > .btn-gray.dropdown-toggle:focus, .open > .btn-gray.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #747474;
  border-color: #535353;
}
.btn-gray.disabled:hover, .btn-gray.disabled:focus, .btn-gray.disabled.focus, .btn-gray[disabled]:hover, .btn-gray[disabled]:focus, .btn-gray[disabled].focus, fieldset[disabled] .btn-gray:hover, fieldset[disabled] .btn-gray:focus, fieldset[disabled] .btn-gray.focus {
  background-color: #9f9f9f;
  border-color: #929292;
}
.btn-gray .badge {
  color: #9f9f9f;
  background-color: #FFF !important;
}

.btn-navy {
  color: #FFF !important;
  background-color: #242f52;
  border-color: #1c2540;
}
.btn-navy:focus, .btn-navy.focus {
  color: #FFF !important;
  background-color: #141b2f;
  border-color: black;
}
.btn-navy:hover {
  color: #FFF !important;
  background-color: #141b2f;
  border-color: #0a0c16;
}
.btn-navy:active, .btn-navy.active, .open > .btn-navy.dropdown-toggle {
  color: #FFF !important;
  background-color: #141b2f;
  background-image: none;
  border-color: #0a0c16;
}
.btn-navy:active:hover, .btn-navy:active:focus, .btn-navy:active.focus, .btn-navy.active:hover, .btn-navy.active:focus, .btn-navy.active.focus, .open > .btn-navy.dropdown-toggle:hover, .open > .btn-navy.dropdown-toggle:focus, .open > .btn-navy.dropdown-toggle.focus {
  color: #FFF !important;
  background-color: #0a0c16;
  border-color: black;
}
.btn-navy.disabled:hover, .btn-navy.disabled:focus, .btn-navy.disabled.focus, .btn-navy[disabled]:hover, .btn-navy[disabled]:focus, .btn-navy[disabled].focus, fieldset[disabled] .btn-navy:hover, fieldset[disabled] .btn-navy:focus, fieldset[disabled] .btn-navy.focus {
  background-color: #242f52;
  border-color: #1c2540;
}
.btn-navy .badge {
  color: #242f52;
  background-color: #FFF !important;
}

/***********************************************************************************************************************
 * add background color
 * result - .bg-primary .bg-info......
 ***********************************************************************************************************************/
.bg-white {
  background-color: #FFF;
}

.bg-white-important {
  background-color: #FFF !important;
}

.bg-gray {
  background-color: #ededed;
}

.bg-gray-important {
  background-color: #e3e3e3 !important;
}

.bg-primary-lighten {
  background-color: #a0c4e4;
}

.bg-primary-lighten-important {
  background-color: #a0c4e4 !important;
}

.bg-primary {
  background-color: #337ab7;
}

.bg-primary-important {
  background-color: #337ab7 !important;
}

.bg-primary-darken {
  background-color: #286090;
}

.bg-primary-darken-important {
  background-color: #286090 !important;
}

.bg-success-lighten {
  background-color: #c7e6c7;
}

.bg-success-lighten-important {
  background-color: #c7e6c7 !important;
}

.bg-success {
  background-color: #5cb85c;
}

.bg-success-important {
  background-color: #5cb85c !important;
}

.bg-success-darken {
  background-color: #449d44;
}

.bg-success-darken-important {
  background-color: #449d44 !important;
}

.bg-info-lighten {
  background-color: #daf1f8;
}

.bg-info-lighten-important {
  background-color: #daf1f8 !important;
}

.bg-info {
  background-color: #5bc0de;
}

.bg-info-important {
  background-color: #5bc0de !important;
}

.bg-info-darken {
  background-color: #31b0d5;
}

.bg-info-darken-important {
  background-color: #31b0d5 !important;
}

.bg-warning-lighten {
  background-color: #fceedb;
}

.bg-warning-lighten-important {
  background-color: #fceedb !important;
}

.bg-warning {
  background-color: #f0ad4e;
}

.bg-warning-important {
  background-color: #f0ad4e !important;
}

.bg-warning-darken {
  background-color: #ec971f;
}

.bg-warning-darken-important {
  background-color: #ec971f !important;
}

.bg-danger-lighten {
  background-color: #f4cecd;
}

.bg-danger-lighten-important {
  background-color: #f4cecd !important;
}

.bg-danger {
  background-color: #d9534f;
}

.bg-danger-important {
  background-color: #d9534f !important;
}

.bg-danger-darken {
  background-color: #c9302c;
}

.bg-danger-darken-important {
  background-color: #c9302c !important;
}

.bg-white-lighten {
  background-color: white;
}

.bg-white-lighten-important {
  background-color: white !important;
}

.bg-white {
  background-color: #FFF;
}

.bg-white-important {
  background-color: #FFF !important;
}

.bg-white-darken {
  background-color: #e6e6e6;
}

.bg-white-darken-important {
  background-color: #e6e6e6 !important;
}

.bg-main-lighten {
  background-color: #afccf0;
}

.bg-main-lighten-important {
  background-color: #afccf0 !important;
}

.bg-main {
  background-color: #2e7ad8;
}

.bg-main-important {
  background-color: #2e7ad8 !important;
}

.bg-main-darken {
  background-color: #2162b2;
}

.bg-main-darken-important {
  background-color: #2162b2 !important;
}

.bg-main-pin-lighten {
  background-color: #daf1f8;
}

.bg-main-pin-lighten-important {
  background-color: #daf1f8 !important;
}

.bg-main-pin {
  background-color: #5bc0de;
}

.bg-main-pin-important {
  background-color: #5bc0de !important;
}

.bg-main-pin-darken {
  background-color: #31b0d5;
}

.bg-main-pin-darken-important {
  background-color: #31b0d5 !important;
}

.bg-red-lighten {
  background-color: #ffdad9;
}

.bg-red-lighten-important {
  background-color: #ffdad9 !important;
}

.bg-red {
  background-color: #fe4641;
}

.bg-red-important {
  background-color: #fe4641 !important;
}

.bg-red-darken {
  background-color: #fe150e;
}

.bg-red-darken-important {
  background-color: #fe150e !important;
}

.bg-red-dark-lighten {
  background-color: #f2919c;
}

.bg-red-dark-lighten-important {
  background-color: #f2919c !important;
}

.bg-red-dark {
  background-color: #d2182e;
}

.bg-red-dark-important {
  background-color: #d2182e !important;
}

.bg-red-dark-darken {
  background-color: #a41324;
}

.bg-red-dark-darken-important {
  background-color: #a41324 !important;
}

.bg-excel-green-lighten {
  background-color: #93e638;
}

.bg-excel-green-lighten-important {
  background-color: #93e638 !important;
}

.bg-excel-green {
  background-color: #45760f;
}

.bg-excel-green-important {
  background-color: #45760f !important;
}

.bg-excel-green-darken {
  background-color: #2b4909;
}

.bg-excel-green-darken-important {
  background-color: #2b4909 !important;
}

.bg-green-lighten {
  background-color: #d4eb77;
}

.bg-green-lighten-important {
  background-color: #d4eb77 !important;
}

.bg-green {
  background-color: #91af1a;
}

.bg-green-important {
  background-color: #91af1a !important;
}

.bg-green-darken {
  background-color: #6c8313;
}

.bg-green-darken-important {
  background-color: #6c8313 !important;
}

.bg-dark-violet-lighten {
  background-color: #8d98c2;
}

.bg-dark-violet-lighten-important {
  background-color: #8d98c2 !important;
}

.bg-dark-violet {
  background-color: #3f4b77;
}

.bg-dark-violet-important {
  background-color: #3f4b77 !important;
}

.bg-dark-violet-darken {
  background-color: #2d3656;
}

.bg-dark-violet-darken-important {
  background-color: #2d3656 !important;
}

.bg-emerald-lighten {
  background-color: #7de5f1;
}

.bg-emerald-lighten-important {
  background-color: #7de5f1 !important;
}

.bg-emerald {
  background-color: #14afc1;
}

.bg-emerald-important {
  background-color: #14afc1 !important;
}

.bg-emerald-darken {
  background-color: #0f8593;
}

.bg-emerald-darken-important {
  background-color: #0f8593 !important;
}

.bg-gray-lighten {
  background-color: #ececec;
}

.bg-gray-lighten-important {
  background-color: #ececec !important;
}

.bg-gray {
  background-color: #9f9f9f;
}

.bg-gray-important {
  background-color: #9f9f9f !important;
}

.bg-gray-darken {
  background-color: #868686;
}

.bg-gray-darken-important {
  background-color: #868686 !important;
}

.bg-navy-lighten {
  background-color: #596fb6;
}

.bg-navy-lighten-important {
  background-color: #596fb6 !important;
}

.bg-navy {
  background-color: #242f52;
}

.bg-navy-important {
  background-color: #242f52 !important;
}

.bg-navy-darken {
  background-color: #141b2f;
}

.bg-navy-darken-important {
  background-color: #141b2f !important;
}

/***********************************************************************************************************************
 * add border-box
 * result -
 ***********************************************************************************************************************/
.border-box {
  border: solid 1px #e0e5e8;
}

.border-box-primary {
  border-color: #337ab7;
}

.border-box-success {
  border-color: #5cb85c;
}

.border-box-info {
  border-color: #5bc0de;
}

.border-box-warning {
  border-color: #f0ad4e;
}

.border-box-danger {
  border-color: #d9534f;
}

.border-box-white {
  border-color: #FFF;
}

.border-box-main {
  border-color: #2e7ad8;
}

.border-box-main-pin {
  border-color: #5bc0de;
}

.border-box-red {
  border-color: #fe4641;
}

.border-box-red-dark {
  border-color: #d2182e;
}

.border-box-excel-green {
  border-color: #45760f;
}

.border-box-green {
  border-color: #91af1a;
}

.border-box-dark-violet {
  border-color: #3f4b77;
}

.border-box-emerald {
  border-color: #14afc1;
}

.border-box-gray {
  border-color: #9f9f9f;
}

.border-box-navy {
  border-color: #242f52;
}

/***********************************************************************************************************************
 * add blockquote color
 * result -
 ***********************************************************************************************************************/
.blockquote-primary {
  border-left-color: #337ab7;
}

.blockquote-success {
  border-left-color: #5cb85c;
}

.blockquote-info {
  border-left-color: #5bc0de;
}

.blockquote-warning {
  border-left-color: #f0ad4e;
}

.blockquote-danger {
  border-left-color: #d9534f;
}

.blockquote-white {
  border-left-color: #FFF;
}

.blockquote-main {
  border-left-color: #2e7ad8;
}

.blockquote-main-pin {
  border-left-color: #5bc0de;
}

.blockquote-red {
  border-left-color: #fe4641;
}

.blockquote-red-dark {
  border-left-color: #d2182e;
}

.blockquote-excel-green {
  border-left-color: #45760f;
}

.blockquote-green {
  border-left-color: #91af1a;
}

.blockquote-dark-violet {
  border-left-color: #3f4b77;
}

.blockquote-emerald {
  border-left-color: #14afc1;
}

.blockquote-gray {
  border-left-color: #9f9f9f;
}

.blockquote-navy {
  border-left-color: #242f52;
}

/***********************************************************************************************************************
 * like bootstrap description style
 ***********************************************************************************************************************/
.article_desc {
  position: relative;
  padding: 20px 20px 10px 25px;
  background-color: #FFF;
  border: solid 1px #e0e5e8;
  margin-bottom: 30px;
}
.article_desc:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 5px;
  height: calc(100% + 2px);
}
.article_desc:before, .article_desc.article_desc_default:before {
  background-color: #aaaaaa;
}
.article_desc.article_desc_primary:before {
  background-color: #337ab7;
}
.article_desc.article_desc_success:before {
  background-color: #5cb85c;
}
.article_desc.article_desc_info:before {
  background-color: #5bc0de;
}
.article_desc.article_desc_warning:before {
  background-color: #f0ad4e;
}
.article_desc.article_desc_danger:before {
  background-color: #d9534f;
}
.article_desc.article_desc_white:before {
  background-color: #FFF;
}
.article_desc.article_desc_main:before {
  background-color: #2e7ad8;
}
.article_desc.article_desc_main-pin:before {
  background-color: #5bc0de;
}
.article_desc.article_desc_red:before {
  background-color: #fe4641;
}
.article_desc.article_desc_red-dark:before {
  background-color: #d2182e;
}
.article_desc.article_desc_excel-green:before {
  background-color: #45760f;
}
.article_desc.article_desc_green:before {
  background-color: #91af1a;
}
.article_desc.article_desc_dark-violet:before {
  background-color: #3f4b77;
}
.article_desc.article_desc_emerald:before {
  background-color: #14afc1;
}
.article_desc.article_desc_gray:before {
  background-color: #9f9f9f;
}
.article_desc.article_desc_navy:before {
  background-color: #242f52;
}

/***********************************************************************************************************************
 * PANEL
 ***********************************************************************************************************************/
.panel-backoffice {
  border-color: #e0e5e8;
}
.panel-backoffice > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #e0e5e8;
}
.panel-backoffice > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-backoffice > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-backoffice > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}

.panel {
  position: relative;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  border: none;
}
.panel .panel-heading {
  position: relative;
  min-height: 50px;
  font-size: 16px;
  border: solid 1px #e0e5e8;
  margin-bottom: -1px;
}
.panel .panel-heading h1, .panel .panel-heading h2, .panel .panel-heading h3, .panel .panel-heading h4, .panel .panel-heading h5, .panel .panel-heading h6 {
  display: inline-block;
  margin: 0;
  font-size: 16px;
}
.panel .panel-heading .header-form-group {
  height: 0px;
  margin-top: -5px;
  display: inline-block;
}
.panel .panel-heading label {
  display: inline-block;
  font-weight: normal;
}
.panel .panel-body {
  border: solid 1px #e0e5e8;
}
.panel .panel-footer {
  border: solid 1px #e0e5e8;
  margin-top: -1px;
}
.panel .panel-footer h1, .panel .panel-footer h2, .panel .panel-footer h3, .panel .panel-footer h4, .panel .panel-footer h5, .panel .panel-footer h6 {
  display: inline-block;
  font-size: 16px;
  margin: 0;
  line-height: 1.428571429;
  margin-right: 1.428571429em;
}
@media (min-width: 992px) {
  .panel .panel-heading .form-group {
    position: relative;
    height: 22px;
    top: -6px;
  }
  .panel .panel-heading .input-group {
    width: 146px;
  }
  .panel[class*=panel-stripe-] .panel-heading .form-group {
    position: relative;
    height: 20px;
    top: -10px;
  }
}
@media (max-width: 991px) {
  .panel .panel-heading {
    height: auto !important;
  }
  .panel .panel-heading .form-inline {
    display: table;
    width: 100%;
    margin-top: 10px;
  }
  .panel .panel-heading .form-inline .form-group {
    vertical-align: middle;
    margin-bottom: 0;
    padding: 0;
    margin-bottom: 10px;
  }
  .panel .panel-heading .float-left, .panel .panel-heading .float-right {
    float: none;
  }
}

.panel-primary {
  border-color: #e0e5e8;
}
.panel-primary > .panel-heading {
  color: #FFF;
  background-color: #3c87c8;
  border-color: #e0e5e8;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-primary > .panel-heading .badge {
  color: #3c87c8;
  background-color: #FFF;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-primary .panel-heading {
  border: solid 1px #337ab7;
}
.panel-primary .panel-heading h1, .panel-primary .panel-heading h2, .panel-primary .panel-heading h3, .panel-primary .panel-heading h4, .panel-primary .panel-heading h5, .panel-primary .panel-heading h6 {
  font-weight: bold;
}

.panel-success {
  border-color: #e0e5e8;
}
.panel-success > .panel-heading {
  color: #FFF;
  background-color: #6ec06e;
  border-color: #e0e5e8;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-success > .panel-heading .badge {
  color: #6ec06e;
  background-color: #FFF;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-success .panel-heading {
  border: solid 1px #5cb85c;
}
.panel-success .panel-heading h1, .panel-success .panel-heading h2, .panel-success .panel-heading h3, .panel-success .panel-heading h4, .panel-success .panel-heading h5, .panel-success .panel-heading h6 {
  font-weight: bold;
}

.panel-info {
  border-color: #e0e5e8;
}
.panel-info > .panel-heading {
  color: #FFF;
  background-color: #70c8e2;
  border-color: #e0e5e8;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-info > .panel-heading .badge {
  color: #70c8e2;
  background-color: #FFF;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-info .panel-heading {
  border: solid 1px #5bc0de;
}
.panel-info .panel-heading h1, .panel-info .panel-heading h2, .panel-info .panel-heading h3, .panel-info .panel-heading h4, .panel-info .panel-heading h5, .panel-info .panel-heading h6 {
  font-weight: bold;
}

.panel-warning {
  border-color: #e0e5e8;
}
.panel-warning > .panel-heading {
  color: #FFF;
  background-color: #f2b866;
  border-color: #e0e5e8;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-warning > .panel-heading .badge {
  color: #f2b866;
  background-color: #FFF;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-warning .panel-heading {
  border: solid 1px #f0ad4e;
}
.panel-warning .panel-heading h1, .panel-warning .panel-heading h2, .panel-warning .panel-heading h3, .panel-warning .panel-heading h4, .panel-warning .panel-heading h5, .panel-warning .panel-heading h6 {
  font-weight: bold;
}

.panel-danger {
  border-color: #e0e5e8;
}
.panel-danger > .panel-heading {
  color: #FFF;
  background-color: #de6764;
  border-color: #e0e5e8;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-danger > .panel-heading .badge {
  color: #de6764;
  background-color: #FFF;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-danger .panel-heading {
  border: solid 1px #d9534f;
}
.panel-danger .panel-heading h1, .panel-danger .panel-heading h2, .panel-danger .panel-heading h3, .panel-danger .panel-heading h4, .panel-danger .panel-heading h5, .panel-danger .panel-heading h6 {
  font-weight: bold;
}

.panel-white {
  border-color: #e0e5e8;
}
.panel-white > .panel-heading {
  color: #FFF;
  background-color: white;
  border-color: #e0e5e8;
}
.panel-white > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-white > .panel-heading .badge {
  color: white;
  background-color: #FFF;
}
.panel-white > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-white .panel-heading {
  border: solid 1px #FFF;
}
.panel-white .panel-heading h1, .panel-white .panel-heading h2, .panel-white .panel-heading h3, .panel-white .panel-heading h4, .panel-white .panel-heading h5, .panel-white .panel-heading h6 {
  font-weight: bold;
}

.panel-main {
  border-color: #e0e5e8;
}
.panel-main > .panel-heading {
  color: #FFF;
  background-color: #4388dc;
  border-color: #e0e5e8;
}
.panel-main > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-main > .panel-heading .badge {
  color: #4388dc;
  background-color: #FFF;
}
.panel-main > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-main .panel-heading {
  border: solid 1px #2e7ad8;
}
.panel-main .panel-heading h1, .panel-main .panel-heading h2, .panel-main .panel-heading h3, .panel-main .panel-heading h4, .panel-main .panel-heading h5, .panel-main .panel-heading h6 {
  font-weight: bold;
}

.panel-main-pin {
  border-color: #e0e5e8;
}
.panel-main-pin > .panel-heading {
  color: #FFF;
  background-color: #70c8e2;
  border-color: #e0e5e8;
}
.panel-main-pin > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-main-pin > .panel-heading .badge {
  color: #70c8e2;
  background-color: #FFF;
}
.panel-main-pin > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-main-pin .panel-heading {
  border: solid 1px #5bc0de;
}
.panel-main-pin .panel-heading h1, .panel-main-pin .panel-heading h2, .panel-main-pin .panel-heading h3, .panel-main-pin .panel-heading h4, .panel-main-pin .panel-heading h5, .panel-main-pin .panel-heading h6 {
  font-weight: bold;
}

.panel-red {
  border-color: #e0e5e8;
}
.panel-red > .panel-heading {
  color: #FFF;
  background-color: #fe5f5a;
  border-color: #e0e5e8;
}
.panel-red > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-red > .panel-heading .badge {
  color: #fe5f5a;
  background-color: #FFF;
}
.panel-red > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-red .panel-heading {
  border: solid 1px #fe4641;
}
.panel-red .panel-heading h1, .panel-red .panel-heading h2, .panel-red .panel-heading h3, .panel-red .panel-heading h4, .panel-red .panel-heading h5, .panel-red .panel-heading h6 {
  font-weight: bold;
}

.panel-red-dark {
  border-color: #e0e5e8;
}
.panel-red-dark > .panel-heading {
  color: #FFF;
  background-color: #e51e36;
  border-color: #e0e5e8;
}
.panel-red-dark > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-red-dark > .panel-heading .badge {
  color: #e51e36;
  background-color: #FFF;
}
.panel-red-dark > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-red-dark .panel-heading {
  border: solid 1px #d2182e;
}
.panel-red-dark .panel-heading h1, .panel-red-dark .panel-heading h2, .panel-red-dark .panel-heading h3, .panel-red-dark .panel-heading h4, .panel-red-dark .panel-heading h5, .panel-red-dark .panel-heading h6 {
  font-weight: bold;
}

.panel-excel-green {
  border-color: #e0e5e8;
}
.panel-excel-green > .panel-heading {
  color: #FFF;
  background-color: #528d12;
  border-color: #e0e5e8;
}
.panel-excel-green > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-excel-green > .panel-heading .badge {
  color: #528d12;
  background-color: #FFF;
}
.panel-excel-green > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-excel-green .panel-heading {
  border: solid 1px #45760f;
}
.panel-excel-green .panel-heading h1, .panel-excel-green .panel-heading h2, .panel-excel-green .panel-heading h3, .panel-excel-green .panel-heading h4, .panel-excel-green .panel-heading h5, .panel-excel-green .panel-heading h6 {
  font-weight: bold;
}

.panel-green {
  border-color: #e0e5e8;
}
.panel-green > .panel-heading {
  color: #FFF;
  background-color: #a3c51d;
  border-color: #e0e5e8;
}
.panel-green > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-green > .panel-heading .badge {
  color: #a3c51d;
  background-color: #FFF;
}
.panel-green > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-green .panel-heading {
  border: solid 1px #91af1a;
}
.panel-green .panel-heading h1, .panel-green .panel-heading h2, .panel-green .panel-heading h3, .panel-green .panel-heading h4, .panel-green .panel-heading h5, .panel-green .panel-heading h6 {
  font-weight: bold;
}

.panel-dark-violet {
  border-color: #e0e5e8;
}
.panel-dark-violet > .panel-heading {
  color: #FFF;
  background-color: #485688;
  border-color: #e0e5e8;
}
.panel-dark-violet > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-dark-violet > .panel-heading .badge {
  color: #485688;
  background-color: #FFF;
}
.panel-dark-violet > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-dark-violet .panel-heading {
  border: solid 1px #3f4b77;
}
.panel-dark-violet .panel-heading h1, .panel-dark-violet .panel-heading h2, .panel-dark-violet .panel-heading h3, .panel-dark-violet .panel-heading h4, .panel-dark-violet .panel-heading h5, .panel-dark-violet .panel-heading h6 {
  font-weight: bold;
}

.panel-emerald {
  border-color: #e0e5e8;
}
.panel-emerald > .panel-heading {
  color: #FFF;
  background-color: #16c4d8;
  border-color: #e0e5e8;
}
.panel-emerald > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-emerald > .panel-heading .badge {
  color: #16c4d8;
  background-color: #FFF;
}
.panel-emerald > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-emerald .panel-heading {
  border: solid 1px #14afc1;
}
.panel-emerald .panel-heading h1, .panel-emerald .panel-heading h2, .panel-emerald .panel-heading h3, .panel-emerald .panel-heading h4, .panel-emerald .panel-heading h5, .panel-emerald .panel-heading h6 {
  font-weight: bold;
}

.panel-gray {
  border-color: #e0e5e8;
}
.panel-gray > .panel-heading {
  color: #FFF;
  background-color: #acacac;
  border-color: #e0e5e8;
}
.panel-gray > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-gray > .panel-heading .badge {
  color: #acacac;
  background-color: #FFF;
}
.panel-gray > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-gray .panel-heading {
  border: solid 1px #9f9f9f;
}
.panel-gray .panel-heading h1, .panel-gray .panel-heading h2, .panel-gray .panel-heading h3, .panel-gray .panel-heading h4, .panel-gray .panel-heading h5, .panel-gray .panel-heading h6 {
  font-weight: bold;
}

.panel-navy {
  border-color: #e0e5e8;
}
.panel-navy > .panel-heading {
  color: #FFF;
  background-color: #2c3964;
  border-color: #e0e5e8;
}
.panel-navy > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e0e5e8;
}
.panel-navy > .panel-heading .badge {
  color: #2c3964;
  background-color: #FFF;
}
.panel-navy > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e0e5e8;
}
.panel-navy .panel-heading {
  border: solid 1px #242f52;
}
.panel-navy .panel-heading h1, .panel-navy .panel-heading h2, .panel-navy .panel-heading h3, .panel-navy .panel-heading h4, .panel-navy .panel-heading h5, .panel-navy .panel-heading h6 {
  font-weight: bold;
}

/***********************************************************************************************************************
 * required
 * 필수 별표
 ***********************************************************************************************************************/
.required-primary:after {
  color: #337ab7 !important;
}

.required-success:after {
  color: #5cb85c !important;
}

.required-info:after {
  color: #5bc0de !important;
}

.required-warning:after {
  color: #f0ad4e !important;
}

.required-danger:after {
  color: #d9534f !important;
}

.required-white:after {
  color: #FFF !important;
}

.required-main:after {
  color: #2e7ad8 !important;
}

.required-main-pin:after {
  color: #5bc0de !important;
}

.required-red:after {
  color: #fe4641 !important;
}

.required-red-dark:after {
  color: #d2182e !important;
}

.required-excel-green:after {
  color: #45760f !important;
}

.required-green:after {
  color: #91af1a !important;
}

.required-dark-violet:after {
  color: #3f4b77 !important;
}

.required-emerald:after {
  color: #14afc1 !important;
}

.required-gray:after {
  color: #9f9f9f !important;
}

.required-navy:after {
  color: #242f52 !important;
}

.required:after {
  content: "*";
  position: relative;
  display: inline-block;
  margin-left: 3px;
  vertical-align: middle;
  font-size: 1.3em;
  line-height: 1px;
  color: #d9534f;
}

/***********************************************************************************************************************
 * label
 ***********************************************************************************************************************/
.label {
  display: inline-block;
  padding: 0.4em 1em 0.5em;
  vertical-align: text-bottom;
}

.label-primary {
  background-color: #337ab7;
}

.label-success {
  background-color: #5cb85c;
}

.label-info {
  background-color: #5bc0de;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-danger {
  background-color: #d9534f;
}

.label-white {
  background-color: #FFF;
}

.label-main {
  background-color: #2e7ad8;
}

.label-main-pin {
  background-color: #5bc0de;
}

.label-red {
  background-color: #fe4641;
}

.label-red-dark {
  background-color: #d2182e;
}

.label-excel-green {
  background-color: #45760f;
}

.label-green {
  background-color: #91af1a;
}

.label-dark-violet {
  background-color: #3f4b77;
}

.label-emerald {
  background-color: #14afc1;
}

.label-gray {
  background-color: #9f9f9f;
}

.label-navy {
  background-color: #242f52;
}

/***********************************************************************************************************************
 * badge
 ***********************************************************************************************************************/
.badge-primary {
  background-color: #337ab7 !important;
}

.badge-success {
  background-color: #5cb85c !important;
}

.badge-info {
  background-color: #5bc0de !important;
}

.badge-warning {
  background-color: #f0ad4e !important;
}

.badge-danger {
  background-color: #d9534f !important;
}

.badge-white {
  background-color: #FFF !important;
}

.badge-main {
  background-color: #2e7ad8 !important;
}

.badge-main-pin {
  background-color: #5bc0de !important;
}

.badge-red {
  background-color: #fe4641 !important;
}

.badge-red-dark {
  background-color: #d2182e !important;
}

.badge-excel-green {
  background-color: #45760f !important;
}

.badge-green {
  background-color: #91af1a !important;
}

.badge-dark-violet {
  background-color: #3f4b77 !important;
}

.badge-emerald {
  background-color: #14afc1 !important;
}

.badge-gray {
  background-color: #9f9f9f !important;
}

.badge-navy {
  background-color: #242f52 !important;
}

/***********************************************************************************************************************
 * table
 ***********************************************************************************************************************/
.panel .table-bordered-full tr:last-child > td,
.panel .table-bordered-full tr:last-child > th {
  border-bottom: solid 1px #ddd !important;
}
.panel .table-bordered-full tr > td:first-child,
.panel .table-bordered-full tr > th:first-child {
  border-left: solid 1px #ddd !important;
}
.panel .table-bordered-full tr > td:last-child,
.panel .table-bordered-full tr > th:last-child {
  border-right: solid 1px #ddd !important;
}

/***********************************************************************************************************************
 * responsive_div_table
 ***********************************************************************************************************************/
.responsive_div_table > .table_row_wrap > .table_cell_wrap,
.responsive_div_table .table_cell_head {
  padding: 30px 30px;
  margin: -30px -30px 30px -30px;
}
@media (max-width: 991px) {
  .responsive_div_table > .table_row_wrap > .table_cell_wrap,
  .responsive_div_table > .table_cell_wrap {
    display: block;
    width: 100%;
  }
}

/***********************************************************************************************************************
 * form-group has-feedback
 ***********************************************************************************************************************/
.form_inline_table .form-inline {
  padding: 8px;
  line-height: 1.428571429;
}
.form_inline_table .form-inline .form-group {
  margin: 0;
}
.inline-bordered.form_inline_table .form-inline {
  border-top: 1px solid #ddd;
}
.form_inline_table .control-input {
  position: relative;
}
@media (max-width: 991px) {
  .form_inline_table .form-inline .form-group .input-group {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .form_inline_table .form-inline .form-group {
    width: 100%;
  }
  .form_inline_table .form-inline .message-box {
    display: block;
    text-align: right;
    padding: 0 5px;
  }
  .form_inline_table .form-group {
    display: table;
  }
  .form_inline_table .form-group > label, .form_inline_table .form-group > .control-label {
    display: table-cell;
    width: 20%;
    min-width: 100px;
    padding-right: 5px;
  }
  .form_inline_table .control-input {
    padding-left: 5px;
  }
  .form_inline_table .control-input .input-group {
    width: 100%;
  }
  .form_inline_table .control-input .form-control {
    width: 100%;
  }
}

.form_inline_table > .form-inline:first-child {
  border-top: none;
}

.form-group.has-feedback > .input-group {
  width: 100%;
}
.form-group.has-feedback .input-group-addon {
  width: 1px;
}
.form-group.has-feedback.has-success > .message-box {
  color: #3c763d;
}
.form-group.has-feedback.has-success .form-control-feedback:before {
  content: "\e013";
}
.form-group.has-feedback.has-warning > .message-box {
  color: #8a6d3b;
}
.form-group.has-feedback.has-warning .form-control-feedback:before {
  content: "\e209";
}
.form-group.has-feedback.has-error > .message-box {
  color: #a94442;
}
.form-group.has-feedback.has-error .form-control-feedback:before {
  content: "\e014";
}
.form-group.has-feedback .form-control-feedback:before {
  font-family: "Glyphicons Halflings";
  font-style: normal;
}
.form-group.has-feedback.has-success > .form-control-feedback, .form-group.has-feedback.has-warning > .form-control-feedback, .form-group.has-feedback.has-error > .form-control-feedback {
  display: block;
}

.form-group.has-feedback label.control-label {
  color: inherit;
}
.form-group.has-feedback .message-box {
  display: none;
}
.form-group.has-feedback .form-control-feedback {
  display: none;
}
.form-group.has-feedback.has-success .message-box, .form-group.has-feedback.has-warning .message-box, .form-group.has-feedback.has-error .message-box {
  display: block;
}
.form-group.has-feedback.has-success .form-control-feedback, .form-group.has-feedback.has-warning .form-control-feedback, .form-group.has-feedback.has-error .form-control-feedback {
  display: block;
}

/***********************************************************************************************************************
 * input-group-multi
 ***********************************************************************************************************************/
.input-group-multi {
  width: 100%;
}
.input-group-multi > input {
  padding-right: 14px !important;
}
.input-group-multi > .input-group-btn {
  width: 0px;
}

/***********************************************************************************************************************
 * img-select
 ***********************************************************************************************************************/
select.select {
  display: none !important;
}

.select {
  position: relative;
  display: none;
  border: solid 1px #e0e5e8;
}
.select .active {
  position: relative;
  padding-right: 30px;
}
.select .active:before {
  content: "▼";
  position: absolute;
  right: 0;
  width: 30px;
  height: 30px;
  border-left: solid 1px #e0e5e8;
  padding: 8px 0;
  text-align: center;
  font-size: 11px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.select .options {
  position: absolute;
  top: 30px;
  height: 150px;
  overflow-y: auto;
  background-color: #FFF;
  border: solid 1px #e0e5e8;
  z-index: 5;
  display: none;
}
.select .option > input {
  display: none;
}
.select .option > input:checked + label {
  background-color: #daf1f8 !important;
}
.select .option > label {
  display: block;
  height: 30px;
  padding: 3px 10px;
  margin: 0;
  white-space: nowrap;
  cursor: pointer;
  z-index: 1;
}
.select .options .option:hover > label {
  background-color: #2e7ad8;
  color: #FFF;
}
.select.open .options {
  display: inline-block;
}

/***********************************************************************************************************************
 * add button color and size outline
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * 라인만 있는 버튼
 ***********************************************************************************************************************/
.btn-primary-line {
  color: #FFF;
  background-color: transparent;
  border-color: #071018;
}
.btn-primary-line:focus, .btn-primary-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-primary-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-primary-line:active, .btn-primary-line.active, .open > .btn-primary-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: black;
}
.btn-primary-line:active:hover, .btn-primary-line:active:focus, .btn-primary-line:active.focus, .btn-primary-line.active:hover, .btn-primary-line.active:focus, .btn-primary-line.active.focus, .open > .btn-primary-line.dropdown-toggle:hover, .open > .btn-primary-line.dropdown-toggle:focus, .open > .btn-primary-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-primary-line.disabled:hover, .btn-primary-line.disabled:focus, .btn-primary-line.disabled.focus, .btn-primary-line[disabled]:hover, .btn-primary-line[disabled]:focus, .btn-primary-line[disabled].focus, fieldset[disabled] .btn-primary-line:hover, fieldset[disabled] .btn-primary-line:focus, fieldset[disabled] .btn-primary-line.focus {
  background-color: transparent;
  border-color: #071018;
}
.btn-primary-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-success-line {
  color: #FFF;
  background-color: transparent;
  border-color: #163216;
}
.btn-success-line:focus, .btn-success-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-success-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: #030803;
}
.btn-success-line:active, .btn-success-line.active, .open > .btn-success-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #030803;
}
.btn-success-line:active:hover, .btn-success-line:active:focus, .btn-success-line:active.focus, .btn-success-line.active:hover, .btn-success-line.active:focus, .btn-success-line.active.focus, .open > .btn-success-line.dropdown-toggle:hover, .open > .btn-success-line.dropdown-toggle:focus, .open > .btn-success-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-success-line.disabled:hover, .btn-success-line.disabled:focus, .btn-success-line.disabled.focus, .btn-success-line[disabled]:hover, .btn-success-line[disabled]:focus, .btn-success-line[disabled].focus, fieldset[disabled] .btn-success-line:hover, fieldset[disabled] .btn-success-line:focus, fieldset[disabled] .btn-success-line.focus {
  background-color: transparent;
  border-color: #163216;
}
.btn-success-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-info-line {
  color: #FFF;
  background-color: transparent;
  border-color: #124a5b;
}
.btn-info-line:focus, .btn-info-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-info-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: #082128;
}
.btn-info-line:active, .btn-info-line.active, .open > .btn-info-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #082128;
}
.btn-info-line:active:hover, .btn-info-line:active:focus, .btn-info-line:active.focus, .btn-info-line.active:hover, .btn-info-line.active:focus, .btn-info-line.active.focus, .open > .btn-info-line.dropdown-toggle:hover, .open > .btn-info-line.dropdown-toggle:focus, .open > .btn-info-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-info-line.disabled:hover, .btn-info-line.disabled:focus, .btn-info-line.disabled.focus, .btn-info-line[disabled]:hover, .btn-info-line[disabled]:focus, .btn-info-line[disabled].focus, fieldset[disabled] .btn-info-line:hover, fieldset[disabled] .btn-info-line:focus, fieldset[disabled] .btn-info-line.focus {
  background-color: transparent;
  border-color: #124a5b;
}
.btn-info-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-warning-line {
  color: #FFF;
  background-color: transparent;
  border-color: #694109;
}
.btn-warning-line:focus, .btn-warning-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-warning-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: #311e04;
}
.btn-warning-line:active, .btn-warning-line.active, .open > .btn-warning-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #311e04;
}
.btn-warning-line:active:hover, .btn-warning-line:active:focus, .btn-warning-line:active.focus, .btn-warning-line.active:hover, .btn-warning-line.active:focus, .btn-warning-line.active.focus, .open > .btn-warning-line.dropdown-toggle:hover, .open > .btn-warning-line.dropdown-toggle:focus, .open > .btn-warning-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-warning-line.disabled:hover, .btn-warning-line.disabled:focus, .btn-warning-line.disabled.focus, .btn-warning-line[disabled]:hover, .btn-warning-line[disabled]:focus, .btn-warning-line[disabled].focus, fieldset[disabled] .btn-warning-line:hover, fieldset[disabled] .btn-warning-line:focus, fieldset[disabled] .btn-warning-line.focus {
  background-color: transparent;
  border-color: #694109;
}
.btn-warning-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-danger-line {
  color: #FFF;
  background-color: transparent;
  border-color: #4c1210;
}
.btn-danger-line:focus, .btn-danger-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-danger-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: #190605;
}
.btn-danger-line:active, .btn-danger-line.active, .open > .btn-danger-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #190605;
}
.btn-danger-line:active:hover, .btn-danger-line:active:focus, .btn-danger-line:active.focus, .btn-danger-line.active:hover, .btn-danger-line.active:focus, .btn-danger-line.active.focus, .open > .btn-danger-line.dropdown-toggle:hover, .open > .btn-danger-line.dropdown-toggle:focus, .open > .btn-danger-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-danger-line.disabled:hover, .btn-danger-line.disabled:focus, .btn-danger-line.disabled.focus, .btn-danger-line[disabled]:hover, .btn-danger-line[disabled]:focus, .btn-danger-line[disabled].focus, fieldset[disabled] .btn-danger-line:hover, fieldset[disabled] .btn-danger-line:focus, fieldset[disabled] .btn-danger-line.focus {
  background-color: transparent;
  border-color: #4c1210;
}
.btn-danger-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-white-line {
  color: #000;
  background-color: transparent;
  border-color: #999999;
}
.btn-white-line:focus, .btn-white-line.focus {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border-color: #595959;
}
.btn-white-line:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border-color: #7a7a7a;
}
.btn-white-line:active, .btn-white-line.active, .open > .btn-white-line.dropdown-toggle {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #7a7a7a;
}
.btn-white-line:active:hover, .btn-white-line:active:focus, .btn-white-line:active.focus, .btn-white-line.active:hover, .btn-white-line.active:focus, .btn-white-line.active.focus, .open > .btn-white-line.dropdown-toggle:hover, .open > .btn-white-line.dropdown-toggle:focus, .open > .btn-white-line.dropdown-toggle.focus {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border-color: #595959;
}
.btn-white-line.disabled:hover, .btn-white-line.disabled:focus, .btn-white-line.disabled.focus, .btn-white-line[disabled]:hover, .btn-white-line[disabled]:focus, .btn-white-line[disabled].focus, fieldset[disabled] .btn-white-line:hover, fieldset[disabled] .btn-white-line:focus, fieldset[disabled] .btn-white-line.focus {
  background-color: transparent;
  border-color: #999999;
}
.btn-white-line .badge {
  color: transparent;
  background-color: #000;
}

.btn-main-line {
  color: #FFF;
  background-color: transparent;
  border-color: #091b31;
}
.btn-main-line:focus, .btn-main-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-main-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-main-line:active, .btn-main-line.active, .open > .btn-main-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: black;
}
.btn-main-line:active:hover, .btn-main-line:active:focus, .btn-main-line:active.focus, .btn-main-line.active:hover, .btn-main-line.active:focus, .btn-main-line.active.focus, .open > .btn-main-line.dropdown-toggle:hover, .open > .btn-main-line.dropdown-toggle:focus, .open > .btn-main-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-main-line.disabled:hover, .btn-main-line.disabled:focus, .btn-main-line.disabled.focus, .btn-main-line[disabled]:hover, .btn-main-line[disabled]:focus, .btn-main-line[disabled].focus, fieldset[disabled] .btn-main-line:hover, fieldset[disabled] .btn-main-line:focus, fieldset[disabled] .btn-main-line.focus {
  background-color: transparent;
  border-color: #091b31;
}
.btn-main-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-main-pin-line {
  color: #FFF;
  background-color: transparent;
  border-color: #124a5b;
}
.btn-main-pin-line:focus, .btn-main-pin-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-main-pin-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: #082128;
}
.btn-main-pin-line:active, .btn-main-pin-line.active, .open > .btn-main-pin-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #082128;
}
.btn-main-pin-line:active:hover, .btn-main-pin-line:active:focus, .btn-main-pin-line:active.focus, .btn-main-pin-line.active:hover, .btn-main-pin-line.active:focus, .btn-main-pin-line.active.focus, .open > .btn-main-pin-line.dropdown-toggle:hover, .open > .btn-main-pin-line.dropdown-toggle:focus, .open > .btn-main-pin-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-main-pin-line.disabled:hover, .btn-main-pin-line.disabled:focus, .btn-main-pin-line.disabled.focus, .btn-main-pin-line[disabled]:hover, .btn-main-pin-line[disabled]:focus, .btn-main-pin-line[disabled].focus, fieldset[disabled] .btn-main-pin-line:hover, fieldset[disabled] .btn-main-pin-line:focus, fieldset[disabled] .btn-main-pin-line.focus {
  background-color: transparent;
  border-color: #124a5b;
}
.btn-main-pin-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-red-line {
  color: #FFF;
  background-color: transparent;
  border-color: #720401;
}
.btn-red-line:focus, .btn-red-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-red-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: #360200;
}
.btn-red-line:active, .btn-red-line.active, .open > .btn-red-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #360200;
}
.btn-red-line:active:hover, .btn-red-line:active:focus, .btn-red-line:active.focus, .btn-red-line.active:hover, .btn-red-line.active:focus, .btn-red-line.active.focus, .open > .btn-red-line.dropdown-toggle:hover, .open > .btn-red-line.dropdown-toggle:focus, .open > .btn-red-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-red-line.disabled:hover, .btn-red-line.disabled:focus, .btn-red-line.disabled.focus, .btn-red-line[disabled]:hover, .btn-red-line[disabled]:focus, .btn-red-line[disabled].focus, fieldset[disabled] .btn-red-line:hover, fieldset[disabled] .btn-red-line:focus, fieldset[disabled] .btn-red-line.focus {
  background-color: transparent;
  border-color: #720401;
}
.btn-red-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-red-dark-line {
  color: #FFF;
  background-color: transparent;
  border-color: #1b0306;
}
.btn-red-dark-line:focus, .btn-red-dark-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-red-dark-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-red-dark-line:active, .btn-red-dark-line.active, .open > .btn-red-dark-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: black;
}
.btn-red-dark-line:active:hover, .btn-red-dark-line:active:focus, .btn-red-dark-line:active.focus, .btn-red-dark-line.active:hover, .btn-red-dark-line.active:focus, .btn-red-dark-line.active.focus, .open > .btn-red-dark-line.dropdown-toggle:hover, .open > .btn-red-dark-line.dropdown-toggle:focus, .open > .btn-red-dark-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-red-dark-line.disabled:hover, .btn-red-dark-line.disabled:focus, .btn-red-dark-line.disabled.focus, .btn-red-dark-line[disabled]:hover, .btn-red-dark-line[disabled]:focus, .btn-red-dark-line[disabled].focus, fieldset[disabled] .btn-red-dark-line:hover, fieldset[disabled] .btn-red-dark-line:focus, fieldset[disabled] .btn-red-dark-line.focus {
  background-color: transparent;
  border-color: #1b0306;
}
.btn-red-dark-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-excel-green-line {
  color: #FFF;
  background-color: transparent;
  border-color: black;
}
.btn-excel-green-line:focus, .btn-excel-green-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-excel-green-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-excel-green-line:active, .btn-excel-green-line.active, .open > .btn-excel-green-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: black;
}
.btn-excel-green-line:active:hover, .btn-excel-green-line:active:focus, .btn-excel-green-line:active.focus, .btn-excel-green-line.active:hover, .btn-excel-green-line.active:focus, .btn-excel-green-line.active.focus, .open > .btn-excel-green-line.dropdown-toggle:hover, .open > .btn-excel-green-line.dropdown-toggle:focus, .open > .btn-excel-green-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-excel-green-line.disabled:hover, .btn-excel-green-line.disabled:focus, .btn-excel-green-line.disabled.focus, .btn-excel-green-line[disabled]:hover, .btn-excel-green-line[disabled]:focus, .btn-excel-green-line[disabled].focus, fieldset[disabled] .btn-excel-green-line:hover, fieldset[disabled] .btn-excel-green-line:focus, fieldset[disabled] .btn-excel-green-line.focus {
  background-color: transparent;
  border-color: black;
}
.btn-excel-green-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-green-line {
  color: #FFF;
  background-color: transparent;
  border-color: black;
}
.btn-green-line:focus, .btn-green-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-green-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-green-line:active, .btn-green-line.active, .open > .btn-green-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: black;
}
.btn-green-line:active:hover, .btn-green-line:active:focus, .btn-green-line:active.focus, .btn-green-line.active:hover, .btn-green-line.active:focus, .btn-green-line.active.focus, .open > .btn-green-line.dropdown-toggle:hover, .open > .btn-green-line.dropdown-toggle:focus, .open > .btn-green-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-green-line.disabled:hover, .btn-green-line.disabled:focus, .btn-green-line.disabled.focus, .btn-green-line[disabled]:hover, .btn-green-line[disabled]:focus, .btn-green-line[disabled].focus, fieldset[disabled] .btn-green-line:hover, fieldset[disabled] .btn-green-line:focus, fieldset[disabled] .btn-green-line.focus {
  background-color: transparent;
  border-color: black;
}
.btn-green-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-dark-violet-line {
  color: #FFF;
  background-color: transparent;
  border-color: black;
}
.btn-dark-violet-line:focus, .btn-dark-violet-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-dark-violet-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-dark-violet-line:active, .btn-dark-violet-line.active, .open > .btn-dark-violet-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: black;
}
.btn-dark-violet-line:active:hover, .btn-dark-violet-line:active:focus, .btn-dark-violet-line:active.focus, .btn-dark-violet-line.active:hover, .btn-dark-violet-line.active:focus, .btn-dark-violet-line.active.focus, .open > .btn-dark-violet-line.dropdown-toggle:hover, .open > .btn-dark-violet-line.dropdown-toggle:focus, .open > .btn-dark-violet-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-dark-violet-line.disabled:hover, .btn-dark-violet-line.disabled:focus, .btn-dark-violet-line.disabled.focus, .btn-dark-violet-line[disabled]:hover, .btn-dark-violet-line[disabled]:focus, .btn-dark-violet-line[disabled].focus, fieldset[disabled] .btn-dark-violet-line:hover, fieldset[disabled] .btn-dark-violet-line:focus, fieldset[disabled] .btn-dark-violet-line.focus {
  background-color: transparent;
  border-color: black;
}
.btn-dark-violet-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-emerald-line {
  color: #FFF;
  background-color: transparent;
  border-color: #010708;
}
.btn-emerald-line:focus, .btn-emerald-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-emerald-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-emerald-line:active, .btn-emerald-line.active, .open > .btn-emerald-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: black;
}
.btn-emerald-line:active:hover, .btn-emerald-line:active:focus, .btn-emerald-line:active.focus, .btn-emerald-line.active:hover, .btn-emerald-line.active:focus, .btn-emerald-line.active.focus, .open > .btn-emerald-line.dropdown-toggle:hover, .open > .btn-emerald-line.dropdown-toggle:focus, .open > .btn-emerald-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-emerald-line.disabled:hover, .btn-emerald-line.disabled:focus, .btn-emerald-line.disabled.focus, .btn-emerald-line[disabled]:hover, .btn-emerald-line[disabled]:focus, .btn-emerald-line[disabled].focus, fieldset[disabled] .btn-emerald-line:hover, fieldset[disabled] .btn-emerald-line:focus, fieldset[disabled] .btn-emerald-line.focus {
  background-color: transparent;
  border-color: #010708;
}
.btn-emerald-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-gray-line {
  color: #FFF;
  background-color: transparent;
  border-color: #393939;
}
.btn-gray-line:focus, .btn-gray-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-gray-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: #1a1a1a;
}
.btn-gray-line:active, .btn-gray-line.active, .open > .btn-gray-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #1a1a1a;
}
.btn-gray-line:active:hover, .btn-gray-line:active:focus, .btn-gray-line:active.focus, .btn-gray-line.active:hover, .btn-gray-line.active:focus, .btn-gray-line.active.focus, .open > .btn-gray-line.dropdown-toggle:hover, .open > .btn-gray-line.dropdown-toggle:focus, .open > .btn-gray-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-gray-line.disabled:hover, .btn-gray-line.disabled:focus, .btn-gray-line.disabled.focus, .btn-gray-line[disabled]:hover, .btn-gray-line[disabled]:focus, .btn-gray-line[disabled].focus, fieldset[disabled] .btn-gray-line:hover, fieldset[disabled] .btn-gray-line:focus, fieldset[disabled] .btn-gray-line.focus {
  background-color: transparent;
  border-color: #393939;
}
.btn-gray-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-navy-line {
  color: #FFF;
  background-color: transparent;
  border-color: black;
}
.btn-navy-line:focus, .btn-navy-line.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-navy-line:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-navy-line:active, .btn-navy-line.active, .open > .btn-navy-line.dropdown-toggle {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: black;
}
.btn-navy-line:active:hover, .btn-navy-line:active:focus, .btn-navy-line:active.focus, .btn-navy-line.active:hover, .btn-navy-line.active:focus, .btn-navy-line.active.focus, .open > .btn-navy-line.dropdown-toggle:hover, .open > .btn-navy-line.dropdown-toggle:focus, .open > .btn-navy-line.dropdown-toggle.focus {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0);
  border-color: black;
}
.btn-navy-line.disabled:hover, .btn-navy-line.disabled:focus, .btn-navy-line.disabled.focus, .btn-navy-line[disabled]:hover, .btn-navy-line[disabled]:focus, .btn-navy-line[disabled].focus, fieldset[disabled] .btn-navy-line:hover, fieldset[disabled] .btn-navy-line:focus, fieldset[disabled] .btn-navy-line.focus {
  background-color: transparent;
  border-color: black;
}
.btn-navy-line .badge {
  color: transparent;
  background-color: #FFF;
}

.btn-square {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.btn > i {
  font-size: 24px;
  vertical-align: middle;
}

.btn-ccc {
  border: 1px solid #ccc !important;
}

/***********************************************************************************************************************
 * ib사이트에서 사용하는 그레이 패널
 ***********************************************************************************************************************/
.panel-ib {
  border-color: #f4f4f4;
}
.panel-ib > .panel-heading {
  color: #1a1a1a;
  background-color: #f4f4f4;
  border-color: #ddd;
}
.panel-ib > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #f4f4f4;
}
.panel-ib > .panel-heading .badge {
  color: #f4f4f4;
  background-color: #1a1a1a;
}
.panel-ib > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #f4f4f4;
}

.panel-banner {
  border-color: #DDD;
}
.panel-banner > .panel-heading {
  color: #1a1a1a;
  background-color: #f0f0f0;
  border-color: #DDD;
}
.panel-banner > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #DDD;
}
.panel-banner > .panel-heading .badge {
  color: #f0f0f0;
  background-color: #1a1a1a;
}
.panel-banner > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #DDD;
}

/***********************************************************************************************************************
 * 챠트 스타일
 ***********************************************************************************************************************/
.chart_sec {
  position: relative;
  text-align: center;
}
.chart_sec .carousel-control {
  background-image: none;
  color: black;
  cursor: pointer;
  width: 5%;
}

/***********************************************************************************************************************
 * .blit_arrow
 ***********************************************************************************************************************/
.blit_arrow:not(ul), ul.blit_arrow > li {
  position: relative;
  padding-left: 15px;
}
.blit_arrow:not(ul):before, ul.blit_arrow > li:before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11px;
  font-family: icomoon;
  color: #2e7ad8;
}

/***********************************************************************************************************************
 * info-box
 ***********************************************************************************************************************/
.info-box-primary {
  border-color: #337ab7;
  background-color: #aad1f3;
}
.info-box-primary .info-icon i {
  color: #337ab7;
}
.info-box-primary ul.blit_arrow > li:before {
  color: #337ab7;
}
.info-box-primary .blit_arrow:not(ul):before {
  color: #337ab7;
}

.info-box-success {
  border-color: #5cb85c;
  background-color: #d3f4d3;
}
.info-box-success .info-icon i {
  color: #5cb85c;
}
.info-box-success ul.blit_arrow > li:before {
  color: #5cb85c;
}
.info-box-success .blit_arrow:not(ul):before {
  color: #5cb85c;
}

.info-box-info {
  border-color: #5bc0de;
  background-color: #eefafe;
}
.info-box-info .info-icon i {
  color: #5bc0de;
}
.info-box-info ul.blit_arrow > li:before {
  color: #5bc0de;
}
.info-box-info .blit_arrow:not(ul):before {
  color: #5bc0de;
}

.info-box-warning {
  border-color: #f0ad4e;
  background-color: #fff9f2;
}
.info-box-warning .info-icon i {
  color: #f0ad4e;
}
.info-box-warning ul.blit_arrow > li:before {
  color: #f0ad4e;
}
.info-box-warning .blit_arrow:not(ul):before {
  color: #f0ad4e;
}

.info-box-danger {
  border-color: #d9534f;
  background-color: #fcdfde;
}
.info-box-danger .info-icon i {
  color: #d9534f;
}
.info-box-danger ul.blit_arrow > li:before {
  color: #d9534f;
}
.info-box-danger .blit_arrow:not(ul):before {
  color: #d9534f;
}

.info-box-white {
  border-color: #FFF;
  background-color: white;
}
.info-box-white .info-icon i {
  color: #FFF;
}
.info-box-white ul.blit_arrow > li:before {
  color: #FFF;
}
.info-box-white .blit_arrow:not(ul):before {
  color: #FFF;
}

.info-box-main {
  border-color: #2e7ad8;
  background-color: #bdd9fb;
}
.info-box-main .info-icon i {
  color: #2e7ad8;
}
.info-box-main ul.blit_arrow > li:before {
  color: #2e7ad8;
}
.info-box-main .blit_arrow:not(ul):before {
  color: #2e7ad8;
}

.info-box-main-pin {
  border-color: #5bc0de;
  background-color: #eefafe;
}
.info-box-main-pin .info-icon i {
  color: #5bc0de;
}
.info-box-main-pin ul.blit_arrow > li:before {
  color: #5bc0de;
}
.info-box-main-pin .blit_arrow:not(ul):before {
  color: #5bc0de;
}

.info-box-red {
  border-color: #fe4641;
  background-color: #fff3f3;
}
.info-box-red .info-icon i {
  color: #fe4641;
}
.info-box-red ul.blit_arrow > li:before {
  color: #fe4641;
}
.info-box-red .blit_arrow:not(ul):before {
  color: #fe4641;
}

.info-box-red-dark {
  border-color: #d2182e;
  background-color: #ff9ea9;
}
.info-box-red-dark .info-icon i {
  color: #d2182e;
}
.info-box-red-dark ul.blit_arrow > li:before {
  color: #d2182e;
}
.info-box-red-dark .blit_arrow:not(ul):before {
  color: #d2182e;
}

.info-box-excel-green {
  border-color: #45760f;
  background-color: #a0fc3b;
}
.info-box-excel-green .info-icon i {
  color: #45760f;
}
.info-box-excel-green ul.blit_arrow > li:before {
  color: #45760f;
}
.info-box-excel-green .blit_arrow:not(ul):before {
  color: #45760f;
}

.info-box-green {
  border-color: #91af1a;
  background-color: #e2fb80;
}
.info-box-green .info-icon i {
  color: #91af1a;
}
.info-box-green ul.blit_arrow > li:before {
  color: #91af1a;
}
.info-box-green .blit_arrow:not(ul):before {
  color: #91af1a;
}

.info-box-dark-violet {
  border-color: #3f4b77;
  background-color: #8e9fda;
}
.info-box-dark-violet .info-icon i {
  color: #3f4b77;
}
.info-box-dark-violet ul.blit_arrow > li:before {
  color: #3f4b77;
}
.info-box-dark-violet .blit_arrow:not(ul):before {
  color: #3f4b77;
}

.info-box-emerald {
  border-color: #14afc1;
  background-color: #89f3ff;
}
.info-box-emerald .info-icon i {
  color: #14afc1;
}
.info-box-emerald ul.blit_arrow > li:before {
  color: #14afc1;
}
.info-box-emerald .blit_arrow:not(ul):before {
  color: #14afc1;
}

.info-box-gray {
  border-color: #9f9f9f;
  background-color: #faf7f7;
}
.info-box-gray .info-icon i {
  color: #9f9f9f;
}
.info-box-gray ul.blit_arrow > li:before {
  color: #9f9f9f;
}
.info-box-gray .blit_arrow:not(ul):before {
  color: #9f9f9f;
}

.info-box-navy {
  border-color: #242f52;
  background-color: #5573d3;
}
.info-box-navy .info-icon i {
  color: #242f52;
}
.info-box-navy ul.blit_arrow > li:before {
  color: #242f52;
}
.info-box-navy .blit_arrow:not(ul):before {
  color: #242f52;
}

.info-box {
  padding: 16px 72px;
  position: relative;
  width: 100%;
  border-style: solid;
  border-width: 1px;
  display: flex;
}
.info-box .info-icon {
  margin-right: 24px;
}
.info-box .info-icon i {
  font-size: 40px;
}
.info-box .info-body .title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  position: relative;
  top: -2px;
}
.info-box .info-body p {
  line-height: 1.67;
  color: #343231;
}
@media (max-width: 991px) {
  .info-box {
    padding: 16px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .info-box .info-icon {
    margin-right: 0;
  }
  .info-box .info-body p {
    text-align: center;
  }
}

/***********************************************************************************************************************
 * form input 3단, 2단 보기좋게
 ***********************************************************************************************************************/
@media (max-width: 991px) {
  .form-table .form-table-cell {
    margin-bottom: 5px;
  }
}
@media (min-width: 992px) {
  .form-table {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .form-table .form-table-cell {
    display: table-cell;
    width: calc((100% - 6px) / 2);
    margin: 0 2px;
  }
  .form-table .form-table-cell:first-of-type {
    margin-left: 0;
  }
  .form-table .form-table-cell:last-of-type {
    margin-right: 0;
  }
  .form-table.form-table-3 .form-table-cell {
    width: calc((100% - 10px) / 3);
  }
}

@media (min-width: 992px) {
  .table-grid {
    display: table;
    width: 100%;
  }
  .table-grid > .table-cell {
    display: table-cell;
    padding: 0 15px;
    vertical-align: top;
  }
  .table-grid > .table-cell:first-of-type {
    width: 80%;
    text-align: right;
  }
  .table-grid > .table-cell:last-of-type {
    width: 20%;
    text-align: left;
  }
  .table-grid .form-inline > .input-group {
    width: 49%;
  }
  .table-grid .form-inline > .input-group:first-of-type {
    float: left;
  }
}

.radio-wrap-link a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #1a1a1a;
}
.radio-wrap-link a:hover {
  color: #1a1a1a;
}
.radio-wrap-link a input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  margin-right: 5px;
  font: inherit;
  color: currentColor;
  width: 14px;
  height: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.radio-wrap-link a input[type=radio]:focus {
  outline: 0;
}
.radio-wrap-link a input[type=radio]:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /* Windows High Contrast Mode */
  background-color: #e3e3e3;
}
.radio-wrap-link a input[type=radio]:checked {
  border: 1px solid #977638;
}
.radio-wrap-link a input[type=radio]:checked::before {
  background-color: #977638;
}

.radio-wrap {
  display: flex;
  align-items: center;
}
.radio-wrap input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  margin-right: 5px;
  font: inherit;
  color: currentColor;
  width: 14px;
  height: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.radio-wrap input[type=radio]:focus {
  outline: 0;
}
.radio-wrap input[type=radio]:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /* Windows High Contrast Mode */
  background-color: #e3e3e3;
}
.radio-wrap input[type=radio]:checked {
  border: 1px solid #977638;
}
.radio-wrap input[type=radio]:checked::before {
  background-color: #977638;
}

.checkbox-wrap input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  position: relative;
  padding-left: 20px;
}
.checkbox-wrap input[type=checkbox]:before {
  content: url("/assets/common/ib/img/en_US/common/checkbox_off.svg");
  position: absolute;
  top: -7px;
  left: 0;
}
.checkbox-wrap input[type=checkbox]:checked:before {
  content: url("/assets/common/ib/img/en_US/common/checkbox_on.svg");
  position: absolute;
  top: -7px;
  left: 0;
}

.password-validation-error-message .first-validation-box {
  display: flex;
  flex-wrap: wrap;
}
.password-validation-error-message .validation-desc {
  color: #ff7f7f;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  margin: 10px 4px 0 0;
}
.password-validation-error-message .validation-desc:after {
  content: ""; /* content 속성이 있어야 가상 요소가 생성됩니다. */
  display: inline-block; /* 인라인 요소로 설정하여 다른 내용과 함께 나타날 수 있습니다. */
  width: 16px; /* 아이콘의 너비에 맞게 조절하세요. */
  height: 16px;
  background-size: cover; /* 배경 이미지를 요소에 맞게 조절합니다. */
  margin-left: 4px;
  background-image: url("/assets/common/common/img/x_icon.svg");
}

/***********************************************************************************************************************
 * 사이트 하단 body에 현재 사이즈를 마킹해주는 함수 Dont Remove
 * 좌측은 현재 모바일인지 아닌지
 * 우측은 현재 xxs, xs, sm, md, lg를 마킹
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Page Reset Style (Global)
 ***********************************************************************************************************************/
html {
  height: 100%;
}

body {
  height: 1px;
  min-height: 100%;
  line-height: 1.6px;
}

ul {
  padding: 0;
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table > thead td, table > thead th {
  text-align: center;
}

a, a:hover, a:active, a:focus, a:visited {
  text-decoration: none;
  outline: none;
  color: inherit;
}

/***********************************************************************************************************************
 * Global Style
 ***********************************************************************************************************************/
body.collapse {
  display: block !important;
  height: 100% !important;
}

/***********************************************************************************************************************
 * BASE LAYOUT
 ***********************************************************************************************************************/
.container-sub {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-sub:before, .container-sub:after {
  display: table;
  content: " ";
}
.container-sub:after {
  clear: both;
}
@media (min-width: 768px) {
  .container-sub {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container-sub {
    width: 970px;
    max-width: 1250px;
  }
}
@media (min-width: 1280px) {
  .container-sub {
    width: 1250px;
  }
}

header {
  position: relative;
  display: block;
  border-bottom: solid 1px #323232;
  z-index: 5;
}
header .boot-ac-heading {
  position: relative;
  z-index: 5;
  padding: 0 15px;
}
header .boot-ac-slide-heading {
  padding: 0 15px;
}
header .boot-ac-slide-heading .language a {
  outline: none;
  display: block;
  padding: 37.5px 0;
  text-decoration: none;
  margin-right: 20px;
}
header .boot-ac-slide-heading .language a:hover, header .boot-ac-slide-heading .language a:focus {
  text-decoration: none;
}
header .boot-ac-slide-heading .language a img {
  width: 20px;
  margin-right: 4px;
}
header .boot-ac-slide-heading .language a span {
  color: #fff;
  font-size: 15px;
  vertical-align: middle;
  position: relative;
}
header .boot-ac-slide-heading .language a span:after {
  content: "";
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 0 solid transparent;
  vertical-align: middle;
  margin-top: 10px;
  position: absolute;
  margin-left: 5px;
}
header .boot-ac-slide-heading #selected_account_no {
  margin-left: 10px;
  margin-bottom: 0;
}
header .boot-ac-slide-heading #selected_account_no + .select2-container--default {
  width: 108px !important;
  margin-left: 8px;
  color: black;
  font-size: 14px;
  font-weight: bold;
}
header .boot-ac-slide-heading #selected_account_no + .select2-container--default .select2-selection {
  box-shadow: none;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  height: 35px;
}
header .boot-ac-slide-heading #selected_account_no + .select2-container--default .select2-selection__rendered {
  line-height: 35px;
}
header .boot-ac-slide-heading #selected_account_no + .select2-container--default .select2-selection__arrow {
  height: 32px;
}
@media (max-width: 1050px) {
  header {
    height: 70px;
    background-color: #282828;
    color: #FFF;
  }
  header .boot-ac-heading {
    height: 70px;
  }
  header .boot-ac-heading .wrap {
    display: flex;
    align-items: center;
  }
  header .boot-ac-heading .brand {
    float: left;
    display: inline-block;
    height: 100%;
  }
  header .boot-ac-heading .brand > a {
    display: block;
    padding: 22px 0;
  }
  header .boot-ac-heading .brand > a > img {
    height: 26px;
  }
  header .boot-ac-heading .boot-ac-open-menu {
    margin-right: 10px;
  }
  header .boot-ac-heading .boot-ac-open-menu > a {
    position: relative;
    display: block;
    width: 33px;
    height: 33px;
    color: #FFF;
  }
  header .boot-ac-heading .boot-ac-open-menu > a img {
    width: 100%;
  }
  header .boot-ac-heading .language {
    position: absolute;
    right: 15px;
    width: 25px;
  }
  header .boot-ac-heading .language a img {
    width: 100%;
  }
  header .boot-ac-slide-heading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transform: translateY(calc(-100% - 70px));
    -ms-transform: translateY(calc(-100% - 70px));
    -moz-transform: translateY(calc(-100% - 70px));
    -webkit-transform: translateY(calc(-100% - 70px));
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    padding-bottom: 15px;
    background-color: #0d1f66;
  }
  header .boot-ac-slide-heading.on {
    height: 100%;
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  header .boot-ac-slide-heading > .wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  header .boot-ac-slide-heading > .wrap .close-btn {
    position: absolute;
    top: 20px;
    right: 17px;
    cursor: pointer;
  }
  header .boot-ac-slide-heading #gnb {
    margin-top: 70px;
  }
  header .boot-ac-slide-heading #gnb .nav > li {
    border-bottom: 0;
  }
  header .boot-ac-slide-heading #gnb .nav > li > a {
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
  }
  header .boot-ac-slide-heading #gnb .nav > li .nav-sub > li {
    padding: 0;
  }
  header .boot-ac-slide-heading #gnb .nav > li .nav-sub > li a {
    font-size: 15px;
    color: #616b91;
  }
  header .boot-ac-slide-heading #gnb .nav.nav-login-before > li a:hover {
    text-decoration: underline;
  }
  header .boot-ac-slide-heading .language > a {
    display: block;
    padding: 27.5px 0;
  }
  header .boot-ac-slide-heading .language > a > img {
    height: 45px;
  }
  header .boot-ac-slide-heading #selected_account_no {
    margin-left: 0;
    margin-bottom: 20px;
    height: 55px;
  }
  header .boot-ac-slide-heading .func > a {
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 5px;
  }
}
@media (min-width: 992px) {
  header {
    height: 98px;
    background-color: #282828;
    color: #FFF;
  }
  header .boot-ac-heading {
    float: left;
    display: inline-block;
    height: 100%;
  }
  header .boot-ac-heading .brand {
    float: left;
    display: inline-block;
    height: 100%;
  }
  header .boot-ac-heading .brand > a {
    width: 158px;
    display: block;
    padding: 30px 0;
  }
  header .boot-ac-heading .brand > a > img {
    width: 100%;
  }
  header .boot-ac-heading .user-info {
    float: left;
    display: inline-block;
    padding: 42px 15px;
    line-height: 16px;
  }
  header .boot-ac-heading .user-info > p {
    margin-bottom: 0;
  }
  header .boot-ac-slide-heading {
    float: right;
    display: inline-block;
    width: 64%;
  }
  header .boot-ac-slide-heading > .wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  header .boot-ac-slide-heading > .wrap > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .boot-ac-slide-heading > .wrap > div .language-btn {
    color: #fff;
    display: flex;
    gap: 4px;
  }
  header .boot-ac-slide-heading > .wrap > div .language-btn:hover {
    text-decoration: none;
  }
  header .boot-ac-slide-heading > .wrap > div .language-btn span:after {
    content: "\e91d";
    font-family: icomoon;
    font-size: 20px;
    vertical-align: middle;
  }
  header .boot-ac-slide-heading > .wrap > div .language-btn span.open:after {
    content: "\e91f";
    transition: all ease-in 0.6s;
  }
  header .boot-ac-slide-heading .gnb {
    float: left;
    display: inline-block;
  }
  header .boot-ac-slide-heading .language {
    float: left;
  }
  header .boot-ac-slide-heading .language > a {
    display: block;
    padding: 38px 0;
  }
  header .boot-ac-slide-heading .func {
    position: relative;
    float: left;
    height: 100px;
  }
  header .boot-ac-slide-heading .func > a {
    position: relative;
    height: 40px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 13px;
    line-height: 13px;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
}

#gnb .panel {
  box-shadow: none;
  margin: 0;
  background-color: inherit;
  border-radius: 0;
}
#gnb .nav > li > a {
  position: relative;
  display: block;
  font-size: 17px;
}
@media (max-width: 991px) {
  #gnb {
    padding: 15px 0;
  }
  #gnb .nav > li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    padding: 0 15px;
  }
  #gnb .nav > li > a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    padding: 18px 0;
  }
  #gnb .nav > li > a:hover, #gnb .nav > li > a:active, #gnb .nav > li > a:visited, #gnb .nav > li > a:focus {
    background-color: transparent;
    color: inherit;
  }
  #gnb .nav > li > a:hover, #gnb .nav > li > a.active {
    text-decoration: underline;
  }
  #gnb .nav-sub > li {
    padding: 0 15px;
  }
  #gnb .nav-sub > li:last-of-type {
    margin-bottom: 15px;
  }
  #gnb .nav-sub > li > a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 14px;
    padding: 11px 0;
  }
  #gnb .nav-sub > li > a:hover, #gnb .nav-sub > li > a:active, #gnb .nav-sub > li > a:visited, #gnb .nav-sub > li > a:focus {
    background-color: transparent;
    color: inherit;
  }
  #gnb .nav-sub > li > a:hover, #gnb .nav-sub > li > a.active {
    color: #5bc0de;
  }
}
@media (min-width: 992px) {
  #gnb .nav {
    display: table;
    padding: 31px 0;
  }
  #gnb .nav > li {
    display: table-cell;
  }
  #gnb .nav > li > a.collapsed {
    color: #FFF;
  }
  #gnb .nav > li > a:hover, #gnb .nav > li > a:active, #gnb .nav > li > a:visited, #gnb .nav > li > a:focus {
    color: #FFF;
    background-color: transparent;
  }
  #gnb .nav > li > a:hover, #gnb .nav > li > a.active {
    border-bottom: 1px solid #ddd;
  }
  #gnb .nav .nav-sub {
    position: absolute;
    background-color: #282828;
  }
  #gnb .nav .nav-sub > li > a {
    color: #fff;
    position: relative;
    display: block;
    min-width: 250px;
    font-size: 14px;
    line-height: 14px;
    padding: 18px 15px;
    border-top: solid 1px #515151;
  }
  #gnb .nav .nav-sub > li > a:hover, #gnb .nav .nav-sub > li > a.active {
    background-color: #2e7ad8;
    color: #fff;
  }
}

footer {
  text-align: center;
}
footer .footer_partner {
  padding: 30px 0;
}
footer .footer_partner .partner_list {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0;
}
footer .footer_partner .partner_list > li {
  display: table-cell;
}
footer .footer_contact_us p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  footer {
    display: table;
    width: 100%;
    height: 100px;
  }
  footer .footer_partner .partner_list > li {
    width: 12.5%;
  }
  footer .footer_partner .partner_list > li img {
    width: 100%;
  }
  footer .footer_contact_us {
    color: #333;
    vertical-align: middle;
    font-size: 10px;
    padding: 0 0 30px 0;
  }
}
@media (min-width: 992px) {
  footer .footer_partner .partner_list > li > img {
    height: 60px;
  }
  footer .footer_contact_us {
    font-size: 14px;
    line-height: 14px;
    padding: 48px 0;
  }
}

#wrapper {
  width: 100%;
  min-height: 100%;
}
#wrapper > #content_layout {
  height: 100%;
}
#wrapper > #content_layout > .wrap {
  position: relative;
  height: 100%;
}

#ac-modal-languages .modal-dialog {
  min-width: 870px;
}
#ac-modal-languages .modal-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: solid 3px #2e7ad8;
}
#ac-modal-languages .modal-header {
  border: none;
}
#ac-modal-languages .modal-header .modal_heading {
  position: relative;
  text-align: center;
}
#ac-modal-languages .modal-header .modal_heading .modal-title {
  margin-bottom: 15px;
}
#ac-modal-languages .modal-header .modal_heading > p {
  margin-bottom: 0;
}
#ac-modal-languages .modal-header .close {
  position: absolute;
  right: 15px;
  top: 15px;
}
#ac-modal-languages .modal-body .flag_wrap {
  overflow: hidden;
}
#ac-modal-languages .modal-body .flag_wrap .flag_box {
  float: left;
  width: 12.5%;
}
#ac-modal-languages .modal-body .flag_wrap .flag_box .language_item {
  padding: 0 10%;
}
#ac-modal-languages .modal-body .flag_wrap .flag_box .language_item > a {
  display: block;
  text-align: center;
  color: #000;
}
#ac-modal-languages .modal-body .flag_wrap .flag_box .language_item > a:hover, #ac-modal-languages .modal-body .flag_wrap .flag_box .language_item > a:focus {
  color: #000;
}
#ac-modal-languages .modal-body .flag_wrap .flag_box .language_item > a > img {
  width: 60%;
  height: auto;
}
#ac-modal-languages .modal-body .flag_wrap .flag_box .language_item > a > p {
  margin-top: -8px;
  font-size: 13px;
}
@media (max-width: 991px) {
  #ac-modal-languages .modal-dialog {
    width: auto;
    min-width: 1px;
  }
  #ac-modal-languages .modal-body .flag_wrap .flag_box {
    width: 25%;
    min-height: 88px;
  }
  #ac-modal-languages .modal-body .flag_wrap .flag_box .language_item {
    padding: 0 20%;
  }
  #ac-modal-languages .modal-body .flag_wrap .flag_box .language_item > a {
    display: block;
    text-align: center;
  }
  #ac-modal-languages .modal-body .flag_wrap .flag_box .language_item > a > img {
    width: 100%;
    height: auto;
  }
  #ac-modal-languages .modal-body .flag_wrap .flag_box .language_item > a > p {
    margin-top: 0px;
    margin-bottom: 0;
    font-size: 11px;
  }
}
@media (min-width: 992px) {
  #ac-modal-languages .modal-header {
    padding: 30px 30px 15px;
  }
  #ac-modal-languages .modal-body {
    padding: 15px 30px 30px;
  }
}

#flags_popup {
  position: relative;
  top: 80px;
  right: 0;
  display: none;
}
#flags_popup.on {
  display: block;
}
#flags_popup .container {
  max-width: 535px;
  background: #212938;
  border: none;
  padding: 40px 0 20px 40px;
  top: 90%;
  right: 110px;
  position: absolute;
}
#flags_popup .container .lang-close-btn {
  display: none;
}
#flags_popup .container ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
#flags_popup .container ul li {
  color: #fff;
  text-align: left;
  width: 33.3333333333%;
  margin-bottom: 15px;
}
#flags_popup .container ul li a p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 0;
}
#flags_popup .container ul li a span {
  color: #8c96a9;
  font-size: 10px;
}
@media (max-width: 991px) {
  #flags_popup {
    top: 0;
  }
  #flags_popup .container {
    max-width: 100%;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 80px 0 20px 20px;
  }
  #flags_popup .container .m-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
  }
}

@media screen and (max-width: 767px) {
  #view_payout_container div.dataTables_wrapper div.dataTables_length {
    text-align: initial !important;
  }
}
/***********************************************************************************************************************
 *
 * GLOBAL COMPONENT FOR VIEW
 *
***********************************************************************************************************************/
.style-select select, .style-select select.form-control {
  -webkit-appearance: none; /*select 내부 스타일 제거 (화살표 제거)*/
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: transparent url(/assets/common/ib/img/en_US/common/arrow_down.svg) 96%/3% no-repeat !important;
}
@media (max-width: 991px) {
  .style-select select, .style-select select.form-control {
    background: transparent url(/assets/common/ib/img/en_US/common/arrow_down.svg) 96%/5% no-repeat !important;
  }
}

.input-group-addon {
  padding: 2px 8px !important;
}
.input-group-addon i {
  font-size: 28px;
}

.section_contents {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .section_contents {
    padding-bottom: 40px;
  }
}

.article-area {
  background: #fff;
  border: 1px solid #e3e3e3;
  padding: 30px 40px;
}
.article-area.border-top {
  border-top: none;
}
@media (max-width: 991px) {
  .article-area {
    padding: 23px 15px;
  }
}

.article-area-forgot-password {
  background: #fafafa;
  border: 1px solid #e3e3e3;
  padding: 40px;
}
@media (max-width: 991px) {
  .article-area-forgot-password {
    padding: 32px 15px;
  }
}

.article-bottom {
  padding-bottom: 100px;
}

.btn-center-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .btn-center-wrap {
    margin-top: 0px;
  }
}

input.form-control:focus {
  outline: none !important;
  border: 1px solid #977638 !important;
}

button.btn-submit, a.btn-submit {
  border: 1px solid #977638;
  box-shadow: none;
  min-width: 220px;
  border-radius: 3px;
  background-color: #977638;
  letter-spacing: -0.3px;
  color: #fff;
  height: 50px;
  padding: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
button.btn-submit:hover, a.btn-submit:hover {
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
}
button.btn-submit:focus, a.btn-submit:focus {
  color: #fff !important;
}
button.btn-submit.sm-size, a.btn-submit.sm-size {
  min-width: auto;
  width: 128px;
}
button.btn-submit.btn-ib, a.btn-submit.btn-ib {
  min-width: auto;
  width: 120px;
}
@media (max-width: 991px) {
  button.btn-submit, a.btn-submit {
    min-width: 100%;
    width: 100%;
  }
  button.btn-submit.btn-ib, a.btn-submit.btn-ib {
    min-width: 100%;
    width: 100%;
  }
}

.btn-submit-line {
  width: 220px;
  border-radius: 3px;
  border: 1px solid #977638;
  letter-spacing: -0.3px;
  color: #977638;
  height: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background-color: transparent;
}
.btn-submit-line:hover {
  color: #977638;
}
@media (max-width: 991px) {
  .btn-submit-line {
    width: 100%;
  }
}

@media (max-width: 991px) {
  #select2_mt4_members .select2-container {
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  #select2_mt4_members.account_select .select2-container {
    width: 100% !important;
  }
}

.btn.btn-ib {
  color: #FFF;
  background-color: #2e7ad8;
  border-color: #256ec7;
  padding: 10px 30px;
}
.btn.btn-ib:focus, .btn.btn-ib.focus {
  color: #FFF;
  background-color: #2162b2;
  border-color: #11335c;
}
.btn.btn-ib:hover {
  color: #FFF;
  background-color: #2162b2;
  border-color: #1c5194;
}
.btn.btn-ib:active, .btn.btn-ib.active, .open > .btn.btn-ib.dropdown-toggle {
  color: #FFF;
  background-color: #2162b2;
  background-image: none;
  border-color: #1c5194;
}
.btn.btn-ib:active:hover, .btn.btn-ib:active:focus, .btn.btn-ib:active.focus, .btn.btn-ib.active:hover, .btn.btn-ib.active:focus, .btn.btn-ib.active.focus, .open > .btn.btn-ib.dropdown-toggle:hover, .open > .btn.btn-ib.dropdown-toggle:focus, .open > .btn.btn-ib.dropdown-toggle.focus {
  color: #FFF;
  background-color: #1c5194;
  border-color: #11335c;
}
.btn.btn-ib.disabled:hover, .btn.btn-ib.disabled:focus, .btn.btn-ib.disabled.focus, .btn.btn-ib[disabled]:hover, .btn.btn-ib[disabled]:focus, .btn.btn-ib[disabled].focus, fieldset[disabled] .btn.btn-ib:hover, fieldset[disabled] .btn.btn-ib:focus, fieldset[disabled] .btn.btn-ib.focus {
  background-color: #2e7ad8;
  border-color: #256ec7;
}
.btn.btn-ib .badge {
  color: #2e7ad8;
  background-color: #FFF;
}

.btn.btn-ib-gray {
  color: #1a1a1a;
  background-color: #f3f3f3;
  border-color: #ddd;
  padding: 10px 30px;
}
.btn.btn-ib-gray:focus, .btn.btn-ib-gray.focus {
  color: #1a1a1a;
  background-color: #dadada;
  border-color: #9d9d9d;
}
.btn.btn-ib-gray:hover {
  color: #1a1a1a;
  background-color: #dadada;
  border-color: #bebebe;
}
.btn.btn-ib-gray:active, .btn.btn-ib-gray.active, .open > .btn.btn-ib-gray.dropdown-toggle {
  color: #1a1a1a;
  background-color: #dadada;
  background-image: none;
  border-color: #bebebe;
}
.btn.btn-ib-gray:active:hover, .btn.btn-ib-gray:active:focus, .btn.btn-ib-gray:active.focus, .btn.btn-ib-gray.active:hover, .btn.btn-ib-gray.active:focus, .btn.btn-ib-gray.active.focus, .open > .btn.btn-ib-gray.dropdown-toggle:hover, .open > .btn.btn-ib-gray.dropdown-toggle:focus, .open > .btn.btn-ib-gray.dropdown-toggle.focus {
  color: #1a1a1a;
  background-color: #c8c8c8;
  border-color: #9d9d9d;
}
.btn.btn-ib-gray.disabled:hover, .btn.btn-ib-gray.disabled:focus, .btn.btn-ib-gray.disabled.focus, .btn.btn-ib-gray[disabled]:hover, .btn.btn-ib-gray[disabled]:focus, .btn.btn-ib-gray[disabled].focus, fieldset[disabled] .btn.btn-ib-gray:hover, fieldset[disabled] .btn.btn-ib-gray:focus, fieldset[disabled] .btn.btn-ib-gray.focus {
  background-color: #f3f3f3;
  border-color: #ddd;
}
.btn.btn-ib-gray .badge {
  color: #f3f3f3;
  background-color: #1a1a1a;
}
@media (max-width: 991px) {
  .btn.btn-ib-gray {
    margin: 10px 0;
  }
}

.empty_input {
  border-color: #2e7ad8;
}

.table-area {
  position: relative;
}
.table-area .excel-btn-area {
  position: absolute;
  top: 0;
  right: 0;
}
.table-area .excel-btn-area button {
  min-width: 100px;
  border: 1px solid #977638;
  color: #977638;
  background: none;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 10px;
}
.table-area .excel-btn-area .text-color-excel-gold {
  color: #977638;
}
.table-area table#datatables {
  max-width: 100% !important;
  border-top: 2px solid #1a1a1a;
}
.table-area table#datatables tr th {
  font-size: 13px;
}
.table-area table#datatables tr td {
  font-size: 15px;
}
.table-area table#datatables tr th, .table-area table#datatables tr td {
  padding: 14px 0;
  text-align: center;
  background: transparent;
  vertical-align: middle;
  color: #333;
}
.table-area table#datatables tr th i, .table-area table#datatables tr td i {
  font-size: 24px;
  vertical-align: middle;
}
.table-area table#datatables thead .sorting:after,
.table-area table#datatables thead .sorting_desc:after {
  right: 5px;
  bottom: 13px;
}
.table-area table#datatables tr th, .table-area table#datatables tr td {
  border-top: none;
  border-bottom: 1px solid #e3e3e3;
}
.table-area table#datatables tr th:not(:first-child), .table-area table#datatables tr td:not(:first-child) {
  border-left: 1px solid #e3e3e3;
}
.table-area .pagination li.active a {
  color: #fff;
  background: #977638;
}
.table-area .pagination li a {
  color: #b9b9b9;
  border-color: #e3e3e3;
}
@media (max-width: 991px) {
  .table-area .excel-btn-area {
    top: 0;
  }
  .table-area table#datatables {
    border-top: 2px solid #1a1a1a;
  }
  .table-area table#datatables tr th {
    padding: 10px 25px;
  }
  .table-area table#datatables tr td {
    padding: 6px 8px;
  }
  .table-area table#datatables thead .sorting:after,
  .table-area table#datatables thead .sorting_desc:after {
    right: 5px;
    bottom: 13px;
  }
  .table-area table#datatables tr th, .table-area table#datatables tr td {
    border-top: none;
    border-bottom: 1px solid #e3e3e3;
  }
  .table-area table#datatables tr th:not(:first-child), .table-area table#datatables tr td:not(:first-child) {
    border-left: 1px solid #e3e3e3;
  }
}

@media (max-width: 991px) {
  .table-responsive {
    margin-bottom: 0 !important;
    border: none !important;
  }
}
@media (max-width: 991px) {
  .tab-responsive {
    width: 90%;
    margin: 0 auto;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

article {
  position: relative;
}
article[class^=article_].mb20 {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  article[class^=article_] {
    margin-bottom: 30px;
  }
}

.section_title {
  margin: 50px 0 0;
}
.section_title .title {
  font-size: 30px;
}
.section_title .title_desc {
  font-size: 14px;
  color: #676767;
}
@media (max-width: 991px) {
  .section_title {
    margin: 40px 0 24px;
  }
  .section_title .title_desc {
    margin-bottom: 0;
  }
}

.article_title {
  margin-bottom: 20px;
}
.article_title .title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}
.article_title .title_desc {
  font-size: 14px;
  color: #676767;
}

@media (max-width: 991px) {
  article.section_visual_container {
    background: url(/assets/common/ib/img/en_US/main/new/key_visual_bg-m.png) no-repeat center right !important;
    background-size: cover !important;
    height: 200px;
  }
  article.section_visual_container > .container,
  article.section_visual_container > .container-sub {
    height: 100%;
  }
  article.section_visual_container > .container > .wrap,
  article.section_visual_container > .container-sub > .wrap {
    position: relative;
    top: 70px;
  }
  article.section_visual_container .title {
    color: #FFF;
    font-size: 35px;
    margin-top: 0;
    display: inline-block;
    font-weight: bold;
    line-height: 1.14;
    text-transform: capitalize;
  }
  article.section_visual_container .title .title_desc {
    display: block;
    margin-left: 0;
    font-size: 16px;
    font-weight: normal;
  }
}
@media (min-width: 992px) {
  article.section_visual_container {
    position: relative;
    height: 270px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  article.section_visual_container > .container,
  article.section_visual_container > .container-sub {
    height: 100%;
  }
  article.section_visual_container > .container > .wrap,
  article.section_visual_container > .container-sub > .wrap {
    position: relative;
    top: 60%;
  }
  article.section_visual_container .title {
    color: #FFF;
    font-size: 55px;
    margin-top: 0;
    display: inline-block;
    font-weight: bold;
  }
  article.section_visual_container .title .title_desc {
    margin-left: 15px;
    font-size: 20px;
    font-weight: normal;
  }
}

article.section_tab_container {
  border-bottom: 2px solid #f0f0f0;
  background: #fff;
}
article.section_tab_container .section_tabs {
  display: table;
  padding-top: 5px;
}
article.section_tab_container .section_tabs > .tab {
  display: table-cell;
  width: 50%;
}
article.section_tab_container .section_tabs > .tab > a {
  text-align: center;
  font-size: 17px;
  color: #000;
  font-weight: 500;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}
article.section_tab_container .section_tabs > .tab > a.active {
  border-bottom: 4px solid #0b0f50;
  color: #0b0f50;
  font-weight: bold;
}
article.section_tab_container .section_tabs > .tab > a:hover {
  background: transparent;
  text-decoration: none;
}
@media (max-width: 991px) {
  article.section_tab_container .section_tabs {
    width: 100%;
  }
  article.section_tab_container .section_tabs > .tab > a {
    display: block;
    font-size: 14px;
    line-height: 14px;
    padding: 13px 15px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  article.section_tab_container .section_tabs > .tab > a {
    white-space: nowrap;
    padding: 20px 15px;
  }
}
@media (max-width: 991px) {
  article.section_tab_container > .tab > a {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  article.section_tab_container .section_tabs {
    width: 100%;
  }
  article.section_tab_container .section_tabs > .tab > a {
    display: block;
    font-size: 14px;
    line-height: 14px;
    padding: 23px 15px;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  article.section_tab_container .section_tabs > .tab > a {
    white-space: nowrap;
    padding: 20px 15px;
  }
}
@media (min-width: 992px) {
  article.section_tab_container .section_tabs {
    table-layout: fixed;
  }
  article.section_tab_container .section_tabs > .tab > a {
    height: 66px;
    font-size: 17px;
  }
}

.tab-wrap {
  margin-top: 28px;
}

.tpl_article_tabs .tabs {
  display: flex;
  width: 100%;
}
.tpl_article_tabs .tabs .tab {
  width: 50%;
  display: flex;
  justify-content: center;
  height: 70px;
}
.tpl_article_tabs .tabs .tab > a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  font-size: 15px;
  text-align: center;
  border: 1px solid #e3e3e3;
  cursor: pointer;
}
.tpl_article_tabs .tabs .tab > a i {
  font-size: 11px;
  margin-left: 10px;
}
.tpl_article_tabs .tabs .tab > a:hover {
  text-decoration: none;
}
.tpl_article_tabs .tabs .tab > a.active {
  background-color: #0b0f50;
  color: #FFF !important;
  border: 1px solid #0b0f50;
}
.gold_article_tabs {
  margin: 24px 0;
}
.gold_article_tabs .tabs {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #e3e3e3;
}
.gold_article_tabs .tabs .tab a {
  height: 48px;
  width: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #999;
  line-height: 1.67;
}
.gold_article_tabs .tabs .tab a:hover {
  text-decoration: none;
}
.gold_article_tabs .tabs .tab a.active {
  border-bottom: 2px solid #977638;
  color: #977638;
}
@media (max-width: 991px) {
  .gold_article_tabs .tabs {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e3e3e3;
  }
  .gold_article_tabs .tabs .tab {
    width: 50%;
  }
  .gold_article_tabs .tabs .tab a {
    width: 100%;
  }
}

article.article_title_quick_nav {
  margin-bottom: 0;
}
article.article_title_quick_nav > .container > .wrap, article.article_title_quick_nav > .container-sub > .wrap {
  position: relative;
  height: 100%;
}
article.article_title_quick_nav .title {
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 991px) {
  article.article_title_quick_nav .title {
    font-size: 25px;
    margin: 0 0 7px;
  }
}
@media (min-width: 992px) {
  article.article_title_quick_nav .float_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 17px;
  }
  article.article_title_quick_nav .float_nav img {
    margin-right: 9px;
  }
  article.article_title_quick_nav .float_nav i {
    position: relative;
    margin: 0 10px;
    top: 1px;
  }
  article.article_title_quick_nav .float_nav .arrow {
    margin: 0 5px;
    vertical-align: middle;
  }
  article.article_title_quick_nav .float_nav .c_class {
    color: #333;
    font-weight: normal;
  }
  article.article_title_quick_nav .float_nav .m_class {
    color: #333;
    font-weight: bold;
  }
}

#profile_box .container-sub {
  display: flex;
}
#profile_box .container-sub .tpl_profile_box {
  border: 1px solid #e3e3e3;
  background: #fff;
  flex: 1;
}
#profile_box .container-sub .tpl_profile_box > div {
  padding: 15px;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_name {
  padding: 0 10px;
  margin-bottom: 30px;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_name .p_label {
  font-size: 18px;
  color: #858585;
  height: 24px;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_name .p_name {
  font-size: 23px;
  font-weight: bold;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_info {
  padding: 0 10px;
  font-size: 16px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_info label {
  font-weight: normal;
  width: 70%;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_info span {
  font-weight: bold;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_link {
  padding: 0 10px;
  font-size: 16px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_link label {
  font-weight: normal;
  width: 70%;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_link img {
  width: 10%;
  padding: 15px;
  cursor: pointer;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_link .copy-link {
  position: relative;
  width: 20%;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_link .copy-link button {
  padding: 4px 10px;
  margin: 4px;
  background-color: #f2efe5;
  color: #9A802C;
  font-weight: bold;
  min-width: 100%;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_link .copy-link .tooltip {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 8px 12px;
  position: absolute;
  z-index: 1;
  bottom: 100%; /* Position the tooltip above the button */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  white-space: nowrap; /* Prevent tooltip text from wrapping */
  min-width: 65px;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_link .copy-link .tooltip::after {
  content: "";
  position: absolute;
  top: 100%; /* Arrow pointing down */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
#profile_box .container-sub .tpl_profile_box .profile_detail .profile_link .copy-link .show-tooltip {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991px) {
  #profile_box .container-sub .tpl_profile_box {
    min-width: 100%;
  }
  #profile_box .container-sub .tpl_profile_box .profile_detail .profile_name .p_label {
    height: auto;
  }
  #profile_box .container-sub .tpl_profile_box .profile_detail .profile_info {
    font-size: 14px;
  }
  #profile_box .container-sub .tpl_profile_box .profile_detail .profile_link {
    font-size: 14px;
  }
  #profile_box .container-sub .tpl_profile_box .profile_detail .profile_link label {
    width: 45%;
  }
  #profile_box .container-sub .tpl_profile_box .profile_detail .profile_link img {
    width: auto;
    padding: 0;
    margin: 15px;
    height: 24px;
  }
  #profile_box .container-sub .tpl_profile_box .profile_detail .profile_link .copy-link {
    width: 35%;
  }
}
@media (min-width: 992px) {
  #profile_box .container-sub .tpl_profile_box {
    width: 50%;
  }
}
@media (max-width: 991px) {
  #profile_box .container-sub {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  #profile_box .container-sub .tpl_profile_box:first-child {
    margin-right: 10px; /* Add gap only between the two items */
  }
}

.new_profile_box {
  border: solid 1px #e3e3e3;
  padding: 40px 40px 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.new_profile_box .item {
  width: 49%;
}
.new_profile_box .dropdown {
  width: 100%;
  height: 50px;
  border-radius: 3px;
  border: 1px solid #e3e3e3;
  margin-bottom: 20px;
}
.new_profile_box .tit span {
  display: block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.05px;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.new_profile_box .tit strong {
  display: block;
  font-size: 25px;
  letter-spacing: -0.05px;
  color: #1a1a1a;
  margin-bottom: 34px;
}
.new_profile_box .item-card {
  height: 70px;
  border-radius: 3px;
  border: solid 1px #e3e3e3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 20px;
}
.new_profile_box .item-card .item-tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new_profile_box .item-card .item-tit i {
  font-size: 34px;
  margin-right: 15px;
  color: #b6b7ba;
}
.new_profile_box .item-card .item-tit p {
  font-size: 15px;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin: 0;
}
.new_profile_box .item-card .gold-text {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.48px;
  text-align: right;
  color: #977638;
}
@media (max-width: 991px) {
  .new_profile_box {
    padding: 32px 16px 20px;
    flex-direction: column;
  }
  .new_profile_box .item {
    width: 100%;
  }
  .new_profile_box .tit span {
    display: block;
    font-size: 15px;
    letter-spacing: -0.05px;
    color: #1a1a1a;
    margin-bottom: 0;
  }
  .new_profile_box .tit strong {
    display: block;
    font-size: 23px;
    letter-spacing: -0.05px;
    color: #1a1a1a;
    margin-bottom: 24px;
  }
  .new_profile_box .item-tit-m {
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 0;
  }
  .new_profile_box .item-card {
    height: 50px;
    border-radius: 0;
    padding: 0 16px;
  }
  .new_profile_box .item-card .item-tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .new_profile_box .item-card .item-tit i {
    font-size: 24px;
  }
  .new_profile_box .item-card .item-tit p {
    font-size: 15px;
    letter-spacing: -0.3px;
    color: #1a1a1a;
    margin: 0;
  }
  .new_profile_box .item-card .gold-text {
    font-size: 20px;
    font-weight: bold;
  }
  .new_profile_box .item-card .gold-text.member-email {
    font-size: 14px;
  }
}

.tpl_top_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #e3e3e3;
  border-top: 2px solid #000;
  background: #fff;
}
.tpl_top_box .item {
  padding: 15px;
  width: 33.3333333333%;
  padding: 20px 25px;
  border-left: solid 1px #e3e3e3;
  border-bottom: solid 1px #e3e3e3;
  text-align: center;
}
.tpl_top_box .item:nth-of-type(3), .tpl_top_box .item:last-of-type {
  border-right: solid 1px #e3e3e3;
}
.tpl_top_box .item > div {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tpl_top_box .item > div .label {
  background: #7d7d7d;
  font-size: 12px;
  font-weight: bold;
  padding: 7px 10px;
}
.tpl_top_box .item > div img {
  width: 40px;
}
.tpl_top_box .item > div span {
  font-size: 15px;
  color: #8c8c8c;
  margin-left: 10px;
  vertical-align: middle;
}
.tpl_top_box .item p {
  font-size: 24px;
  color: #9a802c;
  font-weight: bold;
  text-align: right;
  margin-bottom: 0;
}
.tpl_top_box .search-box {
  padding: 15px 0;
}
.tpl_top_box .search-box .search-box-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.tpl_top_box .search-box .search-box-item.mb-0 {
  margin-bottom: 0;
}
.tpl_top_box .search-box .search-box-item label {
  width: 170px;
  padding-right: 10px;
  text-align: right;
}
.tpl_top_box .search-box .search-box-item .form-inline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 520px;
}
.tpl_top_box .search-box .search-box-item .form-inline .form-group {
  margin: 0;
}
.tpl_top_box .search-box .search-box-item .form-inline .date {
  width: 250px;
}
.tpl_top_box .search-box .search-box-item .form-inline .date#datetimepicker_end {
  margin-left: 10px;
}
.tpl_top_box .search-box .search-box-item .form-inline .date input {
  height: 50px;
  border-radius: 0;
}
.tpl_top_box .search-box .search-box-item .form-inline .date .input-group-addon {
  border-radius: 0;
}
.tpl_top_box .search-box .search-box-item .form-inline .one-datepicker {
  width: 510px;
}
.tpl_top_box .search-box .search-box-item .btn {
  width: 120px;
}
.tpl_top_box .search-box .search-box-item .report-select {
  width: 510px;
}
.tpl_top_box .search-box .search-box-item .report-select .account_select {
  display: block;
  width: 100%;
}
.tpl_top_box .search-box .search-box-item .report-select .account_select > select {
  width: 100%;
}
.tpl_top_box .search-box .search-box-item .report-select + .btn-wrap {
  margin-left: 10px;
}
@media (max-width: 991px) {
  .tpl_top_box {
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    flex-direction: column;
  }
  .tpl_top_box .item {
    width: 100%;
    padding: 15px 20px;
  }
  .tpl_top_box .item:not(:last-child) {
    border-bottom: 1px solid #e3e3e3;
  }
  .tpl_top_box .item > div img {
    width: 30px;
  }
  .tpl_top_box .item .title {
    margin-bottom: 10px;
  }
  .tpl_top_box .search-box {
    padding: 15px;
  }
  .tpl_top_box .search-box .search-box-item {
    flex-direction: column;
  }
  .tpl_top_box .search-box .search-box-item label {
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
  .tpl_top_box .search-box .search-box-item .form-inline {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .tpl_top_box .search-box .search-box-item .form-inline .form-group {
    margin: 0 0 10px;
  }
  .tpl_top_box .search-box .search-box-item .form-inline .date {
    width: 100%;
  }
  .tpl_top_box .search-box .search-box-item .form-inline .date#datetimepicker_end {
    margin-left: 0;
  }
  .tpl_top_box .search-box .search-box-item .btn, .tpl_top_box .search-box .search-box-item .btn-wrap {
    width: 100%;
  }
  .tpl_top_box .search-box .search-box-item .report-select .account_select {
    display: block;
    width: 100%;
  }
  .tpl_top_box .search-box .search-box-item .report-select .account_select > select {
    width: 100%;
  }
}

.information .container-sub .panel {
  border: 1px solid #e3e3e3;
  border-top: 2px solid #000;
  box-shadow: none;
  margin-bottom: 0;
}
.information .container-sub .panel .panel-heading {
  background: transparent;
  text-align: left;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  padding: 20px 30px;
}
.information .container-sub .panel .panel-heading .title {
  color: #000;
  font-weight: bold;
  font-size: 18px;
}
.information .container-sub .panel .panel-heading img {
  width: 10px;
  margin-left: 7px;
}
.information .container-sub .panel .panel-body {
  border: none;
  padding: 20px 30px 30px;
}
.information .container-sub .panel .panel-body .form-group label {
  font-size: 15px;
}
.information .container-sub .panel .panel-body .form-group .form-control {
  border: 1px solid #e3e3e3;
  background: #fff;
  box-shadow: none;
  border-radius: 0;
  height: 50px;
}
.information .container-sub .panel .panel-body .form-group .form-control:disabled, .information .container-sub .panel .panel-body .form-group .form-control:read-only {
  background: #eee !important;
}
.information .container-sub .panel .panel-body .submit_phone_email {
  width: 180px;
  background: #977638;
  font-size: 15px;
  font-weight: bold;
  border: none;
  height: 50px;
  border-radius: 3px;
}
.information .container-sub .panel .panel-body .submit_contact_method {
  width: 180px;
  background: #977638;
  font-size: 15px;
  font-weight: bold;
  border: none;
  height: 50px;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .information .container-sub .panel .panel-heading {
    padding: 20px 15px;
  }
  .information .container-sub .panel .panel-body {
    padding: 20px 15px;
  }
  .information .container-sub .panel .panel-body .submit_phone_email {
    width: 100%;
    margin-top: 20px;
  }
}

.tpl_gray_box {
  background-color: #fff;
  border: solid 1px #ddd;
}
@media (max-width: 991px) {
  .tpl_gray_box {
    padding: 30px 15px;
  }
}
@media (min-width: 992px) {
  .tpl_gray_box {
    padding: 30px;
  }
}

.tpl_commission_report {
  margin-bottom: 20px;
}
.tpl_commission_report .wrap_row {
  border: solid 1px #ddd;
  margin-top: -1px;
}
.tpl_commission_report .wrap_row .wrap_cell {
  padding: 12px 15px;
}
.tpl_commission_report .wrap_row .cell_th {
  display: flex;
  align-items: center;
  text-align: left;
  background-color: #3f4b77;
  color: #FFF;
  font-weight: bold;
  line-height: 1.2;
}
.tpl_commission_report .wrap_row .cell_td {
  text-align: center;
  font-weight: bold;
}
@media (min-width: 992px) {
  .tpl_commission_report .wrap_row {
    display: flex;
    width: 100%;
  }
  .tpl_commission_report .wrap_row .wrap_cell {
    display: table-cell;
  }
}

.commission_report_count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc((100% - 20px) / 2);
  border: 1px solid #e3e3e3;
  padding: 15px 20px;
  margin: 46px 0 70px;
}
.commission_report_count div {
  display: flex;
  align-items: center;
}
.commission_report_count div i {
  font-family: "icomoon";
  font-size: 40px;
  margin-right: 23px;
}
.commission_report_count div span {
  color: #8c8c8c;
  font-size: 15px;
}
.commission_report_count .period_commission_value {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.48px;
  color: #9a802c;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .commission_report_count {
    width: 100%;
    flex-direction: column;
    margin: 30px 0 0;
  }
  .commission_report_count div {
    margin-right: auto;
  }
  .commission_report_count div i {
    font-size: 24px;
    margin-right: 10px;
  }
  .commission_report_count div span {
    font-size: 12px;
  }
  .commission_report_count .period_commission_value {
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .commission_report_count .wrap_row {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: -1px;
  }
  .commission_report_count .wrap_row .wrap_cell {
    display: table-cell;
  }
}

.radio-wrap-align {
  margin: 24px 0 36px;
}
@media (max-width: 991px) {
  .radio-wrap-align {
    margin: 18px 0;
  }
}

.tpl_search .input-group {
  margin-bottom: 5px;
}
.tpl_search .input-group .btn {
  padding: 5px 7px;
}
.tpl_search .input-group .btn > i {
  font-size: 24px;
}
@media (max-width: 991px) {
  .tpl_search .dis-inline-block {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .tpl_search .dis-inline-block {
    text-align: right;
  }
}

.tpl_card_box {
  display: table;
  table-layout: fixed;
  width: calc(100% + 6px);
  margin-left: -3px;
  margin-right: -3px;
}
.tpl_card_box .item {
  position: relative;
  padding-bottom: 6px;
  display: table-cell;
  padding-left: 3px;
  padding-right: 3px;
}
.tpl_card_box .item > div, .tpl_card_box .item > a > div {
  position: relative;
  padding: 15px;
  text-align: center;
  border: solid 1px #ddd;
}
.tpl_card_box .item .item_top {
  padding-bottom: 22.5px;
  margin-bottom: -1px;
  background: #fff;
}
.tpl_card_box .item .item_top > i {
  font-size: 60px;
}
.tpl_card_box .item .item_top label {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  padding: 5px 30px;
  background-color: #FFF;
  transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  margin: 0;
  z-index: 1;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  border: solid 1px #ddd;
  white-space: nowrap;
}
.tpl_card_box .item .item_bottom {
  background-color: #f4f4f4;
  padding-top: 22.5px;
}
.tpl_card_box .item .item_bottom > .item_value {
  font-size: 25px;
  color: #646464;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .tpl_card_box {
    width: 100%;
  }
}

.table-responsive .table .th_double_line {
  line-height: 16px;
}
@media (max-width: 991px) {
  .table-responsive .table thead > tr > th, .table-responsive .table thead > tr > td {
    white-space: nowrap;
  }
}

.modal_type_confirm .modal-header {
  position: relative;
  height: 30px;
  padding-left: 0;
  padding-bottom: 0;
  border: none;
}
.modal_type_confirm .modal-header > button {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal_type_confirm .modal-body #circle {
  text-align: center;
}
.modal_type_confirm .modal-body #circle > i {
  font-size: 86px;
}
.modal_type_confirm .modal-body h3 {
  font-size: 24px;
  text-align: center;
}
.modal_type_confirm .modal-body p {
  text-align: center;
}
@media (min-width: 992px) {
  .modal_type_confirm .modal-body #form_markup {
    padding: 0 30px 20px;
  }
}

.info-box.info-box-warning {
  border: solid 1px #f0ad4e;
  background-color: #fff8e4;
}
.info-box.info-box-warning .info-icon i {
  color: #f0ad4e;
}

/***********************************************************************************************************************
 *
 * VIEWS
 *
***********************************************************************************************************************/
/***********************************************************************************************************************
* VIEW_MAIN
***********************************************************************************************************************/
body.main_index header, body.main_main header {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  body.main_index #wrapper, body.main_main #wrapper {
    margin-top: -70px;
  }
}
@media (min-width: 992px) {
  body.main_index #wrapper, body.main_main #wrapper {
    padding-top: 0;
  }
}

#view_main_container article {
  margin-bottom: 0;
}
#view_main_container .article_header {
  text-align: center;
  margin-bottom: 30px;
}
#view_main_container .article_header .title {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 15px;
}
#view_main_container .article_txt {
  max-width: 620px;
  text-align: left;
  margin: 0 auto;
}
#view_main_container .article_split {
  padding: 100px 150px;
}
#view_main_container .article_split .table_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#view_main_container .article_split .table_wrap > div {
  text-align: center;
  height: 100%;
}
#view_main_container .article_split .table_wrap .content_wrap .article_header {
  margin-bottom: 0;
}
#view_main_container .article_split .table_wrap .content_wrap .article_header .title {
  text-align: left;
  width: 100%;
  font-size: 45px;
  font-weight: bold;
  color: #0d2056;
}
#view_main_container .article_split .table_wrap .content_wrap .article_txt {
  font-size: 17px;
  font-weight: normal;
  color: #434343;
  line-height: 30px;
}
#view_main_container .article_split .table_wrap .img_wrap {
  width: 1000px;
}
#view_main_container .article_split .table_wrap .img_wrap img {
  width: 100%;
}
@media (max-width: 1200px) {
  #view_main_container .article_split {
    padding: 100px 70px;
  }
}
@media (max-width: 991px) {
  #view_main_container .article_split {
    padding: 50px 20px;
  }
  #view_main_container .article_split .table_wrap {
    flex-direction: column;
  }
  #view_main_container .article_split .table_wrap .content_wrap .article_header .title {
    font-size: 30px;
  }
  #view_main_container .article_split .table_wrap .content_wrap .article_txt {
    font-size: 15px;
  }
  #view_main_container .article_split .table_wrap .img_wrap {
    width: 100%;
  }
}
#view_main_container .article_circle ul {
  display: flex;
  margin-bottom: 0;
}
#view_main_container .article_circle ul li {
  width: 50%;
  height: 450px;
  padding: 60px 70px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
#view_main_container .article_circle ul li:first-child {
  background: #fafafa;
}
#view_main_container .article_circle ul li:nth-child(2) {
  background: #f2f2f2;
}
#view_main_container .article_circle ul li:last-child {
  background: #e9e9e9;
}
#view_main_container .article_circle ul .img-area {
  width: 45px;
}
#view_main_container .article_circle ul .img-area img {
  width: 100%;
}
#view_main_container .article_circle ul h3 {
  font-size: 40px;
  color: #0d2056;
  font-weight: bold;
  margin-bottom: 10px;
}
#view_main_container .article_circle ul p {
  font-size: 17px;
  color: #343434;
  line-height: 25px;
}
#view_main_container .article_circle ul .main-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#view_main_container .article_circle ul .main-btn:hover {
  background: #9a802c;
}
#view_main_container .article_circle ul .main-btn:hover img {
  width: 20px;
}
#view_main_container .article_circle ul .main-btn:hover img:first-child {
  display: none;
}
#view_main_container .article_circle ul .main-btn:hover img:last-child {
  display: block;
}
#view_main_container .article_circle ul .main-btn img {
  width: 20px;
}
#view_main_container .article_circle ul .main-btn img:first-child {
  display: block;
}
#view_main_container .article_circle ul .main-btn img:last-child {
  display: none;
}
@media (max-width: 991px) {
  #view_main_container .article_circle ul {
    flex-direction: column;
  }
  #view_main_container .article_circle ul li {
    height: 310px;
    width: 100%;
    padding: 60px 30px;
    justify-content: flex-start;
  }
  #view_main_container .article_circle ul li h3 {
    font-size: 30px;
  }
  #view_main_container .article_circle ul li p {
    font-size: 17px;
  }
  #view_main_container .article_circle ul li .main-btn img {
    width: 15px;
  }
}
#view_main_container .article_advance {
  height: 600px;
}
#view_main_container .article_advance h3 {
  font-size: 45px;
  font-weight: bold;
  color: #0d2056;
}
#view_main_container .article_advance .contents {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#view_main_container .article_advance .contents .txt-area {
  padding: 0 150px;
  width: 66.6666666667%;
  color: #343434;
  font-size: 17px;
  line-height: 27px;
}
#view_main_container .article_advance .contents .txt-area p {
  font-size: 17px;
  margin: 20px 0;
  color: #000;
  font-weight: bold;
  line-height: 30px;
}
#view_main_container .article_advance .contents .img-area {
  width: 33.3333333333%;
  height: 100%;
  background-image: url("/assets/common/ib/img/en_US/main/new/ib-main-advatages.png");
  background-size: cover;
  background-color: #e5e6f7;
  background-position: 70px -75px;
  background-repeat: no-repeat;
}
#view_main_container .article_advance .contents .img-area img {
  width: 100%;
}
@media (max-width: 991px) {
  #view_main_container .article_advance {
    height: auto;
  }
  #view_main_container .article_advance h3 {
    font-size: 30px;
  }
  #view_main_container .article_advance .contents {
    flex-direction: column;
  }
  #view_main_container .article_advance .contents .txt-area {
    padding: 50px 20px;
    width: 100%;
    background-image: url("/assets/common/ib/img/en_US/main/new/ib-main-advatages.png");
    background-color: #e5e6f7;
    background-size: contain;
    background-position: right -170px top -260px;
    background-repeat: no-repeat;
  }
  #view_main_container .article_advance .contents .txt-area p {
    font-size: 15px;
  }
  #view_main_container .article_advance .contents .img-area {
    display: none;
  }
}
@media (min-width: 1600px) {
  #view_main_container .article_advance .contents .txt-area {
    padding: 50px 400px;
    background-position: 200px -300px;
  }
}
@media (min-width: 1200px) {
  #view_main_container .article_advance .contents .txt-area {
    padding: 50px 150px;
  }
}
#view_main_container .article_it_support {
  padding: 70px 150px 90px;
}
#view_main_container .article_it_support .article_header {
  text-align: left;
  margin-bottom: 20px;
}
#view_main_container .article_it_support .article_header .title {
  padding: 0;
  color: #0d2056;
  font-size: 45px;
  font-weight: bold;
}
#view_main_container .article_it_support ul {
  display: flex;
  justify-content: space-between;
  align-content: center;
}
#view_main_container .article_it_support ul li {
  width: calc((100% - 50px) / 3);
  padding: 60px 50px;
  min-height: 380px;
}
#view_main_container .article_it_support ul li:first-child {
  background: #0d2056;
}
#view_main_container .article_it_support ul li:nth-child(2) {
  background: #9a802c;
}
#view_main_container .article_it_support ul li:last-child {
  background: #7d7d7d;
}
#view_main_container .article_it_support ul li h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}
#view_main_container .article_it_support ul li p {
  font-size: 17px;
  color: #fff;
  font-weight: normal;
  line-height: 30px;
}
@media (max-width: 991px) {
  #view_main_container .article_it_support {
    padding: 50px 20px 70px;
  }
  #view_main_container .article_it_support .article_header .title {
    font-size: 30px;
  }
  #view_main_container .article_it_support ul {
    flex-direction: column;
  }
  #view_main_container .article_it_support ul li {
    width: 100%;
    min-height: 350px;
    padding: 60px 30px;
  }
  #view_main_container .article_it_support ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  #view_main_container .article_it_support ul li h3 {
    font-size: 22px;
  }
}
#view_main_container article.article_key_visual {
  height: 800px;
  overflow: hidden;
  position: relative;
}
#view_main_container article.article_key_visual .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/common/ib/img/en_US/main/new/main-bg.png") no-repeat center center;
  background-size: cover;
  animation: bgScale 1.2s ease-in;
  transition: all ease-in 1.2s;
}
#view_main_container article.article_key_visual .wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 150px;
}
#view_main_container article.article_key_visual .heading {
  text-align: left;
  padding-top: 280px;
}
#view_main_container article.article_key_visual .heading .heading_desc {
  color: #9a802c;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 0;
}
#view_main_container article.article_key_visual .heading .heading_title {
  color: #FFF;
  font-weight: bold;
  font-size: 65px;
  margin: 0 0 30px;
  text-transform: uppercase;
}
#view_main_container article.article_key_visual .heading .a_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 540px;
}
#view_main_container article.article_key_visual .heading .a_group > a {
  display: block;
  width: 260px;
  height: 60px;
  border-radius: 0;
  padding: 18px;
  font-size: 16px;
  font-weight: bold;
}
#view_main_container article.article_key_visual .heading .btn-gold-line {
  background: #9a802c;
  color: #FFF;
}
#view_main_container article.article_key_visual .heading .btn-white-line {
  background: transparent;
  border: 1px solid #fff;
  color: #FFF;
}
@media (max-width: 991px) {
  #view_main_container article.article_key_visual {
    padding-top: 70px;
  }
  #view_main_container article.article_key_visual .wrap {
    padding: 0 20px;
  }
  #view_main_container article.article_key_visual .heading {
    padding-top: 200px;
  }
  #view_main_container article.article_key_visual .heading .heading_title {
    font-size: 45px;
  }
  #view_main_container article.article_key_visual .heading .heading_desc {
    font-size: 25px;
    margin-bottom: 10px;
  }
  #view_main_container article.article_key_visual .heading .a_group {
    width: 100%;
    margin-top: 85px;
    flex-direction: column;
  }
  #view_main_container article.article_key_visual .heading .a_group > a {
    width: 100%;
    display: block;
    font-size: 16px;
    line-height: 32px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 5px;
  }
  #view_main_container article.article_key_visual .heading .a_group > a:first-child {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  #view_main_container article.article_key_visual .wrap {
    padding: 0 70px;
  }
}
@media (min-width: 1600px) {
  #view_main_container article.article_key_visual .wrap {
    padding: 0 150px;
  }
}
#view_main_container article.article_program {
  background-color: #F5F5F5;
}
@media (min-width: 992px) {
  #view_main_container article.article_program > .container {
    padding: 0 100px;
  }
}
#view_main_container article.article_advance .oblique {
  font-size: 17px;
  font-style: oblique;
  margin: 10px auto;
}
#view_main_container article.article_it_support {
  background-color: #F5F5F5;
}
@media (min-width: 992px) {
  #view_main_container article.article_it_support > .container {
    padding: 0 150px;
  }
}
#view_main_container article.article_card {
  height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  #view_main_container article.article_card .heading {
    position: absolute;
    top: 50%;
    left: 27%;
    margin-top: -100px;
  }
  #view_main_container article.article_card .heading .heading_title {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: #FFF;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  #view_main_container article.article_card .heading .heading_desc > p {
    position: relative;
    color: #FFF;
    padding-left: 20px;
    font-size: 18px;
  }
  #view_main_container article.article_card .heading .heading_desc > p:before {
    content: "▶";
    position: absolute;
    top: 5px;
    left: 0;
    color: #2e7ad8;
    font-size: 11px;
  }
}

#view_loyalty_program_container {
  background: #010c39;
  padding-bottom: 30px;
}
#view_loyalty_program_container .section_visual_container {
  display: none;
}
#view_loyalty_program_container .article_premium_program {
  margin-top: 80px;
}
#view_loyalty_program_container .article_premium_program .nav {
  display: flex;
  justify-content: center;
  border: none;
}
#view_loyalty_program_container .article_premium_program .nav li {
  margin-bottom: 0;
}
#view_loyalty_program_container .article_premium_program .nav li:hover a, #view_loyalty_program_container .article_premium_program .nav li:focus a {
  background: transparent;
  border: none;
  border-bottom: 2px solid #888c97;
  padding: 11px 15px !important;
}
#view_loyalty_program_container .article_premium_program .nav li.active a {
  padding: 10px 15px !important;
  color: #fff;
  border-bottom: 2px solid #fff;
  font-weight: bold;
}
#view_loyalty_program_container .article_premium_program .nav li a {
  height: 47px;
  outline: none;
  padding: 10px 15px !important;
  white-space: nowrap;
  margin: 0 1px;
  min-width: 160px;
  border-bottom: 2px solid #888c97;
  display: block;
  color: #888c97;
  font-size: 17px;
  text-align: center;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission h2 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin: 60px 0 20px;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission p {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 50px;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission h3 {
  font-size: 40px;
  color: #9a802c;
  font-weight: bold;
  margin-bottom: 30px;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission table {
  border-top: 1px solid #1a2552;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission table tr th, #view_loyalty_program_container .article_premium_program .tab-content #commission table tr td {
  white-space: nowrap;
  border-bottom: 1px solid #1a2552;
  padding: 25px;
  text-align: center;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission table tr th {
  color: #444e75;
  font-size: 15px;
  font-weight: bold;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission table tr td {
  font-size: 17px;
  font-weight: bold;
  border-right: 1px solid #1a2552;
  color: #fff;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission table tr td:last-child {
  border-right: none;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission table tr td:first-child {
  font-weight: 300;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission .grade {
  margin-bottom: 60px;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission .fee {
  margin-bottom: 60px;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission .fee ul li {
  margin-bottom: 40px;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission .fee ul li h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 10px;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission .program-level {
  margin-bottom: 60px;
}
#view_loyalty_program_container .article_premium_program .tab-content #commission .program-level p {
  font-weight: 300;
  margin-bottom: 30px;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty {
  position: relative;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .bg {
  background: url(/assets/common/ib/img/en_US/main/new/bg_sub_loyalty.png) no-repeat bottom center;
  background-size: cover;
  width: 100%;
  height: 839px;
  position: absolute;
}
@media (max-width: 1270px) and (min-width: 991px) {
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty .bg {
    background: url(/assets/common/ib/img/en_US/main/new/bg_sub_loyalty.png) no-repeat top -135px center;
    margin-top: 0;
    height: 1000px;
  }
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .txt-area {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 9;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .txt-area h2 {
  font-size: 50px;
  color: #fff;
  font-weight: bold;
  margin: 60px 0 20px;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .txt-area p {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 40px;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul {
  display: flex;
  flex-wrap: wrap;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li {
  width: 1250px;
  position: relative;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:first-child {
  margin-bottom: 60px;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(2) {
  margin-bottom: 60px;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(3) {
  padding: 60px 30px;
  background: url("/assets/common/ib/img/en_US/main/new/bg_trip.png") no-repeat center center;
  background-size: cover;
  border-left: 1px solid #1a2552;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(4) {
  padding: 20px 30px;
  background: url("/assets/common/ib/img/en_US/main/new/bg_rolex.png") no-repeat center center;
  background-size: cover;
  border-right: 1px solid #1a2552;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(5) {
  border-left: 1px solid #1a2552;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(8) {
  border-right: 1px solid #1a2552;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(7) img {
  border-bottom: 1px solid #181d5b;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(3), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(5), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(6), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(7) {
  border-right: 1px solid #1a2552;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(3), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(4) {
  width: 50%;
  border-top: 1px solid #1a2552;
  border-bottom: 1px solid #1a2552;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(5), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(6), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(7), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(8) {
  width: 25%;
  border-bottom: 1px solid #1a2552;
  padding: 50px 40px;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(5) img, #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(6) img, #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(7) img, #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(8) img {
  margin-top: 30px;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li img {
  width: 100%;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li .number {
  font-size: 60px;
  margin-bottom: 0;
  position: absolute;
  right: 30px;
  top: 10px;
  font-weight: bold;
  color: #1a2552;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area {
  margin-top: 80px;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area h3 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area h4 {
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: left;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table {
  border-top: 1px solid #1a2552;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table tr th, #view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table tr td {
  border-bottom: 1px solid #1a2552;
  text-align: center;
  padding: 20px;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table tr th {
  font-size: 15px;
  color: #444e75;
  font-weight: bold;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table tr td {
  font-size: 17px;
  color: #fff;
  font-weight: bold;
}
#view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table tr td:not(:last-child) {
  border-right: 1px solid #1a2552;
}
#view_loyalty_program_container .float_nav {
  display: none;
}
#view_loyalty_program_container .nav-tabs > li.active > a {
  background-color: transparent !important;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
}
#view_loyalty_program_container .nav-tabs > li.active > a:hover, #view_loyalty_program_container .nav-tabs > li.active > a:focus {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  #view_loyalty_program_container .article_premium_program .tab-content #commission h2 {
    font-size: 30px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #commission p {
    font-size: 14px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #commission > div h3 {
    font-size: 25px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty .bg {
    height: 430px;
    position: absolute;
    top: 7%;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty .txt-area h2 {
    font-size: 30px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul {
    margin-top: 70px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:first-child {
    padding: 0 10px 0 0;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(2) {
    padding: 0 10px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(3) {
    padding: 20px 30px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(3), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(4) {
    width: 100%;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(6) {
    border-right: none;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(5), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(6), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(7), #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li:nth-child(8) {
    width: 50%;
    padding: 20px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty ul li .number {
    font-size: 50px;
    top: 0;
    right: 20px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area h3 {
    font-size: 25px;
    line-height: 35px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table tr th, #view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table tr td {
    white-space: nowrap;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table tr td:nth-child(2) {
    text-align: left;
    font-size: 14px;
  }
  #view_loyalty_program_container .article_premium_program .tab-content #loyalty .table-area table tr td:nth-child(2) p {
    font-weight: normal;
    margin-bottom: 0;
    font-size: 12px;
  }
  #view_loyalty_program_container .article_premium_program .nav {
    justify-content: initial;
  }
}

#header_layout {
  background: linear-gradient(#0d1f56, 60%, transparent);
  border: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
#header_layout .boot-ac-slide-heading .func .btn-main-pin,
#header_layout .boot-ac-slide-heading .func .btn-main {
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  background: transparent;
  border-radius: 0;
  margin-left: 10px;
  height: 35px;
  min-width: 80px;
}
@media (max-width: 991px) {
  #header_layout {
    background: transparent;
  }
  #header_layout .m-gnb-login-wrap {
    margin-top: auto;
  }
  #header_layout .m-gnb-login-wrap .m-gnb-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #545e86;
  }
  #header_layout .btn-main {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #0d1f66 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
    border-radius: 2px;
    height: 55px;
  }
  #header_layout .btn-main-pin {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #9a802c;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
    border-radius: 2px;
    height: 55px;
    margin-bottom: 20px;
  }
}

.nav-tabs > li.active > a {
  background-color: transparent;
}
.nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background-color: transparent;
}

@keyframes bgScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/***********************************************************************************************************************
* VIEW_ACCOUNT
***********************************************************************************************************************/
#view_account_container .form-group {
  margin-bottom: 24px;
}
#view_account_container .form-control {
  border: 1px solid #e3e3e3;
  height: 50px;
  background: #fff;
  box-shadow: none;
  border-radius: 0;
}
#view_account_container.view_profile .article_summary .tpl_top_box .item {
  text-align: center;
}
#view_account_container.view_profile .article_summary .tpl_top_box .item > i {
  font-size: 40px;
  vertical-align: middle;
}
#view_account_container.view_profile .article_summary .tpl_top_box .item > .value {
  display: inline-block;
  font-size: 22px;
  vertical-align: bottom;
  color: #2e7ad8;
  margin-bottom: 0;
}
#view_account_container.view_profile .article_summary .tpl_top_box .item > .value .label {
  font-size: 11px;
  vertical-align: middle;
}
#view_account_container.view_profile .article_summary .tpl_top_box .item > .value_desc {
  clear: both;
  color: #8C8C8C;
  margin-top: 5px;
}
#view_account_container.view_profile .article_account.information {
  margin-top: 38px;
}
#view_account_container #settlement_account_edit .modal-dialog .modal-content {
  position: relative;
}
#view_account_container #settlement_account_edit .modal-dialog .modal-content .close {
  font-size: 30px;
  position: relative;
  top: 10px;
  right: 20px;
}
#view_account_container #settlement_account_edit .modal-dialog .modal-content .modal-body {
  margin: 60px 15px 40px;
}
#view_account_container #settlement_account_edit .modal-dialog .modal-content .modal-body #form_markup h3 {
  font-size: 24px;
  margin-top: 0;
  font-weight: normal;
  color: #2e7ad8;
  text-align: center;
}
#view_account_container #settlement_account_edit .modal-dialog .modal-content .modal-body #form_markup p {
  font-size: 14px;
  text-align: center;
}
#view_account_container #settlement_account_edit .modal-dialog .modal-content .modal-body #form_markup form .form-group label {
  text-align: left;
}
#view_account_container #settlement_account_edit .modal-dialog .modal-content .modal-body #form_markup form .submit_settlement_account {
  background: none;
  display: block;
  width: 70%;
  text-align: center;
  color: #2e7ad8;
  padding: 10px 0;
  box-shadow: none;
  margin: 0 auto;
  font-weight: bold;
  border: 2px solid #2e7ad8;
  font-size: 16px;
}
#view_account_container #settlement_account_edit .modal-dialog .modal-content .modal-body #form_markup form .submit_settlement_account:hover {
  color: #fff;
  background-color: #2e7ad8;
}
#view_account_container #qr-code-modal .modal-dialog {
  width: 320px;
}
#view_account_container #qr-code-modal .modal-dialog .modal-content {
  position: relative;
  border-radius: 16px;
}
#view_account_container #qr-code-modal .modal-dialog .modal-content .close {
  font-size: 30px;
  position: relative;
  top: 10px;
  right: 20px;
}
#view_account_container #qr-code-modal .modal-dialog .modal-content .modal-body {
  margin: 40px 15px;
  text-align: center;
}
#view_account_container #qr-code-modal .modal-dialog .modal-content .modal-body button {
  width: 180px;
  background: #977638;
  font-size: 17px;
  font-weight: bold;
  border: none;
  height: 50px;
  border-radius: 8px;
}
@media (max-width: 991px) {
  #view_account_container #qr-code-modal .modal-dialog {
    margin: 30px auto;
  }
}
#view_account_container.view_change_password .article_pwd_change .panel {
  box-shadow: none;
}
#view_account_container.view_change_password .article_pwd_change .panel .panel-body {
  padding: 0;
  border: none;
}
#view_account_container.view_change_password .article_pwd_find {
  margin-top: 30px;
}
#view_account_container.view_change_password .article_pwd_find .article_pwd_find_inner {
  text-align: center;
}
#view_account_container.view_change_password .article_pwd_find .article_pwd_find_inner .title {
  font-size: 20px;
  margin: 0 0 10px;
  color: #333;
}
#view_account_container.view_change_password .article_pwd_find .article_pwd_find_inner p {
  font-size: 15px;
  color: #333;
}
@media (max-width: 991px) {
  #view_account_container.view_change_password .article_pwd_find {
    margin-top: 30px;
  }
  #view_account_container.view_change_password .article_pwd_find .article_pwd_find_inner {
    text-align: center;
  }
  #view_account_container.view_change_password .article_pwd_find .article_pwd_find_inner .title {
    font-size: 18px;
    margin: 0 0 16px;
  }
  #view_account_container.view_change_password .article_pwd_find .article_pwd_find_inner p {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

/***********************************************************************************************************************
* VIEW_REPORT
***********************************************************************************************************************/
#view_report_container .article_commission_today {
  padding-bottom: 50px;
}
#view_report_container .article_commission_today .tpl_commission_report {
  display: flex;
  justify-content: space-between;
}
#view_report_container .article_commission_today .tpl_commission_report .wrap_row {
  width: calc((100% - 30px) / 2);
  border: 1px solid #e3e3e3;
}
#view_report_container .article_commission_today .tpl_commission_report .wrap_row .cell_th {
  background: #fff;
  font-size: 15px;
  padding: 10px 10px 10px 25px;
  color: #8c8c8c;
  font-weight: 500;
}
#view_report_container .article_commission_today .tpl_commission_report .wrap_row .cell_th img {
  margin: 0 10px 2px 0;
}
#view_report_container .article_commission_today .tpl_commission_report .wrap_row .cell_td {
  background: #fff;
  color: #9a802c;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 30px 15px 10px;
  text-align: right;
  line-height: 40px;
  margin-left: auto;
}
@media (max-width: 991px) {
  #view_report_container .article_commission_today {
    padding-bottom: 0;
  }
}
#view_report_container .required {
  font-size: 15px;
}
#view_report_container #servers_list {
  box-shadow: none;
  border: 1px solid #e3e3e3;
  height: 50px;
  border-radius: 0;
}
#view_report_container .article_title .title_desc {
  font-size: 15px;
}
#view_report_container .tpl_gray_box {
  padding: 0;
}
#view_report_container .tpl_gray_box .chart_sec .carousel-control {
  background-color: transparent;
  background-size: 40px;
  background-position: center;
  opacity: 1;
  background-repeat: no-repeat;
}
#view_report_container .tpl_gray_box .chart_sec .carousel-control.left {
  background-image: url("/assets/common/ib/img/en_US/main/new/left.svg");
}
#view_report_container .tpl_gray_box .chart_sec .carousel-control.right {
  background-image: url("/assets/common/ib/img/en_US/main/new/right.svg");
}
#view_report_container .tpl_gray_box .chart_sec .carousel-control span {
  display: none;
}
@media (max-width: 991px) {
  #view_report_container .article_commission_today .tpl_commission_report {
    flex-direction: column;
  }
  #view_report_container .article_commission_today .tpl_commission_report .wrap_row {
    width: 100%;
  }
  #view_report_container .article_commission_today .tpl_commission_report .wrap_row:first-of-type {
    margin-bottom: 15px;
  }
  #view_report_container .article_commission_today .tpl_commission_report .wrap_row .cell_th {
    padding: 15px 20px 10px 20px;
  }
  #view_report_container .article_commission_today .tpl_commission_report .wrap_row .cell_th img {
    width: 30px;
  }
  #view_report_container .article_commission_today .tpl_commission_report .wrap_row .cell_td {
    text-align: right;
    padding: 0 15px 10px 10px;
  }
  #view_report_container .tpl_gray_box {
    padding: 0;
  }
  #view_report_container .tpl_gray_box .chart_sec .carousel-control {
    background-size: 20px;
    width: 7%;
  }
}

.article_loyalty_area_01 {
  padding-bottom: 40px;
}
.article_loyalty_area_01 .article-loyalty-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article_loyalty_area_01 .article-loyalty-area .article-loyalty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc((100% - 20px) / 2);
  border: 1px solid #e3e3e3;
  padding: 15px 20px;
}
.article_loyalty_area_01 .article-loyalty-area .article-loyalty:first-child div img {
  width: 31px;
}
.article_loyalty_area_01 .article-loyalty-area .article-loyalty:nth-child(2) div img {
  width: 28px;
}
.article_loyalty_area_01 .article-loyalty-area .article-loyalty div span {
  font-size: 15px;
  color: #8c8c8c;
  margin-left: 10px;
}
.article_loyalty_area_01 .article-loyalty-area .article-loyalty p {
  color: #9a802c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .article_loyalty_area_01 .article-loyalty-area {
    flex-direction: column;
  }
  .article_loyalty_area_01 .article-loyalty-area .article-loyalty {
    width: 100%;
    margin-bottom: 10px;
  }
}

.article_loyalty_area_02 {
  padding-bottom: 50px;
}
.article_loyalty_area_02 .circle-graph {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  background: #eee6cd;
  position: relative;
}
.article_loyalty_area_02 .circle-graph #circle {
  position: relative;
}
.article_loyalty_area_02 .circle-graph #circle strong {
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translate(-50%, 0);
  font-size: 54px;
  font-weight: 500;
  color: #9a802c;
  margin-bottom: 10px;
  letter-spacing: -1.14px;
  white-space: nowrap;
}
.article_loyalty_area_02 .circle-graph #circle p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0);
  font-size: 15px;
  font-weight: 400;
  color: #9a802c;
  text-align: center;
}
.article_loyalty_area_02 .circle-graph #circle span {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  background: #9a802c;
  position: absolute;
  padding: 2px 6px;
  border-radius: 3px;
  left: 50%;
  bottom: 20%;
  transform: translate(-50%, 0);
}
.article_loyalty_area_02 .circle-graph #circle span:after {
  content: "";
  border-bottom: 0 solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 10px solid #9a802c;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translate(-50%, 0);
}
.article_loyalty_area_02 .circle-graph #circle img {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90px;
}
.article_loyalty_area_02 .circle-graph ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 800px;
}
.article_loyalty_area_02 .circle-graph ul li {
  width: calc((100% - 30px) / 4);
  background: #fbf6e5;
  height: 140px;
  padding: 20px 13px 20px 11px;
  position: relative;
}
.article_loyalty_area_02 .circle-graph ul li img {
  position: absolute;
  bottom: 0;
  right: 5px;
}
.article_loyalty_area_02 .circle-graph ul li.completed {
  opacity: 0.8;
  text-align: right;
  background-color: #c1ac66;
  background-image: url(/assets/common/ib/img/en_US/main/new/completed-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.article_loyalty_area_02 .circle-graph ul li:first-child {
  text-align: center;
}
.article_loyalty_area_02 .circle-graph ul li:first-child img {
  width: 144px;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(2) {
  text-align: center;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(2) img {
  width: 140px;
  bottom: 10px;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(3) {
  text-align: right;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(3) img {
  width: 106px;
  bottom: 15px;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(4) {
  text-align: right;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(4) img {
  width: 41px;
  bottom: 10px;
  right: 20px;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(5) {
  text-align: right;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(5) img {
  width: 76px;
  bottom: 5px;
  right: 10px;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(6) {
  text-align: right;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(6) img {
  width: 69px;
  bottom: 10px;
  right: 20px;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(7) {
  text-align: right;
}
.article_loyalty_area_02 .circle-graph ul li:nth-child(7) img {
  width: 78px;
}
.article_loyalty_area_02 .circle-graph ul li:last-child {
  text-align: right;
}
.article_loyalty_area_02 .circle-graph ul li:last-child img {
  width: 90px;
  bottom: 7px;
}
.article_loyalty_area_02 .circle-graph ul li:first-child, .article_loyalty_area_02 .circle-graph ul li:nth-child(2), .article_loyalty_area_02 .circle-graph ul li:nth-child(3), .article_loyalty_area_02 .circle-graph ul li:nth-child(4) {
  margin-bottom: 10px;
}
.article_loyalty_area_02 .circle-graph ul li h3 {
  font-size: 15px;
  font-weight: bold;
  color: #9a802c;
  margin: 0 0 5px;
  text-align: left;
}
.article_loyalty_area_02 .circle-graph ul li p {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-align: left;
}
.article_loyalty_area_02 .circle-graph .more {
  color: #9a802c;
  font-size: 15px;
  position: absolute;
  bottom: -30px;
  right: 0;
  font-weight: 400;
}
@media (max-width: 991px) {
  .article_loyalty_area_02 .circle-graph {
    flex-direction: column;
    padding: 40px 15px 50px;
  }
  .article_loyalty_area_02 .circle-graph #circle {
    margin-bottom: 70px;
  }
  .article_loyalty_area_02 .circle-graph ul {
    width: 100%;
  }
  .article_loyalty_area_02 .circle-graph ul li {
    width: calc((100% - 10px) / 2);
    height: auto;
  }
  .article_loyalty_area_02 .circle-graph ul li:first-child img {
    width: 100px;
  }
  .article_loyalty_area_02 .circle-graph ul li:nth-child(2) img {
    width: 105px;
  }
  .article_loyalty_area_02 .circle-graph ul li:nth-child(3) img {
    width: 80px;
    bottom: 3px;
  }
  .article_loyalty_area_02 .circle-graph ul li:nth-child(4) img {
    width: 30px;
  }
  .article_loyalty_area_02 .circle-graph ul li:nth-child(5) img {
    width: 50px;
  }
  .article_loyalty_area_02 .circle-graph ul li:nth-child(6) img {
    width: 50px;
    right: 5px;
  }
  .article_loyalty_area_02 .circle-graph ul li:nth-child(7) img {
    width: 50px;
  }
  .article_loyalty_area_02 .circle-graph ul li:last-child img {
    width: 55px;
    bottom: 0;
  }
  .article_loyalty_area_02 .circle-graph ul li:nth-child(5), .article_loyalty_area_02 .circle-graph ul li:nth-child(6) {
    margin-bottom: 10px;
  }
  .article_loyalty_area_02 .circle-graph .more {
    bottom: 30px;
    right: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .article_loyalty_area_02 .circle-graph {
    padding: 40px 20px;
  }
  .article_loyalty_area_02 .circle-graph ul li:first-child img {
    margin-top: -20px;
  }
  .article_loyalty_area_02 .circle-graph ul li:nth-child(2) img {
    margin-top: 0;
  }
  .article_loyalty_area_02 .circle-graph ul li:nth-child(3) img {
    margin-top: -33px;
  }
}

.article_loyalty_area_03 .point-area .point-title {
  margin-bottom: 30px;
}
.article_loyalty_area_03 .point-area .point-title .title {
  font-size: 35px;
  font-weight: bold;
  color: #000;
}
.article_loyalty_area_03 .point-area .point-title .desc {
  font-size: 17px;
  color: #333;
  font-weight: 400;
}
.article_loyalty_area_03 .point-graph {
  margin-bottom: 40px;
}
.article_loyalty_area_03 .point-graph h3 {
  font-size: 25px;
  color: #1a1a1a;
  font-weight: bold;
  margin-bottom: 10px;
}
.article_loyalty_area_03 .point-graph .chart_sec {
  border: 1px solid #ddd;
}

/* progress css */
.new-tab-link {
  padding-right: 14px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3ggXDSIzCeRHfQAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAAA9SURBVBjTY2RAA/+XMvxHF2NkwAOwacCq4P9Shv8suFQzRiNsYUEXwKoJ2VhkNrIaJgYiAAs2N2BVRMirAD6JHi10MCdVAAAAAElFTkSuQmCC) no-repeat right center;
}

.page-title {
  font: 400 40px/1.5 Open Sans, sans-serif;
  text-align: center;
}

.circles {
  margin-bottom: -10px;
}

.circle {
  width: 100px;
  margin: 6px 6px 20px;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1.2;
}

.circle canvas {
  vertical-align: top;
}

.circle strong {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
}

.circle strong i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: normal;
}

.circle span {
  display: block;
  color: #aaa;
  margin-top: 12px;
}

p {
  margin: 40px 0;
}

.install {
  display: inline-block;
}

.install a {
  display: block;
  width: auto;
  vertical-align: middle;
  padding: 6px 12px;
  line-height: 20px;
  background-color: #111;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  margin: 5px auto;
  transition: all 0.3s;
}

.install code {
  padding: 6px 12px;
  display: block;
  font: 13px/20px Courier New, Liberation Mono, monospase;
  background-color: #333333;
  border-radius: 4px;
  margin: 5px 0;
  white-space: nowrap;
}

.install a:hover {
  background-color: #222;
}

.credits {
  color: #aaa;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

.credits img {
  margin-left: 4px;
  border-radius: 4px;
  vertical-align: middle;
}

@media (max-height: 600px), (max-width: 480px) {
  .credits {
    position: inherit;
  }
}
.article_title-with_toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.article_title-with_toolbar .article_title-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article_title-with_toolbar .article_title-toolbar .date input {
  height: 50px;
  border-radius: 0;
}
.article_title-with_toolbar .article_title-toolbar .date .input-group-addon {
  border-radius: 0;
}
@media screen and (max-width: 991px) {
  .article_title-with_toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .article_title-with_toolbar .article_title-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
.article_title-with_toolbar.royalty_chart_title {
  margin-bottom: 20px;
}

/***********************************************************************************************************************
* VIEW_CLIENT_STATUS
***********************************************************************************************************************/
#select2_mt4_members {
  margin: 0 10px;
}
@media (max-width: 991px) {
  #select2_mt4_members {
    margin: 0 0 10px;
  }
}

.account_select .select2-container {
  width: 250px !important;
}
.account_select .select2-container .select2-selection {
  height: 50px;
  width: 250px;
  position: relative;
  padding: 9px 10px;
  text-align: left;
  font-size: 15px;
}
@media (max-width: 991px) {
  .account_select .select2-container {
    width: 100% !important;
  }
  .account_select .select2-container .select2-selection {
    width: 100%;
  }
}

#view_client_status_container .btn-ib {
  background: #977638;
  border: none;
  width: 120px;
  font-size: 15px;
  height: 50px;
  padding: 14px;
  border-radius: 3px;
}
#view_client_status_container .tpl_card_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
#view_client_status_container .tpl_card_box .item {
  width: calc((100% - 20px) / 3);
}
#view_client_status_container .tpl_card_box .item > div {
  border: solid 1px #e3e3e3;
}
#view_client_status_container .tpl_card_box .item .item_top {
  padding: 25px 20px;
  height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#view_client_status_container .tpl_card_box .item .item_top img {
  margin-bottom: 14px;
}
#view_client_status_container .tpl_card_box .item .item_top p {
  margin-bottom: 0;
  font-size: 15px;
  color: #8c8c8c;
}
#view_client_status_container .tpl_card_box .item .item_bottom {
  background: #fff;
  padding: 20px;
}
#view_client_status_container .tpl_card_box .item .item_bottom p {
  font-size: 22px;
  color: #9a802c;
  font-weight: bold;
}
@media (max-width: 991px) {
  #view_client_status_container .tpl_card_box.full-size .item {
    width: 100%;
  }
  #view_client_status_container .tpl_card_box.full-size .item .item_top {
    padding: 0;
    height: 80px;
  }
  #view_client_status_container .tpl_card_box.full-size .item .item_top > i {
    font-size: 45px;
  }
  #view_client_status_container .tpl_card_box.full-size .item .item_top label {
    min-width: 90px;
    padding: 5px 15px;
  }
  #view_client_status_container .tpl_card_box.full-size .item .item_top img {
    margin-bottom: 14px;
  }
  #view_client_status_container .tpl_card_box.full-size .item .item_top p {
    margin-bottom: 0;
    font-size: 15px;
    color: #8c8c8c;
  }
  #view_client_status_container .tpl_card_box.full-size .item .item_bottom {
    background: #fff;
    padding: 20px;
  }
  #view_client_status_container .tpl_card_box.full-size .item .item_bottom p {
    font-size: 22px;
    color: #9a802c;
    font-weight: bold;
  }
  #view_client_status_container .tpl_card_box .item {
    min-height: 165px;
  }
  #view_client_status_container .tpl_card_box .item .item_top {
    padding: 0;
    height: auto;
    align-items: center;
    justify-content: center;
  }
  #view_client_status_container .tpl_card_box .item .item_top .img-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 10px;
  }
  #view_client_status_container .tpl_card_box .item .item_top .img-wrap > img {
    width: 35px;
    margin-top: 0;
  }
  #view_client_status_container .tpl_card_box .item .item_top p {
    font-size: 11px;
    min-height: 32px;
  }
}
#view_client_status_container .article-table .entries-select {
  margin-bottom: 10px;
}
#view_client_status_container .article-table .entries-select span {
  font-size: 13px;
  color: #333;
}
#view_client_status_container .article-table .entries-select select {
  width: 60px;
  height: 35px;
  border: 1px solid #e9e9e9;
}
#view_client_status_container .article-table .transaction-analysis-table {
  border-top: 2px solid #1a1a1a;
}
#view_client_status_container .article-table .transaction-analysis-table tr th, #view_client_status_container .article-table .transaction-analysis-table tr td {
  border-bottom: 1px solid #e3e3e3;
  color: #333;
  text-align: center;
  padding: 14px;
}
#view_client_status_container .article-table .transaction-analysis-table tr th:not(:last-child), #view_client_status_container .article-table .transaction-analysis-table tr td:not(:last-child) {
  border-right: 1px solid #e3e3e3;
}
#view_client_status_container .article-table .transaction-analysis-table tr th {
  font-size: 13px;
}
#view_client_status_container .article-table .transaction-analysis-table tr td {
  font-size: 15px;
}
#view_client_status_container .article-table .pagination {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 10px;
}
#view_client_status_container .article-table .pagination span {
  font-size: 14px;
  color: #333;
}
#view_client_status_container .article-table .pagination ul {
  display: flex;
}
#view_client_status_container .article-table .pagination ul li.active a {
  color: #fff;
  background: #565656;
}
#view_client_status_container .article-table .pagination ul li:not(:first-child) a {
  margin-left: 5px;
}
#view_client_status_container .article-table .pagination ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #e3e3e3;
  border: 1px solid #e3e3e3;
}
#view_client_status_container .article-table .pagination button {
  width: 100px;
  height: 35px;
  border: 1px solid #e3e3e3;
  color: #333;
  font-size: 13px;
  font-weight: bold;
  background: transparent;
  margin-left: 5px;
}
@media (max-width: 991px) {
  #view_client_status_container .article-table .pagination {
    display: block;
  }
  #view_client_status_container .article-table .pagination > div {
    display: flex;
    justify-content: space-between;
  }
  #view_client_status_container .article-table .pagination ul {
    justify-content: center;
  }
}
#view_client_status_container.view_trading_history article.article_traders_inc_header .tpl_search .search_mt4_user {
  margin-bottom: 15px;
}
#view_client_status_container.view_trading_history article.article_traders_inc_header .tpl_search .search_mt4_user label {
  display: inline-block;
}
#view_client_status_container.view_trading_history article.article_traders_inc_header .tpl_search .search_mt4_user select {
  display: inline-block;
}
#view_client_status_container.view_trading_history .m-0 {
  margin: 0 !important;
}
#view_client_status_container.view_trading_history .mb-0 {
  margin-bottom: 0 !important;
}
@media (min-width: 991px) and (max-width: 1280px) {
  #view_client_status_container.view_trading_history #select2_trading_period .select2-container {
    width: 120px !important;
  }
  #view_client_status_container.view_trading_history #select2_trading_period .select2-container .select2-selection {
    width: 100% !important;
  }
}
@media (max-width: 991px) {
  #view_client_status_container.view_trading_history .account_select, #view_client_status_container.view_trading_history .datepicker-wrapper {
    width: 100%;
    max-width: 680px;
  }
  #view_client_status_container.view_trading_history #datetimepicker_start, #view_client_status_container.view_trading_history #datetimepicker_end {
    margin: 0 0 10px !important;
  }
  #view_client_status_container.view_trading_history .tpl_top_box .search-box .search-box-item .btn {
    width: auto;
    min-width: 100px;
  }
}
#view_client_status_container.view_traders_status_individual .article_trading_analytics {
  padding-bottom: 50px;
}
#view_client_status_container.view_traders_status_individual .article_trading_analytics .table-ib th, #view_client_status_container.view_traders_status_individual .article_trading_analytics .table-ib td {
  text-align: left;
}
#view_client_status_container.view_traders_status_individual .article_trading_analytics .table-ib td {
  color: #2e7ad8;
}
#view_client_status_container.view_traders_status .tpl_card_box .item .box-a {
  display: block !important;
}

/***********************************************************************************************************************
* VIEW_
***********************************************************************************************************************/
#view_payout_container .help-error {
  color: #a94442;
}
#view_payout_container .article-area-payout {
  background: #fff;
  border: 1px solid #e3e3e3;
  padding: 34px 40px;
}
@media (max-width: 991px) {
  #view_payout_container .article-area-payout.border-m-none {
    border: none;
    padding: 0;
  }
}
@media (max-width: 991px) {
  #view_payout_container .article-area-payout {
    padding: 32px 16px;
  }
}
#view_payout_container .form-group {
  margin-bottom: 24px;
}
#view_payout_container .form-control {
  border: 1px solid #e3e3e3;
  height: 50px;
  background: #fff;
  box-shadow: none;
  border-radius: 0;
}
#view_payout_container .input-sm, #view_payout_container .input-group-sm > .form-control,
#view_payout_container .input-group-sm > .input-group-addon,
#view_payout_container .input-group-sm > .input-group-btn > .btn {
  height: 35px;
}
#view_payout_container .payout-method-tab {
  margin-top: 30px;
  width: 100%;
  border-bottom: 0;
}
#view_payout_container .payout-method-tab li {
  width: 24%;
  border: solid 1px #e3e3e3;
  border-radius: 3px;
  margin-bottom: 0;
  margin-left: 1.3%;
}
#view_payout_container .payout-method-tab li:first-child {
  margin-left: 0;
}
#view_payout_container .payout-method-tab li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #b6b7ba;
  background-color: #fff;
  border-radius: 0;
  border: none;
  margin-right: 0;
}
#view_payout_container .payout-method-tab li a .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #b6b7ba;
  padding: 0 11px;
}
#view_payout_container .payout-method-tab li a .circle img {
  width: 100%;
}
#view_payout_container .payout-method-tab li a p {
  margin-bottom: 0;
  letter-spacing: -0.3px;
}
#view_payout_container .payout-method-tab li.active {
  border: solid 1px #977638;
  color: #977638;
}
#view_payout_container .payout-method-tab li.active p {
  color: #977638;
  font-weight: 500;
}
#view_payout_container .payout-method-tab li.active.neteller a .circle {
  background: #83ba3b;
}
#view_payout_container .payout-method-tab li.active.skrill a .circle {
  background: #862165;
}
#view_payout_container .payout-method-tab li.active.bankwire a .circle {
  background: #3c60a7;
}
#view_payout_container .payout-method-tab li.active.sticpay a .circle {
  background: #f25822;
}
#view_payout_container .payout-method-tab li.active.local_bankwire a .circle {
  background: #672186;
}
@media (max-width: 991px) {
  #view_payout_container .payout-method-tab {
    margin-top: 24px;
  }
  #view_payout_container .payout-method-tab li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 4%;
  }
  #view_payout_container .payout-method-tab li:nth-child(odd) {
    margin-left: 0;
  }
  #view_payout_container .payout-method-tab li a {
    min-height: 158px;
  }
  #view_payout_container .payout-method-tab li a .circle {
    width: 80px;
    height: 80px;
  }
}
#view_payout_container .payout-method-content-line {
  border-top: 1px solid #e3e3e3;
  margin: 20px 0 30px;
}
#view_payout_container .fill-eng {
  font-size: 15px;
  margin-bottom: 24px;
}
#view_payout_container .notice, #view_payout_container .bankwire_acknowledge {
  font-size: 15px;
  line-height: 1.67;
  color: #b6b7ba;
}
#view_payout_container .bankwire_acknowledge {
  margin-top: -8px;
}
#view_payout_container .article-area-payout .tit h4 {
  margin: 0 0 22px;
}
#view_payout_container .article-area-payout .tit p {
  color: #565656;
}
@media (max-width: 991px) {
  #view_payout_container .article-area-payout .tit h4 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 500;
  }
  #view_payout_container .article-area-payout .tit p {
    line-height: 1.67;
    letter-spacing: -0.3px;
  }
}
#view_payout_container .additional-transfer-wrap .form-control {
  border: solid 1px #e3e3e3;
  height: 50px;
  border-radius: 0;
  box-shadow: none;
}
#view_payout_container .additional-transfer-top {
  min-height: 124px;
  background-color: #f6f6f6;
  padding: 20px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#view_payout_container .additional-transfer-top .item {
  width: 326px;
}
#view_payout_container .additional-transfer-top .item span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
}
#view_payout_container .additional-transfer-top .btn-wrap {
  margin-top: 45px;
}
#view_payout_container .additional-transfer-top .btn-wrap button {
  background: none;
  padding: 0;
}
#view_payout_container .additional-transfer-top .btn-wrap button i {
  font-size: 30px;
  color: #977638;
}
@media (max-width: 991px) {
  #view_payout_container .additional-transfer-top {
    height: auto;
    background-color: transparent;
    padding: 0;
  }
  #view_payout_container .additional-transfer-top .item {
    width: 28.666%;
    margin-left: 2%;
  }
  #view_payout_container .additional-transfer-top .item:first-child {
    margin-left: 0;
  }
  #view_payout_container .additional-transfer-top .item span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  #view_payout_container .additional-transfer-top .item span.help-error {
    font-size: 12px;
  }
  #view_payout_container .additional-transfer-top .btn-wrap {
    margin-left: 2%;
  }
}
#view_payout_container .additional-transfer-content {
  padding: 32px 32px 0;
}
#view_payout_container .additional-transfer-content > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#view_payout_container .additional-transfer-content .item {
  width: 326px;
}
#view_payout_container .additional-transfer-content .item .form-group {
  height: 50px;
  border: 1px solid #e3e3e3;
  position: relative;
  align-items: center;
}
#view_payout_container .additional-transfer-content .item .form-group label {
  display: block;
  color: #565656;
  position: absolute;
  top: 16px;
  left: 20px;
}
#view_payout_container .additional-transfer-content .item .form-group .form-control {
  height: 48px;
  border: none;
  text-align: right;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}
#view_payout_container .additional-transfer-content .btn-wrap {
  margin-top: -12px;
}
#view_payout_container .additional-transfer-content .btn-wrap button {
  background: none;
  padding: 0;
}
#view_payout_container .additional-transfer-content .btn-wrap button i {
  font-size: 30px;
  color: #977638;
}
#view_payout_container .additional-transfer-content .btn-center-wrap {
  margin: 17px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#view_payout_container .additional-transfer-content .btn-center-wrap button {
  min-width: 220px;
  border: 1px solid #977638;
  background: #977638;
  letter-spacing: -0.3px;
  font-size: 15px;
  font-weight: bold;
}
#view_payout_container .additional-transfer-content .btn-center-wrap button:hover {
  background: #977638;
}
#view_payout_container .additional-transfer-content .btn-center-wrap button.btn-submit {
  min-width: 400px;
}
#view_payout_container .additional-transfer-content .btn-center-wrap button.btn-add-row {
  margin-bottom: 15px;
  min-width: 200px;
  border: 1px solid #977638;
  background: white;
  color: #977638;
}
@media (max-width: 991px) {
  #view_payout_container .additional-transfer-content {
    padding: 2% 0;
  }
  #view_payout_container .additional-transfer-content > div {
    align-items: flex-start;
  }
  #view_payout_container .additional-transfer-content .item {
    width: 28.6666%;
    margin-left: 2%;
  }
  #view_payout_container .additional-transfer-content .item:first-child {
    margin-left: 0;
  }
  #view_payout_container .additional-transfer-content .item .form-group {
    height: auto;
    border: none;
  }
  #view_payout_container .additional-transfer-content .item .form-group label {
    display: none;
  }
  #view_payout_container .additional-transfer-content .item .form-group .form-control {
    text-align: left;
    border: 1px solid #e3e3e3;
  }
  #view_payout_container .additional-transfer-content .item span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  #view_payout_container .additional-transfer-content .item span.help-block {
    font-size: 12px;
  }
  #view_payout_container .additional-transfer-content .btn-wrap {
    margin-left: 2%;
    margin-top: 8px;
  }
  #view_payout_container .additional-transfer-content .btn-center-wrap {
    margin: 0;
  }
  #view_payout_container .additional-transfer-content .btn-center-wrap button {
    width: 100%;
  }
  #view_payout_container .additional-transfer-content .btn-center-wrap button.btn-add-row {
    width: 65%;
    margin-bottom: 20px;
  }
  #view_payout_container .additional-transfer-content .btn-center-wrap button.btn-submit {
    min-width: 220px;
  }
}
#view_payout_container.view_internal_transfer .article_transfer_form .table {
  border-top: solid 1px #9e9e9e;
}
#view_payout_container.view_internal_transfer .article_transfer_form .table tr > td {
  vertical-align: middle;
}
#view_payout_container.view_internal_transfer .article_transfer_form .table .form-control {
  margin-top: 12px;
}
@media (max-width: 991px) {
  #view_payout_container.view_internal_transfer .article_transfer_form .table {
    margin-bottom: 15px;
  }
}
#view_payout_container .article_brand {
  margin-bottom: 10px;
}
#view_payout_container .article_pay_account {
  margin-bottom: 15px;
}
#view_payout_container .article_pay_account .account_name, #view_payout_container .article_pay_account .account_no {
  min-height: 110px;
  padding: 20px;
  background-color: #f4f4f4;
  border: solid 1px #ddd;
  margin-bottom: 15px;
}
#view_payout_container .article_pay_account .account_name label, #view_payout_container .article_pay_account .account_no label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
#view_payout_container .article_pay_account .account_name .signature {
  font-size: 25px;
  line-height: 32px;
  font-weight: bold;
  border-bottom: solid 1px #1a1a1a;
  text-align: center;
  margin-bottom: 0;
}
#view_payout_container .article_pay_balance .row > div {
  border: solid 1px #ddd;
}
#view_payout_container .article_pay_balance .balance, #view_payout_container .article_pay_balance .withdrawal {
  padding: 20px;
  text-align: center;
}
#view_payout_container .article_pay_balance .balance label, #view_payout_container .article_pay_balance .withdrawal label {
  margin: 0;
}
#view_payout_container .article_pay_balance .balance .amount, #view_payout_container .article_pay_balance .withdrawal .amount {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: bold;
  color: #2e7ad8;
}
@media (max-width: 991px) {
  #view_payout_container .article_pay_balance .row > div:last-of-type {
    border-top: none;
  }
}
@media (min-width: 992px) {
  #view_payout_container .article_pay_balance .row > div:last-of-type {
    border-left: none;
  }
}
#view_payout_container.view_bankwire .article_bankwire_form .signature_form {
  padding: 20px;
  background-color: #f4f4f4;
  border: dotted 1px #ddd;
}
#view_payout_container.view_bankwire .article_bankwire_form .signature_form .title {
  font-size: 18px;
  font-weight: bold;
  color: #2e7ad8;
}
#view_payout_container.view_bankwire .article_bankwire_form .signature_form .form-inline > input {
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  #view_payout_container.view_bankwire .article_bankwire_form .signature_form .form-inline > input {
    width: 32%;
  }
}

.modal .modal-dialog .modal-content button {
  padding: 10px;
}
.modal .modal-dialog .modal-content button span {
  font-size: 40px;
}
.modal .modal-dialog .modal-content .modal-header {
  padding: 25px 40px 10px;
  border-bottom: none;
}
.modal .modal-dialog .modal-content .modal-header h4 {
  font-size: 20px;
  letter-spacing: -1px;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 0 40px;
}
.modal .modal-dialog .modal-content .modal-body p {
  font-size: 13px;
  letter-spacing: -1px;
}
.modal .modal-dialog .modal-content .modal-body ol {
  padding: 0 20px !important;
  display: flex;
  flex-direction: column;
  border: dashed 1px #ddd;
}
.modal .modal-dialog .modal-content .modal-body ol li {
  margin: 0 !important;
  padding: 10px 0 !important;
  font-size: 13px;
  font-weight: 600;
  text-align: left !important;
}
.modal .modal-dialog .modal-content .modal-body img {
  display: block;
}
@media (max-width: 991px) {
  .modal .modal-dialog {
    margin: 0;
  }
}

/***********************************************************************************************************************
* VIEW_MATERIAL
***********************************************************************************************************************/
#view_material_container.view_logos .article_logo > .container-sub > .container-fluid > .row > div {
  border: solid 1px #ddd;
  margin-right: -1px;
  margin-bottom: -1px;
}
#view_material_container.view_logos .article_logo .logos_item {
  text-align: center;
}
#view_material_container.view_logos .article_logo .logos_item .img-box {
  text-align: center;
}
#view_material_container.view_logos .article_logo .logos_item .img-box > img {
  max-width: 100%;
}
#view_material_container.view_logos .article_logo .logos_item .btn-dwn-group .btn {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  #view_material_container.view_logos .article_logo .logos_item {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  #view_material_container.view_logos .article_logo .logos_item {
    padding: 40px 20px;
  }
}
#view_material_container.view_banners .article_quick_links .tpl_top_box .input-group .input-group-btn .btn {
  padding: 5px 10px;
}
#view_material_container.view_banners .article_quick_links .tpl_top_box .item .table_wrap {
  table-layout: auto;
}
#view_material_container.view_banners .article_quick_links .tpl_top_box .item .lSide, #view_material_container.view_banners .article_quick_links .tpl_top_box .item .rSide {
  display: table-cell;
  vertical-align: middle;
}
#view_material_container.view_banners .article_quick_links .tpl_top_box .item .lSide {
  font-size: 86px;
  margin-right: 10px;
  color: #2e7ad8;
}
#view_material_container.view_banners .article_quick_links .tpl_top_box .item .rSide {
  text-align: left;
}
#view_material_container.view_banners .article_search .tpl_top_box .item {
  text-align: left;
  border-left: none;
}
#view_material_container.view_banners .article_search .banner_all_choice {
  overflow: hidden;
  padding: 15px 0;
}
#view_material_container.view_banners .article_search .banner_all_choice label {
  float: left;
  margin-top: 8px;
}
#view_material_container.view_banners .article_search .banner_all_choice .btn {
  float: right;
}
#view_material_container.view_banners .article_search .banner_lists .panel-banner .panel-heading {
  padding: 0;
  min-height: inherit;
}
#view_material_container.view_banners .article_search .banner_lists .panel-banner .panel-heading > a {
  position: relative;
  display: block;
  padding: 10px 17px;
}
#view_material_container.view_banners .article_search .banner_lists .panel-banner .panel-heading > a .panel-title {
  width: 100%;
}
#view_material_container.view_banners .article_search .banner_lists .panel-banner .panel-heading > a .panel-title > i {
  float: right;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item {
  background-color: #f4f4f4;
  padding: 15px;
  margin: 0 -7px 15px;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-bottom: 15px;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label > input {
  display: none;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label > div {
  position: relative;
  text-align: center;
  overflow: hidden;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label > div.ratio > img {
  width: 100%;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label > div img {
  height: auto;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label > input:checked + div:before, #view_material_container.view_banners .article_search .banner_lists .banner_item label > input:checked + div:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label > input:checked + div:before {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border: solid 3px #f0ad4e;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label > input:checked + div:after {
  content: "\e013";
  padding: 12px 15px;
  background-color: #f0ad4e;
  font-family: "Glyphicons Halflings";
  color: #FFF;
  font-weight: bold;
  font-size: 22px;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label > input:checked + div.img_hwrap:after {
  padding: 8px 10px;
  font-size: 12px;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item label .help-block {
  position: absolute;
  display: none;
  color: #FFF;
  z-index: 1;
  padding: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#view_material_container.view_banners .article_search .banner_lists .banner_item .banner_info {
  margin-bottom: 15px;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item .banner_info > p {
  margin-bottom: 0;
  font-weight: bold;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item .banner_info > p > span {
  color: #2e7ad8;
  font-weight: normal;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item .banner_link > input {
  margin-bottom: 5px;
}
#view_material_container.view_banners .article_search .banner_lists .banner_item .banner_link > .btn {
  display: block;
  width: 100%;
}
#view_material_container.view_terms_policy .article_terms .content_block {
  width: 100%;
  text-align: center;
  background-color: #f4f4f4;
  padding: 30px;
}
#view_material_container.view_terms_policy .article_terms .content_block > img {
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}
/***********************************************************************************************************************
* VIEW_LOGIN
***********************************************************************************************************************/
body.login_login #header_layout, body.login_create_user #header_layout {
  background: url("/assets/common/ib/img/en_US/sub/report/key_visual_bg.png") no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.login_login #wrapper, body.login_create_user #wrapper {
    height: 1px;
  }
}
@media (max-width: 991px) {
  body.login_login #wrapper, body.login_create_user #wrapper {
    height: auto;
    margin-top: -70px;
    padding-top: 70px;
    margin-bottom: -100px;
    padding-bottom: 100px;
  }
}

#view_login_container.view_login, #view_login_container.view_create_user {
  height: 100%;
}
#view_login_container.view_login .help-error, #view_login_container.view_create_user .help-error {
  color: #a94442;
}
#view_login_container.view_login .article_login, #view_login_container.view_create_user .article_login {
  text-align: center;
  background: transparent;
}
#view_login_container.view_login .article_login .login_form_container .brand, #view_login_container.view_create_user .article_login .login_form_container .brand {
  margin-bottom: 45px;
  color: #0b0f50;
  font-size: 56px;
  font-weight: 400;
}
#view_login_container.view_login .article_login .login_form_container .brand span, #view_login_container.view_create_user .article_login .login_form_container .brand span {
  font-weight: bold;
  color: #977638;
}
#view_login_container.view_login .article_login .login_form_container .login_form_wrap, #view_login_container.view_create_user .article_login .login_form_container .login_form_wrap {
  border: 1px solid #e3e3e3;
  padding: 40px;
  text-align: left;
}
#view_login_container.view_login .article_login .login_form_container .login_form_wrap label, #view_login_container.view_create_user .article_login .login_form_container .login_form_wrap label {
  font-size: 15px;
}
#view_login_container.view_login .article_login .login_form_container .login_form_wrap input, #view_login_container.view_create_user .article_login .login_form_container .login_form_wrap input {
  border: 1px solid #e3e3e3;
  border-radius: 0;
  box-shadow: none;
}
#view_login_container.view_login .article_login .login_form_container .login_form_wrap input:focus, #view_login_container.view_create_user .article_login .login_form_container .login_form_wrap input:focus {
  border: 1px solid #977638;
}
#view_login_container.view_login .article_login .login_form_container .form-group, #view_login_container.view_create_user .article_login .login_form_container .form-group {
  position: relative;
  margin-bottom: 24px;
}
#view_login_container.view_login .article_login .login_form_container .form-group > input, #view_login_container.view_create_user .article_login .login_form_container .form-group > input {
  padding-right: 30px;
  height: 50px;
}
#view_login_container.view_login .article_login .login_form_container .form-group > i, #view_login_container.view_create_user .article_login .login_form_container .form-group > i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #ccc;
  font-size: 20px;
}
#view_login_container.view_login .article_login .login_form_container .form-func, #view_login_container.view_create_user .article_login .login_form_container .form-func {
  text-align: left;
  margin-bottom: 30px;
}
#view_login_container.view_login .article_login .login_form_container .form-func label, #view_login_container.view_create_user .article_login .login_form_container .form-func label {
  font-weight: 400;
  color: #565656;
}
#view_login_container.view_login .article_login .login_form_container .form-func > label > input, #view_login_container.view_create_user .article_login .login_form_container .form-func > label > input {
  margin-right: 5px;
  vertical-align: text-top;
  font-size: 15px;
  color: #565656;
}
#view_login_container.view_login .article_login .login_form_container .form-submit, #view_login_container.view_create_user .article_login .login_form_container .form-submit {
  margin-bottom: 10px;
  text-align: center;
}
#view_login_container.view_login .article_login .login_form_container .form-submit > button, #view_login_container.view_create_user .article_login .login_form_container .form-submit > button {
  display: block;
  width: 220px;
  margin: 0 auto;
  height: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  background-color: #977638;
  margin-bottom: 15px;
}
#view_login_container.view_login .article_login .login_form_container .form-submit .pwd_find, #view_login_container.view_create_user .article_login .login_form_container .form-submit .pwd_find {
  margin-bottom: 0;
}
#view_login_container.view_login .article_login .login_form_container .form-submit .pwd_find > a, #view_login_container.view_create_user .article_login .login_form_container .form-submit .pwd_find > a {
  text-decoration: underline;
  color: #977638;
  font-size: 15px;
}
#view_login_container.view_login .article_login .login_form_message, #view_login_container.view_create_user .article_login .login_form_message {
  text-align: left;
  margin-top: 30px;
}
#view_login_container.view_login .article_login .login_form_message .info-body p, #view_login_container.view_create_user .article_login .login_form_message .info-body p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  #view_login_container.view_login.view_login, #view_login_container.view_login.view_create_user, #view_login_container.view_create_user.view_login, #view_login_container.view_create_user.view_create_user {
    margin-top: 100px;
  }
  #view_login_container.view_login .article_login, #view_login_container.view_create_user .article_login {
    width: 100%;
  }
  #view_login_container.view_login .article_login .login_form_container, #view_login_container.view_create_user .article_login .login_form_container {
    margin-top: 30px;
  }
  #view_login_container.view_login .article_login .login_form_container .brand, #view_login_container.view_create_user .article_login .login_form_container .brand {
    font-size: 40px;
    margin-bottom: 30px;
  }
  #view_login_container.view_login .article_login .login_form_container .brand > img, #view_login_container.view_create_user .article_login .login_form_container .brand > img {
    max-width: 200px;
  }
  #view_login_container.view_login .article_login .login_form_container .login_form_wrap, #view_login_container.view_create_user .article_login .login_form_container .login_form_wrap {
    padding: 20px 15px;
  }
  #view_login_container.view_login .article_login .login_form_container .form-group, #view_login_container.view_create_user .article_login .login_form_container .form-group {
    margin-bottom: 20px;
  }
  #view_login_container.view_login .article_login .login_form_container .form-func > label, #view_login_container.view_create_user .article_login .login_form_container .form-func > label {
    padding: 15px 0;
  }
}
@media (min-width: 992px) {
  #view_login_container.view_login .article_login, #view_login_container.view_create_user .article_login {
    width: 680px;
    margin: 150px auto;
  }
  #view_login_container.view_login .article_login .login_form_container .form-func .pwd_find, #view_login_container.view_create_user .article_login .login_form_container .form-func .pwd_find {
    float: right;
  }
}

#notice_email_login,
#forgot_password,
#change_email_login {
  height: fit-content;
  top: 50%;
  transform: translateY(-50%);
}

#notice_email_login .modal-dialog .modal-content {
  padding: 24px;
}
#notice_email_login .modal-dialog .modal-content img {
  margin-bottom: 10px;
}
#notice_email_login .modal-dialog .modal-content p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 20px;
}
#notice_email_login .modal-dialog .modal-content div.confirm-btn {
  padding: 10px 0;
  color: #fff;
  background-color: #1352ef;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

/* PASSWORD Forgot MODAL */
#forgot_password .modal-dialog .modal-content {
  position: relative;
}
#forgot_password .modal-dialog .modal-content .close {
  font-size: 30px;
  position: relative;
  top: 10px;
  right: 20px;
}
#forgot_password .modal-dialog .modal-content .modal-body {
  text-align: center;
  margin: 60px 15px 40px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup #circle {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: #2e7ad8;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup #circle i {
  font-size: 40px;
  color: #fff;
  line-height: 60px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup h3 {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: normal;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup p {
  font-size: 14px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup .error_box, #forgot_password .modal-dialog .modal-content .modal-body #form_markup .success_box {
  display: none;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup .error_box.visible, #forgot_password .modal-dialog .modal-content .modal-body #form_markup .success_box.visible {
  display: block;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup .success-msg {
  border: 1px solid #ddd;
  background-color: #fff;
  color: #393939;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup .success-msg img {
  margin-right: 10px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup .error-msg {
  border: 1px solid #ff0000;
  background-color: #fff;
  color: red;
  font-style: italic;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup .error-msg img {
  margin-right: 10px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup input.form-control {
  padding: 15px 12px;
  height: auto;
  color: #222;
  background-color: transparent;
  border: 1px solid #ddd;
  box-shadow: none;
  line-height: 24px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup .btn_passwordGo {
  padding: 16px 0;
  width: 100%;
  color: #fff;
  background-color: #1352ef;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup .alert {
  margin-bottom: 15px;
  padding: 11px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup .alert img {
  width: 32px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup #form_submit .form-group {
  position: relative;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup #form_submit .form-group [class^=gly] {
  position: absolute;
  color: #ccc;
  font-size: 20px;
  top: 10px;
  right: 10px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup #form_submit .btn_passwordGo {
  background: none;
  display: block;
  width: 70%;
  text-align: center;
  color: #2e7ad8;
  padding: 10px 0;
  box-shadow: none;
  margin: 0 auto;
  font-weight: bold;
  border: 2px solid #2e7ad8;
  font-size: 16px;
}
#forgot_password .modal-dialog .modal-content .modal-body #form_markup #form_submit .btn_passwordGo:hover {
  color: #fff;
  background-color: #2e7ad8;
}

.view_reset_password, .view_user_reset_password {
  margin-top: 10%;
}
.view_reset_password .help-error, .view_user_reset_password .help-error {
  color: #a94442;
}
@media (max-width: 991px) {
  .view_reset_password, .view_user_reset_password {
    margin-top: 15%;
  }
}
.view_reset_password input.form-control, .view_user_reset_password input.form-control {
  height: 50px;
  border-radius: 0;
  border: 1px solid #e3e3e3;
}
.view_reset_password input.form-control:focus, .view_user_reset_password input.form-control:focus {
  outline: none !important;
  border: 1px solid #977638 !important;
}

#change_email_login .modal-content * {
  margin: 0;
  padding: 0;
}
#change_email_login .modal-content {
  padding: 30px 40px 40px 40px;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: none;
}
#change_email_login .modal-content .modal-title {
  margin-bottom: 30px;
  color: #222;
}
#change_email_login .modal-content .modal-title h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
#change_email_login .modal-content > p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
}
#change_email_login .modal-content div.form-group {
  margin-top: 16px;
  padding: 10px 16px;
  position: relative;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 10px;
}
#change_email_login .modal-content div.form-group.active {
  border-color: #1352ef;
}
#change_email_login .modal-content div.form-group.active label {
  color: #1352ef;
}
#change_email_login .modal-content div.form-group label {
  color: #858585;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  position: absolute;
  top: 10px;
  left: 16px;
}
#change_email_login .modal-content div.form-group #create-user-id, #change_email_login .modal-content div.form-group #new_password, #change_email_login .modal-content div.form-group #confirm_password {
  padding-top: 20px;
  height: auto;
  color: #222;
  background-color: transparent;
  border: none !important;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
#change_email_login .modal-content div.form-group .show_password_btn {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
#change_email_login .modal-content div.input-wrapper-email {
  margin-top: 0;
  background-color: #f7f8fa;
}
#change_email_login .modal-content .buttons-wrapper {
  margin-top: 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
}
#change_email_login .modal-content .buttons-wrapper button {
  flex: 1;
  padding: 16px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 10px;
}
#change_email_login .modal-content .buttons-wrapper button:first-child {
  background-color: #a5afc4;
}
#change_email_login .modal-content .buttons-wrapper button:last-child {
  background-color: #1352ef;
}
#change_email_login .modal-content .buttons-wrapper button:disabled {
  color: #cccfd8;
  background-color: #f0f2f8;
}
#change_email_login .modal-content .validation-block {
  margin-top: 8px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
#change_email_login .modal-content .validation-block span {
  display: flex;
  gap: 2px;
  color: #ee3d3d;
  font-size: 12px;
  line-height: 14px;
}
#change_email_login .modal-content .validation-block span .check {
  display: none;
}
#change_email_login .modal-content .validation-block span.active {
  color: #01a387;
}
#change_email_login .modal-content .validation-block span.active .check {
  display: block;
}
#change_email_login .modal-content .validation-block span.active .cancle {
  display: none;
}
#change_email_login .modal-content .help-block {
  text-align: left;
}
#change_email_login .modal-content .footer {
  color: #333;
  font-size: 13px;
  line-height: 16px;
}

.flash_msg_box_success {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
  color: #01a387;
  background-color: #f1faf9;
  border: 1px solid #b4d7d3;
}

.flash_msg_box_success.login_view {
  font-size: 14px;
  text-align: center;
}

.flash_msg_box_error {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
  color: #ee3d3d;
  background-color: #ffeeee;
  border: 1px solid #ecc4c4;
}

/***********************************************************************************************************************
* VIEW_
***********************************************************************************************************************/
#view_register_container .position-relative {
  position: relative;
}
#view_register_container button + button {
  margin: 0 10px;
}
#view_register_container input[type=radio], #view_register_container input[type=checkbox] {
  vertical-align: middle;
  margin-top: 0;
}
#view_register_container .text-color-main {
  color: #977638;
}
#view_register_container .form-control {
  border: 1px solid #e3e3e3;
  height: 50px;
  background: #fff;
  box-shadow: none;
  border-radius: 0;
}
#view_register_container .form-inline .item_area {
  margin: 0 10px;
}
@media (max-width: 991px) {
  #view_register_container .form-inline .item_area {
    margin: 0;
  }
}
#view_register_container .form-inline .item_btn {
  margin-left: 10px;
}
@media (max-width: 991px) {
  #view_register_container .form-inline .item_btn {
    margin: 0;
  }
}
#view_register_container .input-inline-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#view_register_container .input-inline-new .input-inline-btn-new {
  margin-left: 10px;
}
#view_register_container .input-group-btn {
  margin-left: 10px;
}
#view_register_container .register_step {
  width: 100%;
  border: solid 1px #ddd;
}
#view_register_container .register_step .step {
  position: relative;
  padding: 15px 15px;
  height: 70px;
  background-color: #f9f9f9;
}
#view_register_container .register_step .step .no {
  display: inline-block;
  float: left;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: solid 1px #0b0f50;
  color: #0b0f50;
  text-align: center;
  margin-right: 20px;
}
#view_register_container .register_step .step > div .name {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0;
  color: #0b0f50;
}
#view_register_container .register_step .step > div .desc {
  font-size: 12px;
  margin-bottom: 0;
  color: #0b0f50;
}
#view_register_container .register_step .step.active {
  background-color: #0b0f50;
}
#view_register_container .register_step .step.active .no {
  border-color: #FFF;
  color: #FFF;
}
#view_register_container .register_step .step.active > div > p {
  color: #FFF;
}
@media (max-width: 991px) {
  #view_register_container .register_step .step.active {
    background-color: #0b0f50;
  }
  #view_register_container .register_step .step.active:before {
    content: "";
    position: absolute;
    right: 0px;
    top: 70px;
    display: block;
    width: 0;
    height: 0;
    z-index: 1;
    border-top: 30px solid #0b0f50;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
  }
  #view_register_container .register_step .step.active .no {
    border-color: #FFF;
  }
  #view_register_container .register_step .step.active > div > p {
    color: #FFF;
  }
}
@media (min-width: 992px) {
  #view_register_container .register_step {
    display: table;
    table-layout: fixed;
  }
  #view_register_container .register_step .step {
    display: table-cell;
    vertical-align: middle;
    padding-left: 50px;
  }
  #view_register_container .register_step .step:before {
    content: "";
    position: absolute;
    right: -35px;
    top: 0;
    display: block;
    width: 0;
    height: 0;
    z-index: 1;
    border-right: 35px solid none;
    border-left: 35px solid #FFF;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
  }
  #view_register_container .register_step .step.active {
    background-color: #0b0f50;
  }
  #view_register_container .register_step .step.active:before {
    border-left-color: #0b0f50;
  }
  #view_register_container .register_step .step.active .no {
    border-color: #FFF;
  }
  #view_register_container .register_step .step.active > div > p {
    color: #FFF;
  }
  #view_register_container .register_step .step:first-of-type {
    padding-left: 15px;
  }
  #view_register_container .register_step .step:last-of-type:before {
    content: none;
  }
}
@media (max-width: 991px) {
  #view_register_container #step1 .register_step .step.active, #view_register_container #step2 .register_step .step.active {
    background-color: #0b0f50;
  }
  #view_register_container #step1 .register_step .step.active:before, #view_register_container #step2 .register_step .step.active:before {
    content: "";
    position: absolute;
    right: 0px;
    top: 70px;
    display: block;
    width: 0;
    height: 0;
    z-index: 1;
    border-top: 30px solid #0b0f50;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
  }
  #view_register_container #step1 .register_step .step.active .no, #view_register_container #step2 .register_step .step.active .no {
    border-color: #FFF;
  }
  #view_register_container #step1 .register_step .step.active > div > p, #view_register_container #step2 .register_step .step.active > div > p {
    color: #FFF;
  }
}
@media (max-width: 991px) {
  #view_register_container #step3 .register_step .step.active {
    background-color: #0b0f50;
  }
  #view_register_container #step3 .register_step .step.active:before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0;
    display: block;
    width: 0;
    height: 0;
    z-index: 1;
    border-top: 30px solid #f9f9f9;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
  }
  #view_register_container #step3 .register_step .step.active .no {
    border-color: #FFF;
  }
  #view_register_container #step3 .register_step .step.active > div > p {
    color: #FFF;
  }
}
#view_register_container .register_form {
  border-left: solid 1px #e3e3e3;
  border-right: solid 1px #e3e3e3;
  border-bottom: solid 1px #e3e3e3;
  padding: 40px;
}
#view_register_container .register_form .form_title {
  margin: 48px 0 32px;
}
#view_register_container .register_form .form_title .title {
  font-size: 32px;
  color: #9a802c;
  margin: 0;
}
#view_register_container .register_form .form_title p {
  margin-top: 10px;
}
#view_register_container .register_form .form_title.first-title {
  margin-top: 0;
}
#view_register_container .register_form .register_form_inner {
  margin-top: 32px;
}
#view_register_container .register_form .terms_box textarea {
  font-weight: normal;
  width: 100%;
  height: 500px;
  color: #555;
  border-color: #e3e3e3;
  padding: 15px;
  letter-spacing: -0.3px;
}
#view_register_container .register_form .notice-box {
  margin: 16px 0 24px;
}
#view_register_container .register_form .notice-box p {
  color: #b6b7ba;
  line-height: 1.67;
  margin-bottom: 0;
}
#view_register_container .register_form .sign_box > .form-group label {
  font-weight: normal;
}
#view_register_container .register_form .sign_box > .form-group label > input {
  vertical-align: middle;
}
#view_register_container .register_form .d-flex {
  display: flex;
}
#view_register_container .register_form .ml20 {
  margin-left: 20px;
}
#view_register_container .register_form label {
  font-size: 13px;
  margin-bottom: 16px;
}
#view_register_container .register_form .hidden_fileupload {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0); /* For IE8 and earlier */
}
@media (max-width: 991px) {
  #view_register_container .register_form {
    padding: 40px 16px;
  }
  #view_register_container .register_form label {
    font-size: 15px;
    margin-bottom: 2px;
  }
  #view_register_container .register_form .form_title {
    margin: 30px 0 24px;
  }
  #view_register_container .register_form .form_title .title {
    font-size: 25px;
  }
  #view_register_container .register_form .notice-box p {
    font-weight: normal;
  }
}
#view_register_container .register_complete {
  padding: 30px 0 80px;
}
#view_register_container .register_complete .complete_wrap {
  border: 1px solid #ddd;
}
#view_register_container .register_complete .complete_wrap .form_body .form_body_tit {
  padding: 30px;
  text-align: center;
}
#view_register_container .register_complete .complete_wrap .form_body .form_body_tit .large-tit {
  font-size: 30px;
}
#view_register_container .register_complete .complete_wrap .form_body .form_body_tit .large-tit > i {
  color: #2e7ad8;
  margin-right: 15px;
  font-size: 40px;
  vertical-align: middle;
}
#view_register_container .register_complete .complete_wrap .form_body .form_body_tit .small-tit {
  color: #2e7ad8;
}
#view_register_container .register_complete .complete_wrap .form_body .form_body_tit .decs {
  font-size: 14px;
  margin-bottom: 0;
}
#view_register_container .register_complete .complete_wrap .form_body .complete_nav {
  width: 200px;
  margin: 0 auto 20px;
}
#view_register_container .register_complete .complete_wrap .form_body .complete_nav li {
  text-align: left;
  font-size: 15px;
  margin-bottom: 3px;
}
#view_register_container .register_complete .complete_wrap .form_body .complete_nav li span {
  vertical-align: text-bottom;
}
#view_register_container .register_complete .complete_wrap .form_body .complete_notice {
  padding: 50px 20px;
  background: #f4f4f4;
}
#view_register_container .register_complete .complete_wrap .form_body .complete_notice .complete_notice_box {
  width: 380px;
  margin: 0 auto 30px;
  overflow: hidden;
}
#view_register_container .register_complete .complete_wrap .form_body .complete_notice .complete_notice_box .complete_notice_img {
  display: block;
  float: left;
  width: 20%;
}
#view_register_container .register_complete .complete_wrap .form_body .complete_notice .complete_notice_box .complete_notice_txt {
  display: block;
  float: left;
  width: 80%;
}
#view_register_container .register_complete .complete_wrap .form_body .complete_notice .btn-mainpage {
  display: block;
  text-align: center;
  width: 130px;
  margin: 0 auto;
  background: #2e7ad8;
  color: #fff;
}
@media (max-width: 991px) {
  #view_register_container .register_complete .complete_wrap .form_body .form_body_tit .large-tit {
    font-size: 24px;
  }
  #view_register_container .register_complete .complete_wrap .form_body .form_body_tit .large-tit > i {
    font-size: 28px;
  }
  #view_register_container .register_complete .complete_wrap .form_body .complete_nav li {
    font-size: 12px;
  }
  #view_register_container .register_complete .complete_wrap .form_body .complete_notice {
    padding: 30px 20px;
  }
  #view_register_container .register_complete .complete_wrap .form_body .complete_notice .complete_notice_box {
    width: 280px;
    margin: 0 auto 30px;
  }
}

.chartjs-container {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  min-width: 260px;
  height: 400px;
}
.chartjs-container .chartjs-canvas-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.chartjs-container .chartjs-tooltip {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 15px;
  gap: 4px;
  border-radius: 6px;
  transition-duration: 0.3s;
  transform: translate(0, -50%);
  border: none;
  width: max-content;
  pointer-events: none;
}
.chartjs-container .chartjs-tooltip .tooltip-label-name {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 18px !important;
  color: #ffffff !important;
}
.chartjs-container .chartjs-tooltip .tooltip-label-value {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 18px !important;
  color: #ffffff !important;
}
.chartjs-container .chartjs-tooltip .chartjs-tooltip-caret {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-radius: 0;
}
.chartjs-container .chartjs-tooltip.chartjs-pie {
  padding: 7px 10px;
  gap: 0;
}
.chartjs-container .chartjs-tooltip.chartjs-pie .tooltip-label-name {
  font-size: 14px !important;
}
.chartjs-container .chartjs-tooltip.chartjs-pie .tooltip-label-value {
  font-size: 14px !important;
}
.chartjs-container .chartjs-tooltip.chartjs-pie:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 6px;
}
.chartjs-container .chartjs-legend {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 50px;
  margin: 20px 20px 35px 20px;
}
.chartjs-container .chartjs-legend .legend-item {
  max-width: 95px;
  width: 95px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chartjs-container .chartjs-legend .legend-item .legend-item-color {
  width: 38px;
  height: 10px;
}
.chartjs-container .chartjs-legend .legend-item .legend-item-label {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #333333;
}

.chart_sec .carousel-control {
  z-index: 2;
}
.chart_sec .loading-spinner-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7333333333);
  display: flex;
  justify-content: center;
  align-items: center;
}
.chart_sec .loading-spinner-container .loading-spinner {
  width: 65px;
  height: 65px;
}
.chart_sec .no_data {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #FFFFFF;
}
.chart_sec .no_data img {
  width: 24px;
  height: 24px;
}

/*! Select2 Bootstrap Theme v0.1.0-beta.9 | MIT License | github.com/select2/select2-bootstrap-theme */
.select2-container--bootstrap {
  display: block;
  /*------------------------------------*      #COMMON STYLES
  \*------------------------------------*/
  /**
   * Search field in the Select2 dropdown.
   */
  /**
   * No outline for all search fields - in the dropdown
   * and inline in multi Select2s.
   */
  /**
   * Adjust Select2's choices hover and selected styles to match
   * Bootstrap 3's default dropdown styles.
   *
   * @see http://getbootstrap.com/components/#dropdowns
   */
  /**
   * Clear the selection.
   */
  /**
   * Address disabled Select2 styles.
   *
   * @see https://select2.github.io/examples.html#disabled
   * @see http://getbootstrap.com/css/#forms-control-disabled
   */
  /*------------------------------------*      #DROPDOWN
  \*------------------------------------*/
  /**
   * Dropdown border color and box-shadow.
   */
  /**
   * Limit the dropdown height.
   */
  /*------------------------------------*      #SINGLE SELECT2
  \*------------------------------------*/
  /*------------------------------------*    #MULTIPLE SELECT2
  \*------------------------------------*/
  /**
   * Address Bootstrap control sizing classes
   *
   * 1. Reset Bootstrap defaults.
   * 2. Adjust the dropdown arrow button icon position.
   *
   * @see http://getbootstrap.com/css/#forms-control-sizes
   */
  /* 1 */
  /*------------------------------------*    #RTL SUPPORT
  \*------------------------------------*/
}

.select2-container--bootstrap .select2-selection {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0px;
  color: #555555;
  font-size: 14px;
  outline: 0;
  font-weight: bold;
  text-align: center;
}

.select2-container--bootstrap .select2-selection.form-control {
  border-radius: 4px;
}

.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0px;
  color: #555555;
  font-size: 14px;
}

.select2-container--bootstrap .select2-search__field {
  outline: 0;
  /* Firefox 18- */
  /**
     * Firefox 19+
     *
     * @see http://stackoverflow.com/questions/24236240/color-for-styled-placeholder-text-is-muted-in-firefox
     */
}

.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder {
  color: #999;
}

.select2-container--bootstrap .select2-search__field:-moz-placeholder {
  color: #999;
}

.select2-container--bootstrap .select2-search__field::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.select2-container--bootstrap .select2-search__field:-ms-input-placeholder {
  color: #999;
}

.select2-container--bootstrap .select2-results__option {
  padding: 6px 12px;
  /**
     * Disabled results.
     *
     * @see https://select2.github.io/examples.html#disabled-results
     */
  /**
     * Hover state.
     */
  /**
     * Selected state.
     */
}

.select2-container--bootstrap .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--bootstrap .select2-results__option[aria-disabled=true] {
  color: #777777;
  cursor: not-allowed;
}

.select2-container--bootstrap .select2-results__option[aria-selected=true] {
  background-color: #f5f5f5;
  color: #262626;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: #337ab7;
  color: #fff;
}

.select2-container--bootstrap .select2-results__option .select2-results__option {
  padding: 6px 12px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -12px;
  padding-left: 24px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -24px;
  padding-left: 36px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -36px;
  padding-left: 48px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -48px;
  padding-left: 60px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -60px;
  padding-left: 72px;
}

.select2-container--bootstrap .select2-results__group {
  color: #777777;
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1.42857143;
  white-space: nowrap;
}

.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  border-color: #66afe9;
}

.select2-container--bootstrap.select2-container--open {
  /**
     * Make the dropdown arrow point up while the dropdown is visible.
     */
  /**
     * Handle border radii of the container when the dropdown is showing.
     */
}

.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 4px 4px 4px;
}

.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-color: transparent;
}

.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-color: transparent;
}

.select2-container--bootstrap .select2-selection__clear {
  color: #999;
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--bootstrap .select2-selection__clear:hover {
  color: #333;
}

.select2-container--bootstrap.select2-container--disabled .select2-selection {
  border-color: #ccc;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-search__field {
  cursor: not-allowed;
}

.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
  background-color: #eeeeee;
}

.select2-container--bootstrap.select2-container--disabled .select2-selection__clear,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove {
  display: none;
}

.select2-container--bootstrap .select2-dropdown {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border-color: #66afe9;
  overflow-x: hidden;
  margin-top: -1px;
}

.select2-container--bootstrap .select2-dropdown--above {
  -webkit-box-shadow: 0px -6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0px -6px 12px rgba(0, 0, 0, 0.175);
  margin-top: 1px;
}

.select2-container--bootstrap .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--bootstrap .select2-selection--single {
  height: 40px;
  line-height: 28px;
  padding: 6px 24px 6px 12px;
  /**
     * Adjust the single Select2's dropdown arrow button appearance.
     */
}

.select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  position: absolute;
  bottom: 0;
  right: 12px;
  top: 0;
  width: 4px;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-color: #999 transparent transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  height: 0;
  left: 0;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
  color: #555555;
  padding: 0;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--bootstrap .select2-selection--multiple {
  min-height: 34px;
  padding: 0;
  height: auto;
  /**
     * Make Multi Select2's choices match Bootstrap 3's default button styles.
     */
  /**
     * Minus 2px borders.
     */
  /**
     * Clear the selection.
     */
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  line-height: 1.42857143;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  float: left;
  margin-top: 5px;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  color: #555555;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin: 5px 0 0 6px;
  padding: 0 6px;
}

.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  background: transparent;
  padding: 0 12px;
  height: 32px;
  line-height: 1.42857143;
  margin-top: 0;
  min-width: 5em;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 3px;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 6px;
}

.select2-container--bootstrap .select2-selection--single.input-sm, .select2-container--bootstrap .input-group-sm > .select2-selection--single.form-control,
.select2-container--bootstrap .input-group-sm > .select2-selection--single.input-group-addon,
.select2-container--bootstrap .input-group-sm > .input-group-btn > .select2-selection--single.btn,
.input-group-sm .select2-container--bootstrap .select2-selection--single,
.form-group-sm .select2-container--bootstrap .select2-selection--single {
  border-radius: 3px;
  font-size: 12px;
  height: 30px;
  line-height: 1.5;
  padding: 5px 22px 5px 10px;
  /* 2 */
}

.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b, .select2-container--bootstrap .input-group-sm > .select2-selection--single.form-control .select2-selection__arrow b,
.select2-container--bootstrap .input-group-sm > .select2-selection--single.input-group-addon .select2-selection__arrow b,
.select2-container--bootstrap .input-group-sm > .input-group-btn > .select2-selection--single.btn .select2-selection__arrow b,
.input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,
.form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  margin-left: -5px;
}

.select2-container--bootstrap .select2-selection--multiple.input-sm, .select2-container--bootstrap .input-group-sm > .select2-selection--multiple.form-control,
.select2-container--bootstrap .input-group-sm > .select2-selection--multiple.input-group-addon,
.select2-container--bootstrap .input-group-sm > .input-group-btn > .select2-selection--multiple.btn,
.input-group-sm .select2-container--bootstrap .select2-selection--multiple,
.form-group-sm .select2-container--bootstrap .select2-selection--multiple {
  min-height: 30px;
  border-radius: 3px;
}

.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice, .select2-container--bootstrap .input-group-sm > .select2-selection--multiple.form-control .select2-selection__choice,
.select2-container--bootstrap .input-group-sm > .select2-selection--multiple.input-group-addon .select2-selection__choice,
.select2-container--bootstrap .input-group-sm > .input-group-btn > .select2-selection--multiple.btn .select2-selection__choice,
.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,
.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 12px;
  line-height: 1.5;
  margin: 4px 0 0 5px;
  padding: 0 5px;
}

.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field, .select2-container--bootstrap .input-group-sm > .select2-selection--multiple.form-control .select2-search--inline .select2-search__field,
.select2-container--bootstrap .input-group-sm > .select2-selection--multiple.input-group-addon .select2-search--inline .select2-search__field,
.select2-container--bootstrap .input-group-sm > .input-group-btn > .select2-selection--multiple.btn .select2-search--inline .select2-search__field,
.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,
.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 10px;
  font-size: 12px;
  height: 28px;
  line-height: 1.5;
}

.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear, .select2-container--bootstrap .input-group-sm > .select2-selection--multiple.form-control .select2-selection__clear,
.select2-container--bootstrap .input-group-sm > .select2-selection--multiple.input-group-addon .select2-selection__clear,
.select2-container--bootstrap .input-group-sm > .input-group-btn > .select2-selection--multiple.btn .select2-selection__clear,
.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,
.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 5px;
}

.select2-container--bootstrap .select2-selection--single.input-lg, .select2-container--bootstrap .input-group-lg > .select2-selection--single.form-control,
.select2-container--bootstrap .input-group-lg > .select2-selection--single.input-group-addon,
.select2-container--bootstrap .input-group-lg > .input-group-btn > .select2-selection--single.btn,
.input-group-lg .select2-container--bootstrap .select2-selection--single,
.form-group-lg .select2-container--bootstrap .select2-selection--single {
  border-radius: 6px;
  font-size: 18px;
  height: 46px;
  line-height: 1.3333333;
  padding: 10px 31px 10px 16px;
  /* 1 */
}

.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow, .select2-container--bootstrap .input-group-lg > .select2-selection--single.form-control .select2-selection__arrow,
.select2-container--bootstrap .input-group-lg > .select2-selection--single.input-group-addon .select2-selection__arrow,
.select2-container--bootstrap .input-group-lg > .input-group-btn > .select2-selection--single.btn .select2-selection__arrow,
.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,
.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  width: 5px;
}

.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b, .select2-container--bootstrap .input-group-lg > .select2-selection--single.form-control .select2-selection__arrow b,
.select2-container--bootstrap .input-group-lg > .select2-selection--single.input-group-addon .select2-selection__arrow b,
.select2-container--bootstrap .input-group-lg > .input-group-btn > .select2-selection--single.btn .select2-selection__arrow b,
.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,
.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-width: 5px 5px 0 5px;
  margin-left: -5px;
  margin-left: -10px;
  margin-top: -2.5px;
}

.select2-container--bootstrap .select2-selection--multiple.input-lg, .select2-container--bootstrap .input-group-lg > .select2-selection--multiple.form-control,
.select2-container--bootstrap .input-group-lg > .select2-selection--multiple.input-group-addon,
.select2-container--bootstrap .input-group-lg > .input-group-btn > .select2-selection--multiple.btn,
.input-group-lg .select2-container--bootstrap .select2-selection--multiple,
.form-group-lg .select2-container--bootstrap .select2-selection--multiple {
  min-height: 46px;
  border-radius: 6px;
}

.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice, .select2-container--bootstrap .input-group-lg > .select2-selection--multiple.form-control .select2-selection__choice,
.select2-container--bootstrap .input-group-lg > .select2-selection--multiple.input-group-addon .select2-selection__choice,
.select2-container--bootstrap .input-group-lg > .input-group-btn > .select2-selection--multiple.btn .select2-selection__choice,
.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,
.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 0px;
  margin: 9px 0 0 8px;
  padding: 0 10px;
}

.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field, .select2-container--bootstrap .input-group-lg > .select2-selection--multiple.form-control .select2-search--inline .select2-search__field,
.select2-container--bootstrap .input-group-lg > .select2-selection--multiple.input-group-addon .select2-search--inline .select2-search__field,
.select2-container--bootstrap .input-group-lg > .input-group-btn > .select2-selection--multiple.btn .select2-search--inline .select2-search__field,
.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,
.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 16px;
  font-size: 18px;
  height: 44px;
  line-height: 1.3333333;
}

.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear, .select2-container--bootstrap .input-group-lg > .select2-selection--multiple.form-control .select2-selection__clear,
.select2-container--bootstrap .input-group-lg > .select2-selection--multiple.input-group-addon .select2-selection__clear,
.select2-container--bootstrap .input-group-lg > .input-group-btn > .select2-selection--multiple.btn .select2-selection__clear,
.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,
.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 10px;
}

.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single, .select2-container--bootstrap .input-group-lg > .select2-selection.select2-container--open.form-control .select2-selection--single,
.select2-container--bootstrap .input-group-lg > .select2-selection.select2-container--open.input-group-addon .select2-selection--single,
.select2-container--bootstrap .input-group-lg > .input-group-btn > .select2-selection.select2-container--open.btn .select2-selection--single {
  /**
     * Make the dropdown arrow point up while the dropdown is visible.
     */
}

.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b, .select2-container--bootstrap .input-group-lg > .select2-selection.select2-container--open.form-control .select2-selection--single .select2-selection__arrow b,
.select2-container--bootstrap .input-group-lg > .select2-selection.select2-container--open.input-group-addon .select2-selection--single .select2-selection__arrow b,
.select2-container--bootstrap .input-group-lg > .input-group-btn > .select2-selection.select2-container--open.btn .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 5px 5px 5px;
}

.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single {
  /**
     * Make the dropdown arrow point up while the dropdown is visible.
     */
}

.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 5px 5px 5px;
}

.select2-container--bootstrap[dir=rtl] {
  /**
     * Single Select2
     *
     * 1. Makes sure that .select2-selection__placeholder is positioned
     *    correctly.
     */
  /**
     * Multiple Select2
     */
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single {
  padding-left: 24px;
  padding-right: 12px;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  padding-left: 0;
  text-align: right;
  /* 1 */
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 12px;
  right: auto;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b {
  margin-left: 0;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
  float: right;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 0;
  margin-right: 6px;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

/*------------------------------------*  #ADDITIONAL GOODIES
\*------------------------------------*/
/**
 * Address Bootstrap's validation states
 *
 * If a Select2 widget parent has one of Bootstrap's validation state modifier
 * classes, adjust Select2's border colors and focus states accordingly.
 * You may apply said classes to the Select2 dropdown (body > .select2-container)
 * via JavaScript match Bootstraps' to make its styles match.
 *
 * @see http://getbootstrap.com/css/#forms-control-validation
 */
.has-warning .select2-dropdown,
.has-warning .select2-selection {
  border-color: #8a6d3b;
}

.has-warning .select2-container--focus .select2-selection,
.has-warning .select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  border-color: #66512c;
}

.has-warning.select2-drop-active {
  border-color: #66512c;
}

.has-warning.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #66512c;
}

.has-error .select2-dropdown,
.has-error .select2-selection {
  border-color: #a94442;
}

.has-error .select2-container--focus .select2-selection,
.has-error .select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  border-color: #843534;
}

.has-error.select2-drop-active {
  border-color: #843534;
}

.has-error.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #843534;
}

.has-success .select2-dropdown,
.has-success .select2-selection {
  border-color: #3c763d;
}

.has-success .select2-container--focus .select2-selection,
.has-success .select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  border-color: #2b542c;
}

.has-success.select2-drop-active {
  border-color: #2b542c;
}

.has-success.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #2b542c;
}

/**
 * Select2 widgets in Bootstrap Input Groups
 *
 * When Select2 widgets are combined with other elements using Bootstraps
 * "Input Group" component, we don't want specific edges of the Select2
 * container to have a border-radius.
 *
 * Use .select2-bootstrap-prepend and .select2-bootstrap-append on
 * a Bootstrap 3 .input-group to let the contained Select2 widget know which
 * edges should not be rounded as they are directly followed by another element.
 *
 * @see http://getbootstrap.com/components/#input-groups
 */
/**
 * Mimick Bootstraps .input-group .form-control styles.
 *
 * @see https://github.com/twbs/bootstrap/blob/master/less/input-groups.less
 */
.input-group .select2-container--bootstrap {
  display: table;
  table-layout: fixed;
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
  /**
   * Adjust z-index like Bootstrap does to show the focus-box-shadow
   * above appended buttons in .input-group and .form-group.
   */
}

.input-group .select2-container--bootstrap.select2-container--open, .input-group .select2-container--bootstrap.select2-container--focus {
  z-index: 3;
}

.input-group.select2-bootstrap-prepend .select2-container--bootstrap .select2-selection {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group.select2-bootstrap-append .select2-container--bootstrap .select2-selection {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/**
 * Adjust alignment of Bootstrap buttons in Bootstrap Input Groups to address
 * Multi Select2's height which - depending on how many elements have been selected -
 * may grow taller than its initial size.
 *
 * @see http://getbootstrap.com/components/#input-groups
 */
.select2-bootstrap-append .select2-container--bootstrap,
.select2-bootstrap-append .input-group-btn,
.select2-bootstrap-append .input-group-btn .btn,
.select2-bootstrap-prepend .select2-container--bootstrap,
.select2-bootstrap-prepend .input-group-btn,
.select2-bootstrap-prepend .input-group-btn .btn {
  vertical-align: top;
}

/**
 * Temporary fix for https://github.com/select2/select2-bootstrap-theme/issues/9
 *
 * Provides `!important` for certain properties of the class applied to the
 * original `<select>` element to hide it.
 *
 * @see https://github.com/select2/select2/pull/3301
 * @see https://github.com/fk/select2/commit/31830c7b32cb3d8e1b12d5b434dee40a6e753ada
 */
.form-control.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
}

/**
 * Display override for inline forms
 */
.form-inline .select2-container--bootstrap {
  display: inline-block;
}

/***********************************************************************************************************************
 *
 * bootstrap을 위한 파일
 * variables가 변경될 때만 컴파일 됨.
 *
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Grid break point
 ***********************************************************************************************************************/
/*
// for mobile
@media (max-width:$grid-float-breakpoint-max) {}

// SCREEN(MD)
@media only screen
and (min-width:$screen-md)
and (max-width: $screen-md-max)
{}

// for desktop
@media (min-width:$grid-float-breakpoint) {}
*/
/***********************************************************************************************************************
 * Path
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Bootstrap variables for custom style
 ***********************************************************************************************************************/
/**
언어별 파일에서 $font-global-font 를 설정하면 각각 다른 언어로 css 파일을 만들 수 있다.
 */
/***********************************************************************************************************************
 * Hack
 *
 ***********************************************************************************************************************/
/* ie hack */
/***********************************************************************************************************************
 * Icomoon과 충돌 방지
 ***********************************************************************************************************************/
.glyphicon {
  font-family: "Glyphicons Halflings" !important;
}

/********** Panels **********/
/********** Toggle Switch 버튼 **********/
/***********************************************************************************************************************
 * Default Main Color
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * 절대!! 지우지 말것! 컬러 component를 만들어줌.
 * 컬러가 추가되면 color-list와 color-brand-list에 추가할 것.
 * color-list와 brand-list의 순서는 동일해야 함.
 ************************************************************************************************************************/
/***********************************************************************************************************************
 * Config Style Variables
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Base Style Variables
 ***********************************************************************************************************************/
/*
 * bootstrap 중간에 mixin을 overwrite 해야하기 때문
 */
/**
 * Make align position
 */
/**
 *
 */
/**
 * Make border radius
 */
/**
SYNTEX
background: linear-gradient(angle, color-stop1, color-stop2);

@include make_gradient_linear(-90deg, red, yellow)
*/
/**
@include make_gradient_linear_repeat(red, yellow 10%, green 20%)
*/
/**
SYNTEX
background: radial-gradient(shape size at position, start-color, ..., last-color);

@include make_gradient_radial(red, yellow, green);              // 박스의 가로세로 비율 맞춰 fixed 비율
@include make_gradient_radial(red 5%, yellow 15%, green 60%);   // 박스의 가로세로 비율 맞춤
@include make_gradient_radial(circle, red, yellow, green);      // 정원
*/
/**
@include make_gradient_radial_repeat(red, yellow 10%, green 15%);
*/
/**
 * Make box shadow
 */
/**
 * Make position animation
 */
/**
 * Make transparent
 */
/**
 * Make flex object
 */
/**
 * Make blur
 */
/**
 * Make fade in and out
 */
/**
* buttons-size overwrite to bootstrap
*/
/**
 * draw browser break point in body
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("/assets/common/common/fonts/bootstrap/glyphicons-halflings-regular.eot");
  src: url("/assets/common/common/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("/assets/common/common/fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("/assets/common/common/fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("/assets/common/common/fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("/assets/common/common/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "*";
}

.glyphicon-plus:before {
  content: "+";
}

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "€";
}

.glyphicon-minus:before {
  content: "−";
}

.glyphicon-cloud:before {
  content: "☁";
}

.glyphicon-envelope:before {
  content: "✉";
}

.glyphicon-pencil:before {
  content: "✏";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-lock:before {
  content: "\e033";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-bookmark:before {
  content: "\e044";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-fire:before {
  content: "\e104";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-bell:before {
  content: "\e123";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-wrench:before {
  content: "\e136";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-briefcase:before {
  content: "\e139";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-paperclip:before {
  content: "\e142";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-pushpin:before {
  content: "\e146";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}

.glyphicon-cd:before {
  content: "\e201";
}

.glyphicon-save-file:before {
  content: "\e202";
}

.glyphicon-open-file:before {
  content: "\e203";
}

.glyphicon-level-up:before {
  content: "\e204";
}

.glyphicon-copy:before {
  content: "\e205";
}

.glyphicon-paste:before {
  content: "\e206";
}

.glyphicon-alert:before {
  content: "\e209";
}

.glyphicon-equalizer:before {
  content: "\e210";
}

.glyphicon-king:before {
  content: "\e211";
}

.glyphicon-queen:before {
  content: "\e212";
}

.glyphicon-pawn:before {
  content: "\e213";
}

.glyphicon-bishop:before {
  content: "\e214";
}

.glyphicon-knight:before {
  content: "\e215";
}

.glyphicon-baby-formula:before {
  content: "\e216";
}

.glyphicon-tent:before {
  content: "⛺";
}

.glyphicon-blackboard:before {
  content: "\e218";
}

.glyphicon-bed:before {
  content: "\e219";
}

.glyphicon-apple:before {
  content: "\f8ff";
}

.glyphicon-erase:before {
  content: "\e221";
}

.glyphicon-hourglass:before {
  content: "⌛";
}

.glyphicon-lamp:before {
  content: "\e223";
}

.glyphicon-duplicate:before {
  content: "\e224";
}

.glyphicon-piggy-bank:before {
  content: "\e225";
}

.glyphicon-scissors:before {
  content: "\e226";
}

.glyphicon-bitcoin:before {
  content: "\e227";
}

.glyphicon-btc:before {
  content: "\e227";
}

.glyphicon-xbt:before {
  content: "\e227";
}

.glyphicon-yen:before {
  content: "¥";
}

.glyphicon-jpy:before {
  content: "¥";
}

.glyphicon-ruble:before {
  content: "₽";
}

.glyphicon-rub:before {
  content: "₽";
}

.glyphicon-scale:before {
  content: "\e230";
}

.glyphicon-ice-lolly:before {
  content: "\e231";
}

.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

.glyphicon-education:before {
  content: "\e233";
}

.glyphicon-option-horizontal:before {
  content: "\e234";
}

.glyphicon-option-vertical:before {
  content: "\e235";
}

.glyphicon-menu-hamburger:before {
  content: "\e236";
}

.glyphicon-modal-window:before {
  content: "\e237";
}

.glyphicon-oil:before {
  content: "\e238";
}

.glyphicon-grain:before {
  content: "\e239";
}

.glyphicon-sunglasses:before {
  content: "\e240";
}

.glyphicon-text-size:before {
  content: "\e241";
}

.glyphicon-text-color:before {
  content: "\e242";
}

.glyphicon-text-background:before {
  content: "\e243";
}

.glyphicon-object-align-top:before {
  content: "\e244";
}

.glyphicon-object-align-bottom:before {
  content: "\e245";
}

.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

.glyphicon-object-align-left:before {
  content: "\e247";
}

.glyphicon-object-align-vertical:before {
  content: "\e248";
}

.glyphicon-object-align-right:before {
  content: "\e249";
}

.glyphicon-triangle-right:before {
  content: "\e250";
}

.glyphicon-triangle-left:before {
  content: "\e251";
}

.glyphicon-triangle-bottom:before {
  content: "\e252";
}

.glyphicon-triangle-top:before {
  content: "\e253";
}

.glyphicon-console:before {
  content: "\e254";
}

.glyphicon-superscript:before {
  content: "\e255";
}

.glyphicon-subscript:before {
  content: "\e256";
}

.glyphicon-menu-left:before {
  content: "\e257";
}

.glyphicon-menu-right:before {
  content: "\e258";
}

.glyphicon-menu-down:before {
  content: "\e259";
}

.glyphicon-menu-up:before {
  content: "\e260";
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: Roboto, "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #1a1a1a;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}
a:hover, a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #777777;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

small,
.small {
  font-size: 85%;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase, .initialism {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777777;
}

.text-primary {
  color: #337ab7;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: #337ab7;
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 1.428571429;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

.dl-horizontal dd:before, .dl-horizontal dd:after {
  display: table;
  content: " ";
}
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 992px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
}

.initialism {
  font-size: 90%;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "— ";
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: "";
}
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: " —";
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

code,
kbd,
pre,
samp {
  font-family: Roboto, "Open Sans", sans-serif;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container:before, .container:after {
  display: table;
  content: " ";
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1250px;
  }
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid:before, .container-fluid:after {
  display: table;
  content: " ";
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row:before, .row:after {
  display: table;
  content: " ";
}
.row:after {
  clear: both;
}

.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.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 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1280px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
table {
  background-color: transparent;
}
table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*=col-],
table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

input[type=radio],
input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
}
input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio],
input[type=checkbox][disabled],
input[type=checkbox].disabled,
fieldset[disabled] input[type=checkbox] {
  cursor: not-allowed;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 8px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 7px 14px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control,
  input[type=time].form-control,
  input[type=datetime-local].form-control,
  input[type=month].form-control {
    line-height: 36px;
  }
  input[type=date].input-sm,
  .input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date],
  input[type=time].input-sm,
  .input-group-sm > .input-group-btn > input[type=time].btn,
  .input-group-sm input[type=time],
  input[type=datetime-local].input-sm,
  .input-group-sm > .input-group-btn > input[type=datetime-local].btn,
  .input-group-sm input[type=datetime-local],
  input[type=month].input-sm,
  .input-group-sm > .input-group-btn > input[type=month].btn,
  .input-group-sm input[type=month] {
    line-height: 30px;
  }
  input[type=date].input-lg,
  .input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date],
  input[type=time].input-lg,
  .input-group-lg > .input-group-btn > input[type=time].btn,
  .input-group-lg input[type=time],
  input[type=datetime-local].input-lg,
  .input-group-lg > .input-group-btn > input[type=datetime-local].btn,
  .input-group-lg input[type=datetime-local],
  input[type=month].input-lg,
  .input-group-lg > .input-group-btn > input[type=month].btn,
  .input-group-lg input[type=month] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
  position: absolute;
  margin-top: 4px \9 ;
  margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

.form-control-static {
  min-height: 34px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 0;
}
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-right: 0;
  padding-left: 0;
}

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 45px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #5a5a5a;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type=radio],
  .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 8px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 28px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  display: table;
  content: " ";
}
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 8px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 7px 14px;
  font-size: 14px;
  line-height: 1.44;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  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, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65); /* For IE8 and earlier */
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.35;
  border-radius: 6px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.51;
  border-radius: 3px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.51;
  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%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9 ;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 992px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar:before, .btn-toolbar:after {
  display: table;
  content: " ";
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle=buttons] > .btn input[type=radio],
[data-toggle=buttons] > .btn input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=radio],
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type=radio],
.input-group-addon input[type=checkbox] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav:before, .nav:after {
  display: table;
  content: " ";
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.navbar:before, .navbar:after {
  display: table;
  content: " ";
}
.navbar:after {
  clear: both;
}
@media (min-width: 992px) {
  .navbar {
    border-radius: 4px;
  }
}

.navbar-header:before, .navbar-header:after {
  display: table;
  content: " ";
}
.navbar-header:after {
  clear: both;
}
@media (min-width: 992px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before, .navbar-collapse:after {
  display: table;
  content: " ";
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 992px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 992px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 992px) {
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 992px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 992px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 991px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 992px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 7px;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type=radio],
  .navbar-form .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 991px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 7px;
  margin-bottom: 7px;
}
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 992px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 991px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #090909;
}
@media (max-width: 991px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}
.breadcrumb > .active {
  color: #777777;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 7px 14px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager:before, .pager:after {
  display: table;
  content: " ";
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}

.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label-default {
  background-color: #777777;
}
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron, .container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron, .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
.thumbnail .caption {
  padding: 9px;
  color: #1a1a1a;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-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;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -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);
}

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.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);
  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;
}

.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  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);
}

.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  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);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  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);
}

.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  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);
}

.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}
.panel-body:before, .panel-body:after {
  display: table;
  content: " ";
}
.panel-body:after {
  clear: both;
}

.panel-heading {
  padding: 17px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: -1px;
  border-top-right-radius: -1px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 17px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: -1px;
  border-top-right-radius: -1px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: -1px;
  border-top-right-radius: -1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: -1px;
  border-top-right-radius: -1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: -1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: -1px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: -1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: -1px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); /* For IE8 and earlier */
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); /* For IE8 and earlier */
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header:before, .modal-header:after {
  display: table;
  content: " ";
}
.modal-header:after {
  clear: both;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: Roboto, "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0); /* For IE8 and earlier */
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90); /* For IE8 and earlier */
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: Roboto, "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover, .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
  filter: alpha(opacity=90); /* For IE8 and earlier */
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: "‹";
}
.carousel-control .icon-next:before {
  content: "›";
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9 ;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1280px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1280px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1280px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1280px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
/***********************************************************************************************************************
 *
 * common components는 잘 바뀌지 않음.
 * 컴파일 속도를 위해 따로 분리
 *
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Grid break point
 ***********************************************************************************************************************/
/*
// for mobile
@media (max-width:$grid-float-breakpoint-max) {}

// SCREEN(MD)
@media only screen
and (min-width:$screen-md)
and (max-width: $screen-md-max)
{}

// for desktop
@media (min-width:$grid-float-breakpoint) {}
*/
/***********************************************************************************************************************
 * Path
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Bootstrap variables for custom style
 ***********************************************************************************************************************/
/**
언어별 파일에서 $font-global-font 를 설정하면 각각 다른 언어로 css 파일을 만들 수 있다.
 */
/***********************************************************************************************************************
 * Hack
 *
 ***********************************************************************************************************************/
/* ie hack */
/***********************************************************************************************************************
 * Icomoon과 충돌 방지
 ***********************************************************************************************************************/
.glyphicon {
  font-family: "Glyphicons Halflings" !important;
}

/********** Panels **********/
/********** Toggle Switch 버튼 **********/
/***********************************************************************************************************************
 * Default Main Color
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * 절대!! 지우지 말것! 컬러 component를 만들어줌.
 * 컬러가 추가되면 color-list와 color-brand-list에 추가할 것.
 * color-list와 brand-list의 순서는 동일해야 함.
 ************************************************************************************************************************/
/***********************************************************************************************************************
 * Config Style Variables
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * Base Style Variables
 ***********************************************************************************************************************/
/***********************************************************************************************************************
 * ALIGN
 **********************************************************************************************************************/
.vcenter {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

.col-centered {
  float: none;
  margin: 0 auto;
}

.float-left {
  float: left;
}

.float-left-important {
  float: left !important;
}

.float-right {
  float: right;
}

.float-right-important {
  float: right !important;
}

.float-none {
  float: none;
}

.float-none-important {
  float: none !important;
}

.text-th-left, .text-th-left th {
  text-align: left;
}

.text-th-right, .text-th-right th {
  text-align: right;
}

.text-td-left, .text-td-left td {
  text-align: left;
}

.text-td-right, .text-td-right td {
  text-align: right;
}

.text-top {
  vertical-align: top;
}

.text-top-important {
  vertical-align: top !important;
}

.text-bottom {
  vertical-align: bottom;
}

.text-bottom-important {
  vertical-align: bottom !important;
}

.text-middle {
  vertical-align: middle;
}

.text-middle-important {
  vertical-align: middle !important;
}

.text-left-important {
  text-align: left !important;
}

.text-center-important {
  text-align: center !important;
}

.text-right-important {
  text-align: right !important;
}

/***********************************************************************************************************************
 * TEXT
 **********************************************************************************************************************/
.text-underline {
  text-decoration: underline;
}

/***********************************************************************************************************************
 * DISPLAY
 **********************************************************************************************************************/
.dis_none, dis-none {
  display: none !important;
}

.dis_inline_block, .dis-inline-block {
  display: inline-block !important;
}

.dis_block, .dis-block {
  display: block !important;
}

.width-per-32 {
  width: 32% !important;
}

.width-per-33 {
  width: 33% !important;
}

.width-per-50 {
  width: 50% !important;
}

.width-per-100 {
  width: 100% !important;
}

.pointer {
  cursor: pointer;
}

/***********************************************************************************************************************
 * DISPLAY - TABLE
 **********************************************************************************************************************/
.table_wrap {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.table_row_wrap {
  display: table-row;
}

.table_cell_wrap {
  position: relative;
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.table_layout_normal {
  table-layout: auto;
}

/***********************************************************************************************************************
 * STYLE
 **********************************************************************************************************************/
.fb {
  font-weight: bold;
}

.fn {
  font-weight: normal;
}

.pre {
  white-space: pre;
}

/***********************************************************************************************************************
 * MARGIN & PADDING
 **********************************************************************************************************************/
/**
 *
 * Margin Padding Maker
 *
 * _margin_padding_maker(className, css attr name, start idx, end idx, step idx)
 * ex : .mg0 {margin:0px;} .mg5 {margin:5px;} .mgt5 {margin-top:5px;} .pdl5 {padding-left:5px;} ....
 *
 */
.mg1 {
  margin: 1px;
}

.mg1-important {
  margin: 1px !important;
}

.mg2 {
  margin: 2px;
}

.mg2-important {
  margin: 2px !important;
}

.mg3 {
  margin: 3px;
}

.mg3-important {
  margin: 3px !important;
}

.mg4 {
  margin: 4px;
}

.mg4-important {
  margin: 4px !important;
}

.mg0 {
  margin: 0px;
}

.mg0-important {
  margin: 0px !important;
}

.mg5 {
  margin: 5px;
}

.mg5-important {
  margin: 5px !important;
}

.mg10 {
  margin: 10px;
}

.mg10-important {
  margin: 10px !important;
}

.mg15 {
  margin: 15px;
}

.mg15-important {
  margin: 15px !important;
}

.mg20 {
  margin: 20px;
}

.mg20-important {
  margin: 20px !important;
}

.mg25 {
  margin: 25px;
}

.mg25-important {
  margin: 25px !important;
}

.mg30 {
  margin: 30px;
}

.mg30-important {
  margin: 30px !important;
}

.mg35 {
  margin: 35px;
}

.mg35-important {
  margin: 35px !important;
}

.mg40 {
  margin: 40px;
}

.mg40-important {
  margin: 40px !important;
}

.mg45 {
  margin: 45px;
}

.mg45-important {
  margin: 45px !important;
}

.mg50 {
  margin: 50px;
}

.mg50-important {
  margin: 50px !important;
}

.mg-5 {
  margin: -5px;
}

.mg-5-important {
  margin: -5px !important;
}

.mg-4 {
  margin: -4px;
}

.mg-4-important {
  margin: -4px !important;
}

.mg-3 {
  margin: -3px;
}

.mg-3-important {
  margin: -3px !important;
}

.mg-2 {
  margin: -2px;
}

.mg-2-important {
  margin: -2px !important;
}

.mg-1 {
  margin: -1px;
}

.mg-1-important {
  margin: -1px !important;
}

.mg-grid {
  margin: 30px;
}

.mgt1 {
  margin-top: 1px;
}

.mgt1-important {
  margin-top: 1px !important;
}

.mgt2 {
  margin-top: 2px;
}

.mgt2-important {
  margin-top: 2px !important;
}

.mgt3 {
  margin-top: 3px;
}

.mgt3-important {
  margin-top: 3px !important;
}

.mgt4 {
  margin-top: 4px;
}

.mgt4-important {
  margin-top: 4px !important;
}

.mgt0 {
  margin-top: 0px;
}

.mgt0-important {
  margin-top: 0px !important;
}

.mgt5 {
  margin-top: 5px;
}

.mgt5-important {
  margin-top: 5px !important;
}

.mgt10 {
  margin-top: 10px;
}

.mgt10-important {
  margin-top: 10px !important;
}

.mgt15 {
  margin-top: 15px;
}

.mgt15-important {
  margin-top: 15px !important;
}

.mgt20 {
  margin-top: 20px;
}

.mgt20-important {
  margin-top: 20px !important;
}

.mgt25 {
  margin-top: 25px;
}

.mgt25-important {
  margin-top: 25px !important;
}

.mgt30 {
  margin-top: 30px;
}

.mgt30-important {
  margin-top: 30px !important;
}

.mgt35 {
  margin-top: 35px;
}

.mgt35-important {
  margin-top: 35px !important;
}

.mgt40 {
  margin-top: 40px;
}

.mgt40-important {
  margin-top: 40px !important;
}

.mgt45 {
  margin-top: 45px;
}

.mgt45-important {
  margin-top: 45px !important;
}

.mgt50 {
  margin-top: 50px;
}

.mgt50-important {
  margin-top: 50px !important;
}

.mgt-5 {
  margin-top: -5px;
}

.mgt-5-important {
  margin-top: -5px !important;
}

.mgt-4 {
  margin-top: -4px;
}

.mgt-4-important {
  margin-top: -4px !important;
}

.mgt-3 {
  margin-top: -3px;
}

.mgt-3-important {
  margin-top: -3px !important;
}

.mgt-2 {
  margin-top: -2px;
}

.mgt-2-important {
  margin-top: -2px !important;
}

.mgt-1 {
  margin-top: -1px;
}

.mgt-1-important {
  margin-top: -1px !important;
}

.mgt-grid {
  margin-top: 30px;
}

.mgl1 {
  margin-left: 1px;
}

.mgl1-important {
  margin-left: 1px !important;
}

.mgl2 {
  margin-left: 2px;
}

.mgl2-important {
  margin-left: 2px !important;
}

.mgl3 {
  margin-left: 3px;
}

.mgl3-important {
  margin-left: 3px !important;
}

.mgl4 {
  margin-left: 4px;
}

.mgl4-important {
  margin-left: 4px !important;
}

.mgl0 {
  margin-left: 0px;
}

.mgl0-important {
  margin-left: 0px !important;
}

.mgl5 {
  margin-left: 5px;
}

.mgl5-important {
  margin-left: 5px !important;
}

.mgl10 {
  margin-left: 10px;
}

.mgl10-important {
  margin-left: 10px !important;
}

.mgl15 {
  margin-left: 15px;
}

.mgl15-important {
  margin-left: 15px !important;
}

.mgl20 {
  margin-left: 20px;
}

.mgl20-important {
  margin-left: 20px !important;
}

.mgl25 {
  margin-left: 25px;
}

.mgl25-important {
  margin-left: 25px !important;
}

.mgl30 {
  margin-left: 30px;
}

.mgl30-important {
  margin-left: 30px !important;
}

.mgl35 {
  margin-left: 35px;
}

.mgl35-important {
  margin-left: 35px !important;
}

.mgl40 {
  margin-left: 40px;
}

.mgl40-important {
  margin-left: 40px !important;
}

.mgl45 {
  margin-left: 45px;
}

.mgl45-important {
  margin-left: 45px !important;
}

.mgl50 {
  margin-left: 50px;
}

.mgl50-important {
  margin-left: 50px !important;
}

.mgl-5 {
  margin-left: -5px;
}

.mgl-5-important {
  margin-left: -5px !important;
}

.mgl-4 {
  margin-left: -4px;
}

.mgl-4-important {
  margin-left: -4px !important;
}

.mgl-3 {
  margin-left: -3px;
}

.mgl-3-important {
  margin-left: -3px !important;
}

.mgl-2 {
  margin-left: -2px;
}

.mgl-2-important {
  margin-left: -2px !important;
}

.mgl-1 {
  margin-left: -1px;
}

.mgl-1-important {
  margin-left: -1px !important;
}

.mgl-grid {
  margin-left: 30px;
}

.mgr1 {
  margin-right: 1px;
}

.mgr1-important {
  margin-right: 1px !important;
}

.mgr2 {
  margin-right: 2px;
}

.mgr2-important {
  margin-right: 2px !important;
}

.mgr3 {
  margin-right: 3px;
}

.mgr3-important {
  margin-right: 3px !important;
}

.mgr4 {
  margin-right: 4px;
}

.mgr4-important {
  margin-right: 4px !important;
}

.mgr0 {
  margin-right: 0px;
}

.mgr0-important {
  margin-right: 0px !important;
}

.mgr5 {
  margin-right: 5px;
}

.mgr5-important {
  margin-right: 5px !important;
}

.mgr10 {
  margin-right: 10px;
}

.mgr10-important {
  margin-right: 10px !important;
}

.mgr15 {
  margin-right: 15px;
}

.mgr15-important {
  margin-right: 15px !important;
}

.mgr20 {
  margin-right: 20px;
}

.mgr20-important {
  margin-right: 20px !important;
}

.mgr25 {
  margin-right: 25px;
}

.mgr25-important {
  margin-right: 25px !important;
}

.mgr30 {
  margin-right: 30px;
}

.mgr30-important {
  margin-right: 30px !important;
}

.mgr35 {
  margin-right: 35px;
}

.mgr35-important {
  margin-right: 35px !important;
}

.mgr40 {
  margin-right: 40px;
}

.mgr40-important {
  margin-right: 40px !important;
}

.mgr45 {
  margin-right: 45px;
}

.mgr45-important {
  margin-right: 45px !important;
}

.mgr50 {
  margin-right: 50px;
}

.mgr50-important {
  margin-right: 50px !important;
}

.mgr-5 {
  margin-right: -5px;
}

.mgr-5-important {
  margin-right: -5px !important;
}

.mgr-4 {
  margin-right: -4px;
}

.mgr-4-important {
  margin-right: -4px !important;
}

.mgr-3 {
  margin-right: -3px;
}

.mgr-3-important {
  margin-right: -3px !important;
}

.mgr-2 {
  margin-right: -2px;
}

.mgr-2-important {
  margin-right: -2px !important;
}

.mgr-1 {
  margin-right: -1px;
}

.mgr-1-important {
  margin-right: -1px !important;
}

.mgr-grid {
  margin-right: 30px;
}

.mgb1 {
  margin-bottom: 1px;
}

.mgb1-important {
  margin-bottom: 1px !important;
}

.mgb2 {
  margin-bottom: 2px;
}

.mgb2-important {
  margin-bottom: 2px !important;
}

.mgb3 {
  margin-bottom: 3px;
}

.mgb3-important {
  margin-bottom: 3px !important;
}

.mgb4 {
  margin-bottom: 4px;
}

.mgb4-important {
  margin-bottom: 4px !important;
}

.mgb0 {
  margin-bottom: 0px;
}

.mgb0-important {
  margin-bottom: 0px !important;
}

.mgb5 {
  margin-bottom: 5px;
}

.mgb5-important {
  margin-bottom: 5px !important;
}

.mgb10 {
  margin-bottom: 10px;
}

.mgb10-important {
  margin-bottom: 10px !important;
}

.mgb15 {
  margin-bottom: 15px;
}

.mgb15-important {
  margin-bottom: 15px !important;
}

.mgb20 {
  margin-bottom: 20px;
}

.mgb20-important {
  margin-bottom: 20px !important;
}

.mgb25 {
  margin-bottom: 25px;
}

.mgb25-important {
  margin-bottom: 25px !important;
}

.mgb30 {
  margin-bottom: 30px;
}

.mgb30-important {
  margin-bottom: 30px !important;
}

.mgb35 {
  margin-bottom: 35px;
}

.mgb35-important {
  margin-bottom: 35px !important;
}

.mgb40 {
  margin-bottom: 40px;
}

.mgb40-important {
  margin-bottom: 40px !important;
}

.mgb45 {
  margin-bottom: 45px;
}

.mgb45-important {
  margin-bottom: 45px !important;
}

.mgb50 {
  margin-bottom: 50px;
}

.mgb50-important {
  margin-bottom: 50px !important;
}

.mgb-5 {
  margin-bottom: -5px;
}

.mgb-5-important {
  margin-bottom: -5px !important;
}

.mgb-4 {
  margin-bottom: -4px;
}

.mgb-4-important {
  margin-bottom: -4px !important;
}

.mgb-3 {
  margin-bottom: -3px;
}

.mgb-3-important {
  margin-bottom: -3px !important;
}

.mgb-2 {
  margin-bottom: -2px;
}

.mgb-2-important {
  margin-bottom: -2px !important;
}

.mgb-1 {
  margin-bottom: -1px;
}

.mgb-1-important {
  margin-bottom: -1px !important;
}

.mgb-grid {
  margin-bottom: 30px;
}

.pd1 {
  padding: 1px;
}

.pd1-important {
  padding: 1px !important;
}

.pd2 {
  padding: 2px;
}

.pd2-important {
  padding: 2px !important;
}

.pd3 {
  padding: 3px;
}

.pd3-important {
  padding: 3px !important;
}

.pd4 {
  padding: 4px;
}

.pd4-important {
  padding: 4px !important;
}

.pd0 {
  padding: 0px;
}

.pd0-important {
  padding: 0px !important;
}

.pd5 {
  padding: 5px;
}

.pd5-important {
  padding: 5px !important;
}

.pd10 {
  padding: 10px;
}

.pd10-important {
  padding: 10px !important;
}

.pd15 {
  padding: 15px;
}

.pd15-important {
  padding: 15px !important;
}

.pd20 {
  padding: 20px;
}

.pd20-important {
  padding: 20px !important;
}

.pd25 {
  padding: 25px;
}

.pd25-important {
  padding: 25px !important;
}

.pd30 {
  padding: 30px;
}

.pd30-important {
  padding: 30px !important;
}

.pd35 {
  padding: 35px;
}

.pd35-important {
  padding: 35px !important;
}

.pd40 {
  padding: 40px;
}

.pd40-important {
  padding: 40px !important;
}

.pd45 {
  padding: 45px;
}

.pd45-important {
  padding: 45px !important;
}

.pd50 {
  padding: 50px;
}

.pd50-important {
  padding: 50px !important;
}

.pd-grid {
  padding: 30px;
}

.pdt1 {
  padding-top: 1px;
}

.pdt1-important {
  padding-top: 1px !important;
}

.pdt2 {
  padding-top: 2px;
}

.pdt2-important {
  padding-top: 2px !important;
}

.pdt3 {
  padding-top: 3px;
}

.pdt3-important {
  padding-top: 3px !important;
}

.pdt4 {
  padding-top: 4px;
}

.pdt4-important {
  padding-top: 4px !important;
}

.pdt0 {
  padding-top: 0px;
}

.pdt0-important {
  padding-top: 0px !important;
}

.pdt5 {
  padding-top: 5px;
}

.pdt5-important {
  padding-top: 5px !important;
}

.pdt10 {
  padding-top: 10px;
}

.pdt10-important {
  padding-top: 10px !important;
}

.pdt15 {
  padding-top: 15px;
}

.pdt15-important {
  padding-top: 15px !important;
}

.pdt20 {
  padding-top: 20px;
}

.pdt20-important {
  padding-top: 20px !important;
}

.pdt25 {
  padding-top: 25px;
}

.pdt25-important {
  padding-top: 25px !important;
}

.pdt30 {
  padding-top: 30px;
}

.pdt30-important {
  padding-top: 30px !important;
}

.pdt35 {
  padding-top: 35px;
}

.pdt35-important {
  padding-top: 35px !important;
}

.pdt40 {
  padding-top: 40px;
}

.pdt40-important {
  padding-top: 40px !important;
}

.pdt45 {
  padding-top: 45px;
}

.pdt45-important {
  padding-top: 45px !important;
}

.pdt50 {
  padding-top: 50px;
}

.pdt50-important {
  padding-top: 50px !important;
}

.pdt-grid {
  padding-top: 30px;
}

.pdl1 {
  padding-left: 1px;
}

.pdl1-important {
  padding-left: 1px !important;
}

.pdl2 {
  padding-left: 2px;
}

.pdl2-important {
  padding-left: 2px !important;
}

.pdl3 {
  padding-left: 3px;
}

.pdl3-important {
  padding-left: 3px !important;
}

.pdl4 {
  padding-left: 4px;
}

.pdl4-important {
  padding-left: 4px !important;
}

.pdl0 {
  padding-left: 0px;
}

.pdl0-important {
  padding-left: 0px !important;
}

.pdl5 {
  padding-left: 5px;
}

.pdl5-important {
  padding-left: 5px !important;
}

.pdl10 {
  padding-left: 10px;
}

.pdl10-important {
  padding-left: 10px !important;
}

.pdl15 {
  padding-left: 15px;
}

.pdl15-important {
  padding-left: 15px !important;
}

.pdl20 {
  padding-left: 20px;
}

.pdl20-important {
  padding-left: 20px !important;
}

.pdl25 {
  padding-left: 25px;
}

.pdl25-important {
  padding-left: 25px !important;
}

.pdl30 {
  padding-left: 30px;
}

.pdl30-important {
  padding-left: 30px !important;
}

.pdl35 {
  padding-left: 35px;
}

.pdl35-important {
  padding-left: 35px !important;
}

.pdl40 {
  padding-left: 40px;
}

.pdl40-important {
  padding-left: 40px !important;
}

.pdl45 {
  padding-left: 45px;
}

.pdl45-important {
  padding-left: 45px !important;
}

.pdl50 {
  padding-left: 50px;
}

.pdl50-important {
  padding-left: 50px !important;
}

.pdl-grid {
  padding-left: 30px;
}

.pdr1 {
  padding-right: 1px;
}

.pdr1-important {
  padding-right: 1px !important;
}

.pdr2 {
  padding-right: 2px;
}

.pdr2-important {
  padding-right: 2px !important;
}

.pdr3 {
  padding-right: 3px;
}

.pdr3-important {
  padding-right: 3px !important;
}

.pdr4 {
  padding-right: 4px;
}

.pdr4-important {
  padding-right: 4px !important;
}

.pdr0 {
  padding-right: 0px;
}

.pdr0-important {
  padding-right: 0px !important;
}

.pdr5 {
  padding-right: 5px;
}

.pdr5-important {
  padding-right: 5px !important;
}

.pdr10 {
  padding-right: 10px;
}

.pdr10-important {
  padding-right: 10px !important;
}

.pdr15 {
  padding-right: 15px;
}

.pdr15-important {
  padding-right: 15px !important;
}

.pdr20 {
  padding-right: 20px;
}

.pdr20-important {
  padding-right: 20px !important;
}

.pdr25 {
  padding-right: 25px;
}

.pdr25-important {
  padding-right: 25px !important;
}

.pdr30 {
  padding-right: 30px;
}

.pdr30-important {
  padding-right: 30px !important;
}

.pdr35 {
  padding-right: 35px;
}

.pdr35-important {
  padding-right: 35px !important;
}

.pdr40 {
  padding-right: 40px;
}

.pdr40-important {
  padding-right: 40px !important;
}

.pdr45 {
  padding-right: 45px;
}

.pdr45-important {
  padding-right: 45px !important;
}

.pdr50 {
  padding-right: 50px;
}

.pdr50-important {
  padding-right: 50px !important;
}

.pdr-grid {
  padding-right: 30px;
}

.pdb1 {
  padding-bottom: 1px;
}

.pdb1-important {
  padding-bottom: 1px !important;
}

.pdb2 {
  padding-bottom: 2px;
}

.pdb2-important {
  padding-bottom: 2px !important;
}

.pdb3 {
  padding-bottom: 3px;
}

.pdb3-important {
  padding-bottom: 3px !important;
}

.pdb4 {
  padding-bottom: 4px;
}

.pdb4-important {
  padding-bottom: 4px !important;
}

.pdb0 {
  padding-bottom: 0px;
}

.pdb0-important {
  padding-bottom: 0px !important;
}

.pdb5 {
  padding-bottom: 5px;
}

.pdb5-important {
  padding-bottom: 5px !important;
}

.pdb10 {
  padding-bottom: 10px;
}

.pdb10-important {
  padding-bottom: 10px !important;
}

.pdb15 {
  padding-bottom: 15px;
}

.pdb15-important {
  padding-bottom: 15px !important;
}

.pdb20 {
  padding-bottom: 20px;
}

.pdb20-important {
  padding-bottom: 20px !important;
}

.pdb25 {
  padding-bottom: 25px;
}

.pdb25-important {
  padding-bottom: 25px !important;
}

.pdb30 {
  padding-bottom: 30px;
}

.pdb30-important {
  padding-bottom: 30px !important;
}

.pdb35 {
  padding-bottom: 35px;
}

.pdb35-important {
  padding-bottom: 35px !important;
}

.pdb40 {
  padding-bottom: 40px;
}

.pdb40-important {
  padding-bottom: 40px !important;
}

.pdb45 {
  padding-bottom: 45px;
}

.pdb45-important {
  padding-bottom: 45px !important;
}

.pdb50 {
  padding-bottom: 50px;
}

.pdb50-important {
  padding-bottom: 50px !important;
}

.pdb-grid {
  padding-bottom: 30px;
}

/***********************************************************************************************************************
 * font size
 * from 11px ~ 50px
 ***********************************************************************************************************************/
.font-size-lg {
  font-size: 18px;
}

.font-size-md {
  font-size: 14px;
}

.font-size-sm {
  font-size: 12px;
}

.font-size-xs {
  font-size: 11px;
}

.font-size-11 {
  font-size: 11px;
}

.font-size-11-important {
  font-size: 11px !important;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-12-important {
  font-size: 12px !important;
}

.font-size-13 {
  font-size: 13px;
}

.font-size-13-important {
  font-size: 13px !important;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-14-important {
  font-size: 14px !important;
}

.font-size-15 {
  font-size: 15px;
}

.font-size-15-important {
  font-size: 15px !important;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-16-important {
  font-size: 16px !important;
}

.font-size-17 {
  font-size: 17px;
}

.font-size-17-important {
  font-size: 17px !important;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-18-important {
  font-size: 18px !important;
}

.font-size-19 {
  font-size: 19px;
}

.font-size-19-important {
  font-size: 19px !important;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-20-important {
  font-size: 20px !important;
}

.font-size-21 {
  font-size: 21px;
}

.font-size-21-important {
  font-size: 21px !important;
}

.font-size-22 {
  font-size: 22px;
}

.font-size-22-important {
  font-size: 22px !important;
}

.font-size-23 {
  font-size: 23px;
}

.font-size-23-important {
  font-size: 23px !important;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-24-important {
  font-size: 24px !important;
}

.font-size-25 {
  font-size: 25px;
}

.font-size-25-important {
  font-size: 25px !important;
}

.font-size-26 {
  font-size: 26px;
}

.font-size-26-important {
  font-size: 26px !important;
}

.font-size-27 {
  font-size: 27px;
}

.font-size-27-important {
  font-size: 27px !important;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-28-important {
  font-size: 28px !important;
}

.font-size-29 {
  font-size: 29px;
}

.font-size-29-important {
  font-size: 29px !important;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-30-important {
  font-size: 30px !important;
}

.font-size-31 {
  font-size: 31px;
}

.font-size-31-important {
  font-size: 31px !important;
}

.font-size-32 {
  font-size: 32px;
}

.font-size-32-important {
  font-size: 32px !important;
}

.font-size-33 {
  font-size: 33px;
}

.font-size-33-important {
  font-size: 33px !important;
}

.font-size-34 {
  font-size: 34px;
}

.font-size-34-important {
  font-size: 34px !important;
}

.font-size-35 {
  font-size: 35px;
}

.font-size-35-important {
  font-size: 35px !important;
}

.font-size-36 {
  font-size: 36px;
}

.font-size-36-important {
  font-size: 36px !important;
}

.font-size-37 {
  font-size: 37px;
}

.font-size-37-important {
  font-size: 37px !important;
}

.font-size-38 {
  font-size: 38px;
}

.font-size-38-important {
  font-size: 38px !important;
}

.font-size-39 {
  font-size: 39px;
}

.font-size-39-important {
  font-size: 39px !important;
}

.font-size-40 {
  font-size: 40px;
}

.font-size-40-important {
  font-size: 40px !important;
}

.font-size-41 {
  font-size: 41px;
}

.font-size-41-important {
  font-size: 41px !important;
}

.font-size-42 {
  font-size: 42px;
}

.font-size-42-important {
  font-size: 42px !important;
}

.font-size-43 {
  font-size: 43px;
}

.font-size-43-important {
  font-size: 43px !important;
}

.font-size-44 {
  font-size: 44px;
}

.font-size-44-important {
  font-size: 44px !important;
}

.font-size-45 {
  font-size: 45px;
}

.font-size-45-important {
  font-size: 45px !important;
}

.font-size-46 {
  font-size: 46px;
}

.font-size-46-important {
  font-size: 46px !important;
}

.font-size-47 {
  font-size: 47px;
}

.font-size-47-important {
  font-size: 47px !important;
}

.font-size-48 {
  font-size: 48px;
}

.font-size-48-important {
  font-size: 48px !important;
}

.font-size-49 {
  font-size: 49px;
}

.font-size-49-important {
  font-size: 49px !important;
}

.font-size-50 {
  font-size: 50px;
}

.font-size-50-important {
  font-size: 50px !important;
}

.font-size-51 {
  font-size: 51px;
}

.font-size-51-important {
  font-size: 51px !important;
}

.font-size-52 {
  font-size: 52px;
}

.font-size-52-important {
  font-size: 52px !important;
}

.font-size-53 {
  font-size: 53px;
}

.font-size-53-important {
  font-size: 53px !important;
}

.font-size-54 {
  font-size: 54px;
}

.font-size-54-important {
  font-size: 54px !important;
}

.font-size-55 {
  font-size: 55px;
}

.font-size-55-important {
  font-size: 55px !important;
}

.font-size-56 {
  font-size: 56px;
}

.font-size-56-important {
  font-size: 56px !important;
}

.font-size-57 {
  font-size: 57px;
}

.font-size-57-important {
  font-size: 57px !important;
}

.font-size-58 {
  font-size: 58px;
}

.font-size-58-important {
  font-size: 58px !important;
}

.font-size-59 {
  font-size: 59px;
}

.font-size-59-important {
  font-size: 59px !important;
}

.font-size-60 {
  font-size: 60px;
}

.font-size-60-important {
  font-size: 60px !important;
}

/***********************************************************************************************************************
 * font upper or lower case
 ***********************************************************************************************************************/
.text-transform-none {
  text-transform: none;
}

.text-transform-none-important {
  text-transform: none !important;
}

.text-transform-cap {
  text-transform: capitalize;
}

.text-transform-cap-important {
  text-transform: capitalize !important;
}

.text-transform-upper {
  text-transform: uppercase;
}

.text-transform-upper-important {
  text-transform: uppercase !important;
}

.text-transform-lower {
  text-transform: lowercase;
}

.text-transform-lower-important {
  text-transform: lowercase !important;
}

.text-transform-full-width {
  text-transform: full-width;
}

.text-transform-full-width-important {
  text-transform: full-width !important;
}

.text-transform-full-size {
  text-transform: full-size-kana;
}

.text-transform-full-size-important {
  text-transform: full-size-kana !important;
}

/***********************************************************************************************************************
 * border
 ***********************************************************************************************************************/
.bd0 {
  border: none !important;
}

.bdt0 {
  border-top: none !important;
}

.bdr0 {
  border-right: none !important;
}

.bdb0 {
  border-bottom: none !important;
}

.bdl0 {
  border-left: none !important;
}

.bd1 {
  border: solid 1px #e0e5e8 !important;
}

.bdt1 {
  border-top: solid 1px #e0e5e8 !important;
}

.bdr1 {
  border-right: solid 1px #e0e5e8 !important;
}

.bdb1 {
  border-bottom: solid 1px #e0e5e8 !important;
}

.bdl1 {
  border-left: solid 1px #e0e5e8 !important;
}

/***********************************************************************************************************************
 * :after clear:both
 ***********************************************************************************************************************/
.form-control span {
  color: #a94442;
}

.dropdown.btn_input {
  width: 100%;
}
.dropdown:after {
  content: "";
  display: block;
  clear: both;
}
.dropdown .btn, .dropdown input {
  border-radius: 0;
  outline: none;
  float: left;
}
.dropdown .btn:hover, .dropdown .btn:focus, .dropdown input:hover, .dropdown input:focus {
  outline: none;
  box-shadow: none;
}
.dropdown .btn {
  width: 65px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-right: none;
  height: 36px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.dropdown .btn span {
  font-size: 10px;
  margin-left: 5px;
}
.dropdown input {
  width: calc(100% - 65px);
  padding: 6px 12px;
  box-shadow: none;
  height: 36px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.dropdown .img_box {
  width: 25px;
}
.dropdown .img_box img {
  width: 100%;
}
.dropdown .dropdown-menu {
  width: 100%;
  padding: 6px 12px;
  margin-top: 0;
  box-shadow: none;
  height: auto;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  border-top: none;
}
.dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.dropdown .dropdown-menu .dropdown-item p {
  margin: 0 0 0 10px;
}
.dropdown .dropdown-menu .dropdown-item p span {
  color: #afafaf;
  margin-left: 10px;
}

.button_wrap button {
  width: 150px;
  color: #FFF;
  background-color: #2e7ad8;
  border-color: #256ec7;
  padding: 6px 10px;
  height: 35px;
}

.has-error .dropdown {
  border: 1px solid #a94442;
  border-radius: 4px;
}

.help-block {
  color: #a94442;
}

@media (max-width: 991px) {
  .button_wrap {
    margin-top: 10px;
  }
}