@charset "UTF-8";

/* ---------------------------------------------------------
 * modules.css
 * --------------------------------------------------------- */

/* -------------------- rollover -------------------- */

.rollover {
  cursor: pointer;
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.rollover:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);        /* ie 6 7 */
  -ms-filter: "alpha(opacity=70)";  /* ie 8 */
}

.rolloverjs {
  cursor: pointer;
}

.is_display {
  display: block !important;
}

/* -------------------- box style -------------------- */
.hidden { display: none !important; }
.w100{width: 100% !important;}
.w90{width: 90% !important;}
.w80{width: 80% !important;}
.w70{width: 70% !important;}
.w60{width: 60% !important;}
.w50{width: 50% !important;}
.w25{width: 25% !important;}
.w20{width: 20% !important;}
.w10{width: 10% !important;}

/* clearfix */
.clearfix { display: inline-table; }
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* IE5.5～IE7 */
.clearfix{
  zoom:1;
}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */

.word_break {
  word-break: break-all;
  word-wrap: break-word;
}
.clear   { clear: both; }
.float_l { float: left; }
.float_r { float: right; }


/* -------------------- font style -------------------- */
.align_c     { text-align: center; }
.align_l     { text-align: left; }
.align_r     { text-align: right; }
.text_underline { text-decoration: underline; }
.text_line-through { text-decoration: line-through; }
.font_bold      { font-weight: bold; }
.font_normal    { font-weight: normal; }

.color_black    { color: #000000; }
.color_white    { color: #ffffff; }
.color_red      { color: #cc0000; }
.color_blue     {color:#1a73e8;}
.color_blue_2     {color:#0055b5;}
.color_gray     {color:#999;}
.bg_gray     {background-color:#eee;}
.bg_blue     {background-color:#e5ecf9 !important;}

.font_size_11 { font-size: 11px; }
.font_size_12 { font-size: 12px; }
.font_size_14 { font-size: 14px; }
.font_size_16 { font-size: 16px; }
.font_size_18 { font-size: 18px; }
.font_size_20 { font-size: 20px; }

.line_h_32 { line-height: 32px; }

.required {
  background-color: #cc0000;
  color: #fff;
  padding: 2px 4px;
  font-size: 10px;
  border-radius: 4px;
}


/* -------------------- line_clamp -------------------- */
.line_clamp_1 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line_clamp_2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


/* -------------------- cursor -------------------- */
.cursor_move:hover {
  cursor: move;
}
.zoom_in:hover {
  cursor: zoom-in;
}

/* -------------------- tippy -------------------- */
img.tippy_img {
  width: 26px;
  vertical-align: middle;
}
img.tippy_img:hover {
  cursor: pointer;
  opacity: 0.7;
}

.tippy-tooltip.ue-theme{
  color:#d70d0d;
  box-shadow: 0 0 10px 5px #ccc;
  background-color:#fff;
  text-align: left;
}
.tippy-tooltip.ue-theme ul{
  list-style-type: disc;
  margin-left: 10px;
}
.tippy-tooltip.ue-theme[data-placement^=top]>.tippy-arrow{
  border-width:8px 8px 0;
  border-top-color:#fff;
}
.tippy-tooltip.ue-theme[data-placement^=bottom]>.tippy-arrow{
  border-width:0 8px 8px;
  border-bottom-color:#fff;
}
.tippy-tooltip.ue-theme[data-placement^=left]>.tippy-arrow{
  border-width:8px 0 8px 8px;
  border-left-color:#fff;
}
.tippy-tooltip.ue-theme[data-placement^=right]>.tippy-arrow{
  border-width:8px 8px 8px 0;
  border-right-color:#fff;
}
.tippy-tooltip.ue-theme>.tippy-backdrop{
  background-color:#fff;
}
.tippy-tooltip.ue-theme>.tippy-svg-arrow{
  fill:#fff;
}


/* -------------------- tooltip -------------------- */
a.tooltip {
  color: #333;
}
a.tooltip:hover {
  text-decoration: none;
}
a.tooltip span {
  display: none;
  padding: 8px;
  font-size: 12px;
  margin-left: 8px;
  line-height: 1.6;
}
a.tooltip:hover span{
  display: inline;
  position: absolute;
  background-color: #FFF7EE;
  border: 1px solid #cccccc;
  color: #000000;
}


/* -------------------- ul -------------------- */
.ul_disc {
  list-style-type: disc !important;
  margin-left: 12px;
}


/* -------------------- display -------------------- */
.table{
  display: table;
  height: 100%;
}
.cell{
  display: table-cell;
  vertical-align: middle;
}


/* -------------------- flex -------------------- */
.flex_between {
  display: flex;
  justify-content: space-between; /* 両端揃え均等配置 */
  flex-wrap: wrap; /* 折り返す */
}
.v_align_top { /* 上揃え */
  -webkit-align-items: flex-start;
       -ms-flex-align: start;
          align-items: flex-start;
}
.v_align_center { /* 中央揃え */
  -webkit-align-items: center;
       -ms-flex-align: center;
          align-items: center;
}
.v_align_bottom { /* 下揃え */
  -webkit-align-items: flex-end;
       -ms-flex-align: end;
          align-items: flex-end;
}
.flex_between.col2 > *{
  width: 49.6%;
}
.flex_between.col3 > *{
  width: 33.3%;
}
.flex.col4 > *{
  width: 23.07%;
}
.flex.col5 > *{
  width: 20.00%;
}
.flex.col6 > *{
  width: 16.6%;
}

.flex_end {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.flex_start {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.flex_start div.checkbox {
  margin-right: 16px !important;
}
.flex_start.col2 > *{
  width: 49.6%;
}
.flex_start.col3 > *{
  width: 33.3%;
}
.flex_start.col4 > *{
  width: 25.0%;
}
.flex_start.col5 > *{
  width: 20.0%;
}
.flex_start.col6 > *{
  width: 16.6%;
}
.flex_start.col7 > *{
  width: 14.2%;
}
.flex_start.col8 > *{
  width: 12.5%;
}

.flex_between.ch_short div.checkbox {
  margin-right: 4px !important;
}


/* -------------------- .more -------------------- */
.more {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.more.row1 {
  -webkit-line-clamp: 1;
}
.more.row2 {
  -webkit-line-clamp: 2;
}




/* -------------------- 大見出し headline -------------------- */
.headline_1 {
  background-color: #ececec;
  border-top: 4px solid #333;
  font-weight: bold;
  font-size: 18px;
  padding: 8px;
  margin-bottom: 30px;
}
.headline_2 {
  background-color: #ececec;
  border-left: 4px solid #333;
  font-weight: bold;
  font-size: 16px;
  padding: 6px;
  margin-bottom: 20px;
}

/* -------------------- 中見出し headline -------------------- */
.arrow{
  position: relative;
  color: #333;
  /*display: inline-block;*/
  padding: 0 0 0 16px;
  vertical-align: middle;
  text-decoration: none;
}
.arrow::before,
.arrow::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow::before {
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #333;
}
.arrow::after {
  left: 5px;
  box-sizing: border-box;
  width: 3px;
  height: 3px;
  border: 3px solid transparent;
  border-left: 3px solid #fff;
}

.headline_m_1 {
  font-size: 16px;
}

.headline_m_2 {
  padding: 14px;
  background: #ffffff;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  border-top: 5px solid #ccc;
}
.headline_m_2.pd00 {
  padding: 0;
  font-size: 12px;
}
.headline_m_2:before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 20%;
  height: 5px;
  content: '';
  background: #34495e;
}
ul.bread-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
ul.bread-title li {
  font-weight: bold;
  font-size: 12px;
}
ul.bread-title li:not(:last-child):after {
  content: '>';
  margin: 0 10px;
  font-weight: normal;
  font-size: 12px;
}

.arrow.border_bottom {
  border-bottom: 2px solid #ccc;
  padding: 8px 0 8px 16px;
}



/* -------------------- flash_message -------------------- */
.flash_message {
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 10px 4px;
  margin-bottom: 20px;
  padding: 10px 10px 10px 10px;
  text-align: left;
}

.flash_message.error {
  /*background-image: url(../img/common/msg_icon1.jpg);*/
  background-color: #f9e5e6;
  border: 1px solid #e8aaad;
  color: #b50007;
}

.flash_message.success {
  /*background-image: url(../img/common/msg_icon3.jpg);*/
  background-color: #e5ecf9;
  border: 1px solid #aac6e8;
  color: #0055b5;
}

.flash_message.info {
  /*background-image: url(../img/common/msg_icon4.jpg);*/
  background-color: #e9f9e5;
  border: 1px solid #b4e8aa;
  color: #1c8400;
}

.flash_message.notice {
  /*background-image: url(../img/common/msg_icon2.jpg);*/
  background-color: #f9f9e5;
  border: 1px solid #e8e3aa;
  color: #828400;
}

.error-message {
  background-image: url(../img/admin/s_icon1.png);
  color: #b50007;
  margin: 10px 0 0 0;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  padding: 0px 0 0px 20px;
  min-height: 16px;
  line-height: 16px;
  text-align: left;
}




/* -------------------- space -------------------- */

/* margin */
.mt00 {margin-top: 0 !important;}
.mt02 {margin-top: 2px !important;}
.mt04 {margin-top: 4px !important;}
.mt06 {margin-top: 6px !important;}
.mt08 {margin-top: 8px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt21 {margin-top: 21px !important;}
.mt23 {margin-top: 23px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mt75 {margin-top: 75px !important;}
.mt80 {margin-top: 80px !important;}
.mt90 {margin-top: 90px !important;}
.mt100 {margin-top: 100px !important;}

.mb00 {margin-bottom: 0 !important;}
.mb01 {margin-bottom: 1px !important;}
.mb02 {margin-bottom: 2px !important;}
.mb03 {margin-bottom: 3px !important;}
.mb04 {margin-bottom: 4px !important;}
.mb05 {margin-bottom: 5px !important;}
.mb06 {margin-bottom: 6px !important;}
.mb07 {margin-bottom: 7px !important;}
.mb08 {margin-bottom: 8px !important;}
.mb09 {margin-bottom: 9px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb27 {margin-bottom: 27px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb35 {margin-bottom: 35px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb75 {margin-bottom: 75px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb90 {margin-bottom: 90px !important;}
.mb100 {margin-bottom: 100px !important;}

.ml00 {margin-left: 0 !important;}
.ml05 {margin-left: 5px !important;}
.ml06 {margin-left: 6px !important;}
.ml07 {margin-left: 7px !important;}
.ml10 {margin-left: 10px !important;}
.ml15 {margin-left: 15px !important;}
.ml17 {margin-left: 17px !important;}
.ml20 {margin-left: 20px !important;}
.ml23 {margin-left: 23px !important;}
.ml25 {margin-left: 25px !important;}
.ml30 {margin-left: 30px !important;}
.ml40 {margin-left: 40px !important;}
.ml50 {margin-left: 50px !important;}

.mr00 {margin-right: 0 !important;}
.mr01 {margin-right: 1px !important;}
.mr02 {margin-right: 2px !important;}
.mr03 {margin-right: 3px !important;}
.mr04 {margin-right: 4px !important;}
.mr05 {margin-right: 5px !important;}
.mr06 {margin-right: 6px !important;}
.mr07 {margin-right: 7px !important;}
.mr08 {margin-right: 8px !important;}
.mr09 {margin-right: 9px !important;}
.mr10 {margin-right: 10px !important;}
.mr15 {margin-right: 15px !important;}
.mr16 {margin-right: 16px !important;}
.mr17 {margin-right: 17px !important;}
.mr18 {margin-right: 18px !important;}
.mr19 {margin-right: 19px !important;}
.mr20 {margin-right: 20px !important;}
.mr21 {margin-right: 21px !important;}
.mr22 {margin-right: 22px !important;}
.mr23 {margin-right: 23px !important;}
.mr24 {margin-right: 24px !important;}
.mr25 {margin-right: 25px !important;}
.mr30 {margin-right: 30px !important;}
.mr40 {margin-right: 40px !important;}
.mr50 {margin-right: 50px !important;}

/* padding */
.pt00 {padding-top: 0 !important;}
.pt01 {padding-top: 1px !important;}
.pt02 {padding-top: 2px !important;}
.pt03 {padding-top: 3px !important;}
.pt04 {padding-top: 4px !important;}
.pt05 {padding-top: 5px !important;}
.pt06 {padding-top: 6px !important;}
.pt08 {padding-top: 8px !important;}
.pt10 {padding-top: 10px !important;}
.pt15 {padding-top: 15px !important;}
.pt20 {padding-top: 20px !important;}
.pt25 {padding-top: 25px !important;}
.pt30 {padding-top: 30px !important;}
.pt35 {padding-top: 35px !important;}
.pt40 {padding-top: 40px !important;}
.pt45 {padding-top: 45px !important;}
.pt50 {padding-top: 50px !important;}
.pt55 {padding-top: 55px !important;}
.pt60 {padding-top: 60px !important;}
.pt65 {padding-top: 65px !important;}
.pt70 {padding-top: 70px !important;}
.pt75 {padding-top: 75px !important;}
.pt80 {padding-top: 80px !important;}
.pt85 {padding-top: 85px !important;}
.pt90 {padding-top: 90px !important;}
.pt95 {padding-top: 95px !important;}
.pt100 {padding-top: 100px !important;}

.pb00 {padding-bottom: 0 !important;}
.pb05 {padding-bottom: 5px !important;}
.pb06 {padding-bottom: 6px !important;}
.pb08 {padding-bottom: 8px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb15 {padding-bottom: 15px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb25 {padding-bottom: 25px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb50 {padding-bottom: 50px !important;}

.pl00 {padding-left: 0 !important;}
.pl05 {padding-left: 5px !important;}
.pl10 {padding-left: 10px !important;}
.pl15 {padding-left: 15px !important;}
.pl20 {padding-left: 20px !important;}
.pl25 {padding-left: 25px !important;}
.pl30 {padding-left: 30px !important;}
.pl40 {padding-left: 40px !important;}
.pl45 {padding-left: 45px !important;}

.pr00 {padding-right: 0 !important;}
.pr05 {padding-right: 5px !important;}
.pr10 {padding-right: 10px !important;}
.pr15 {padding-right: 15px !important;}
.pr20 {padding-right: 20px !important;}
.pr25 {padding-right: 25px !important;}
.pr30 {padding-right: 30px !important;}
.pr40 {padding-right: 40px !important;}
.pr45 {padding-right: 45px !important;}


.table_list.pd00 td {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fuwatto_btn {
  display: inline-block;
  width: 200px;
  padding: 12px;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;
}
.fuwatto_btn:hover{
   cursor: pointer;
   text-decoration: none;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
}
.fuwatto_btn_black {
  background-color: #000;
  color: #fff;
}
.fuwatto_btn_white {
  background-color: #fff;
  color: #000;
}
.fuwatto_btn_yellow{
  background-color: #ffdb14;
  color: #333;
}
.fuwatto_btn_red{
  background-color: #d93025;
  color: #FFF;
}
.fuwatto_btn_blue{
  background-color: #1a73e8;
  color: #FFF;
}
.fuwatto_btn_green{
  background-color: #006400;
  color: #FFF;
}
.fuwatto_btn_gray{
  background-color: #EBEBEB;
  color: #000;
}



/* -------------------- button -------------------- */
.button {
  display: inline-block;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 2px solid transparent;
  border-color: #34495e;
  border-radius: 4px;
  width: 180px;
  height: 50px;
  line-height: 46px;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
  overflow: hidden;
}
.button-sm {
  display: inline-block;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 2px solid transparent;
  border-color: #34495e;
  border-radius: 4px;
  width: 150px;
  height: 40px;
  line-height: 36px;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
  overflow: hidden;
}
.button:hover,
.button-sm:hover {
  opacity: 0.7;
}

/* Button Black */
.button-black {
  background-color: #34495e;
  color: #fff;
}


/* Button White */
.button-white {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}

/* Button Red */
.button-red {
  border: 2px solid #d9534f;
  background-color: #d9534f;
  color: #fff;
}


/* Button Add */
.button-add {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}
.button-add span {
  background-image: url('../img/admin/icon_plus.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}

/* Button Html */
.button-html {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}
.button-html span {
  background-image: url('../img/admin/icon_html.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}

/* Button Html */
.button-translate {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}
/* .button-translate span {
  background-image: url('../img/admin/icon_translate.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
} */

/* Button Back */
.button-back {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}
.button-back span {
  background-image: url('../img/admin/icon_back.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}

/* Button Update */
.button-update {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}
.button-update span {
  background-image: url('../img/admin/icon_update.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}

/* Button Login */
.button-login {
  border: 2px solid #d9534f;
  background-color: #d9534f;
  color: #fff;
}
.button-login span {
  background-image: url('../img/admin/icon_header_logout.png');
  background-size: 20px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}

/* Button Delete */
.button-delete {
  border: 2px solid #d9534f;
  background-color: #d9534f;
  color: #fff;
}
.button-delete span {
  background-image: url('../img/admin/icon_delete.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}


/* Button Cancel */
.button-cancel {
  border: 2px solid #d58512;
  background-color: #ec971f;
  color: #fff;
  width: 200px;
}
.button-cancel span {
  background-image: url('../img/admin/icon_batsu.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}

/* Button Cancel Red*/
.button-cancel-red {
  border: 2px solid #d43f3a;
  background-color: #d9534f;
  color: #fff;
  width: 200px;
}
.button-cancel-red span {
  background-image: url('../img/admin/icon_batsu.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}

/* Button Unfair */
.button-unfair {
  border: 2px solid #d9534f;
  background-color: #d9534f;
  color: #fff;
}
.button-unfair span {
  background-image: url('../img/admin/icon_unfair.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}

/* Button Preview */
.button-preview {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}
.button-preview span {
  background-image: url('../img/admin/icon_preview.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}


/* Button Approved */
.button-approved {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}
.button-approved span {
  background-image: url('../img/admin/icon_check.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}


/* Button Dwonload */
.button-dl {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}
.button-dl span {
  background-image: url('../img/admin/icon_dl.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}


/* Button Ticket */
.button-ticket {
  border: 2px solid #34495e;
  background-color: #fff;
  color: #34495e;
}
.button-ticket span {
  background-image: url('../img/admin/icon_ticket.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}


/* Button Decide */
.button-decide {
  border: 2px solid #d9534f;
  background-color: #d9534f;
  color: #fff;
}
.button-decide span {
  background-image: url('../img/admin/icon_check.png');
  background-size: 24px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 10px 0 10px 36px;
}



/* -------------------- bootstrap btn -------------------- */
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
   -moz-user-select: none;
  -ms-user-select: none;
    user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.button-sm.disabled,
.button.disabled,
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
    box-shadow: none;
  opacity: .65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff !important;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff !important;
  background-color: #3071a9;
  border-color: #285e8e;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}
.btn-success {
  color: #fff !important;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  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:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff !important;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff !important;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #428bca;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.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: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}


.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 2px;
}
.btn-md,
.btn-group-md > .btn {
  padding: 5px 8px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}
.btn-sm,
.btn-group-sm > .btn {
  /*padding: 5px 10px;*/
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}

.btn-sm.icon-mail {
  padding: 4px 0;
  width: 42px;
  height: 28px;
  position: relative;
}
.btn-sm.icon-mail img {
  width: 18px;
}
.btn-sm.icon-mail span {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  font-size: 10px;
  background-color: #d93025;
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: 16px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}


