/*
  ComponentsCSS 2016.05.26
  @author t.fujimoto
 */

/**************************************************************************
*                                 Box
**************************************************************************/

/* Margin-Top */
.mTop10 {
  margin-top: 10px!important;
}
.mTop20 {
  margin-top: 20px!important;
}
.mTop30 {
  margin-top: 30px!important;
}
.mTop40 {
  margin-top: 40px!important;
}
.mTop50 {
  margin-top: 50px!important;
}
.mTop60 {
  margin-top: 60px!important;
}
.mTop70 {
  margin-top: 70px!important;
}
.mTop80 {
  margin-top: 80px!important;
}
.mTop90 {
  margin-top: 90px!important;
}
.mTop100 {
  margin-top: 100px!important;
}
/* Margin-Right */
.mRight10 {
  margin-right: 10px!important;
}
.mRight20 {
  margin-right: 20px!important;
}
.mRight30 {
  margin-right: 30px!important;
}
.mRight40 {
  margin-right: 40px!important;
}
.mRight50 {
  margin-right: 50px!important;
}
/* Margin-Bottom */
.mBottom10 {
  margin-bottom: 10px!important;
}
.mBottom20 {
  margin-bottom: 20px!important;
}
.mBottom30 {
  margin-bottom: 30px!important;
}
.mBottom40 {
  margin-bottom: 40px!important;
}
.mBottom50 {
  margin-bottom: 50px!important;
}
/* Margin-Left */
.mLeft10 {
  margin-left: 10px!important;
}
.mLeft20 {
  margin-left: 20px!important;
}
.mLeft30 {
  margin-left: 30px!important;
}
.mLeft40 {
  margin-left: 40px!important;
}
.mLeft50 {
  margin-left: 50px!important;
}

/* Padding-Top */
.pTop10 {
  padding-top: 10px!important;
}
.pTop20 {
  padding-top: 20px!important;
}
.pTop30 {
  padding-top: 30px!important;
}
.pTop40 {
  padding-top: 40px!important;
}
.pTop50 {
  padding-top: 50px!important;
}
/* Padding-Right */
.pRight10 {
  padding-right: 10px!important;
}
.pRight20 {
  padding-right: 20px!important;
}
.pRight30 {
  padding-right: 30px!important;
}
.pRight40 {
  padding-right: 40px!important;
}
.pRight50 {
  padding-right: 50px!important;
}
/* Padding-Bottom */
.pBottom10 {
  padding-bottom: 10px!important;
}
.pBottom20 {
  padding-bottom: 20px!important;
}
.pBottom30 {
  padding-bottom: 30px!important;
}
.pBottom40 {
  padding-bottom: 40px!important;
}
.pBottom50 {
  padding-bottom: 50px!important;
}
/* Padding-Left */
.pLeft10 {
  padding-left: 10px!important;
}
.pLeft20 {
  padding-left: 20px!important;
}
.pLeft30 {
  padding-left: 30px!important;
}
.pLeft40 {
  padding-left: 40px!important;
}
.pLeft50 {
  padding-left: 50px!important;
}

/**************************************************************************
*                                 State
**************************************************************************/

.hidden {
  display: none!important;
}

.select {
  display: block!important;
}

/**************************************************************************
*                                 Float
**************************************************************************/
.blockRight {
  display: block;
  float: right;
}
.blockLeft {
  display: block;
  float: left;
}
.blockCenter {
  display: block;
  margin: 0 auto;
}

/**************************************************************************
*                                 Button
**************************************************************************/

/* Element */
.btn {
    width:160px;
    height:40px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: "ClearTone SG Light";
    color: #FFF!important;
    background-color: #C0C0C0;
}
.btnA {
    display: inline-block;
    width:130px;
    height:20px;
    border-radius: 4px;
    border: none;
    cursor:pointer;
    padding: 10px;
    text-align:center;
    text-decoration: none;
    font-family: "ClearTone SG Light";
    color: #FFF;
}

/* Color */
.btnPrimary {
  background-color: #00B4FF!important;
}
.btnSuccess {
  background-color: #50C19A!important;
}
.btnDanger {
  background-color: #E23E57;
}
.btnWarning {
  background-color: #F6B61E!important;
}
.btnLove {
  background-color: #FF64A0!important;
}
.btnInfo {
  background-color: #00B4FF!important;
}
.btnMute {
  background-color: #E7E5E5!important;
  pointer-events: none;
  cursor: not-allowed;;
}
.btnClose {
  background-color: #BDC3C7!important;
}

/* Size */
.btnXs {
    width: 77px;
    height:30px;
}
.btnS {
    width:100px;
    height:30px;
}
.btnM {
    width:100px;
    height:30px;
}

.btnT {
  width: 100px;
  height: 22px;
}
.btnST {
  width: 75px;
  height: 22px;
  font-size:10px;
}

/* State */
.btn:hover {
    opacity: .8;
}
.btn:active {
    opacity: .9;
}
.btnA:hover {
    opacity: .8;
}
.btnA:active {
    opacity: .9;
}

/* Disabled */
.btn:disabled {
  background-color: #E7E5E5;
  cursor: not-allowed;;
  pointer-events: none;
}
.btn:hover:disabled {
    opacity: 1;
}
.btn:active:disabled {
    opacity: 1;
}
.btnMute:hover {
    opacity: 1;
    pointer-events: none;
    cursor: not-allowed;;
}
.btnMute:active {
    opacity: 1;
}

.newsButton {
  height: 25px;
  width: 100px;
  background-color: #00B4FF;
  color: #FFFFFF;
  text-align: center;
}

.fontlistButton {
  height: 25px;
  color: #22267B;
  text-align: center;
  margin: 5px 15px 5px 5px;
  padding: 4px;
  float: right;
  font-size: 14px;
}

/**************************************************************************
*                                 Text
**************************************************************************/
/* Color */
.textPrimary {
  color: #00B4FF;
}
.textSuccess {
  color: #50C19A;
}
.textDanger {
  color: #E23E57;
}
.textWarning {
  color: #F6B61E;
}
.textLove {
  color: #FF64A0;
}
.textMute {
  color: #D3D4D8;
}
.textHelp {
  color: #7E858B;
  font-family: "ClearTone SG Medium";
}

.textWhite {
    color: white!important;
    font-weight: bold!important;
    font-family: "ClearTone SG Medium";
}

/* Size */
.textXs {
  font-size:11px;
}
.textS {
  font-size:13px;
}
.textM {
  font-size:15px;
}

/* Align */
.textLeft {
  text-align: left;
}
.textCenter {
  text-align: center;
}
.textRight {
  text-align: right;
}

.textXs {
    font-size: 10px;
    font-family: "ClearTone SG Medium";
}
.textS {
    font-size: 13px;
    font-family: "ClearTone SG Medium";
}


/**************************************************************************
*                                 Plugin
**************************************************************************/

/*********************** Switch ***********************/
.onOffSwitch input {
    display: none;
}
.onOffSwitch label {
    font-size: 7px;
    font-weight: bold;
    cursor: pointer;
}

.onOffSwitch label:before {
    padding: 6px 10px;
    content: 'O N';
    border-radius: 6px 0 0 6px;
    background: linear-gradient(to bottom, #F0F0F0 0%, #DDD 100%);
    /*box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1) inset;*/
    color: #333;
}
.onOffSwitch label:after {
    padding: 6px 10px;
    content: 'OFF';
    border-radius: 0 6px 6px 0;
    background: #C30;
    color: #FFF;
}
.onOffSwitch input + label:hover:before {
    opacity: 0.5;
}
.onOffSwitch input:checked + label:before {
    background: #9C0;
    color: #FFF;
    opacity: 1;
}
.onOffSwitch input:checked + label:after {
    background: linear-gradient(to bottom, #F0F0F0 0%, #DDD 100%);
    color: #333;
}
.onOffSwitch input:checked + label:hover:after {
    opacity: 0.5;
}

/* Font */
.fontLight {
  font-family: "ClearTone SG Light";
}
.fontMedium {
  font-family: "ClearTone SG Medium";
}

/**************************************************************************
*                                 TypeSquareComponents
**************************************************************************/
.lightBlueBtn {
   display: block;
   margin-top: 10px;
   margin-bottom:30px;
   padding-left: 41px;
   width: 339px;
   height: 44px;
   color: #4c4c4c;
   font-family: "ClearTone SG Medium";
   font-size: 12px;
   line-height: 44px;
   text-decoration: none;
   background: #edfaff url(/images/tsone/arw_btn_02.png) 12px 50% no-repeat;
   -webkit-border-radius: 4px 4px;
   -moz-border-radius: 4px / 4px;
   border-radius: 4px / 4px; behavior: url(/css/PIE);
}

.lightBlueBtn:hover {
   display: block;
   margin-top: 10px;
   margin-bottom:30px;
   padding-left: 41px;
   width: 339px;
   height: 44px;
   color: #4c4c4c;
   font-family: "ClearTone SG Medium";
   font-size: 12px;
   line-height: 44px;
   text-decoration: none;
   background: #d9f4ff url(/images/tsone/arw_btn_02.png) 12px 50% no-repeat;
   -webkit-border-radius: 4px 4px;
   -moz-border-radius: 4px / 4px;
   border-radius: 4px / 4px; behavior: url(/css/PIE);
   transition-duration: 0.3s;
}


.lightGrayBox {
  width: 718px;
  border: solid 1px #ebebeb;
  -webkit-border-radius: 6px 6px;
  -moz-border-radius: 6px / 6px;
  border-radius: 6px / 6px;
  behavior: url(/css/PIE);
  background-color: #fafafa;
}
.lightGrayBox h1 {
  float: left;
  margin: 0;
  padding: 14px 0 14px 31px;
  width: 250px;
  color: #4d4d4d;
  font-family: "FB Miller Display Bold";
  font-size: 20px;
  line-height: 30px;
  background: url(/images/tsone/arw_heading_01.png) 14px 50% no-repeat;
}

.pinkBtn {
  height: 40px;
  width:200px;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff9bc2), color-stop(100%, #ff64a0));
  background-image: -webkit-linear-gradient(#ff9bc2, #ff64a0);
  background-image: -moz-linear-gradient(#ff9bc2, #ff64a0);
  background-image: -o-linear-gradient(#ff9bc2, #ff64a0);
  background-image: linear-gradient(#ff9bc2, #ff64a0);
  -pie-background: linear-gradient(#ff9bc2, #ff64a0);
  -webkit-border-radius: 4px 4px;
  -moz-border-radius: 4px / 4px;
  border-radius: 4px / 4px;
  behavior: url(/css/PIE);
}

.pinkBtn a {
  color: white;
  text-decoration: none;
  font-family: "ClearTone SG Medium";
  outline: none;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.pinkBtn:hover {
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff64a0), color-stop(100%, #ff64a0));
  background-image: -webkit-linear-gradient(#ff64a0, #ff64a0);
  background-image: -moz-linear-gradient(#ff64a0, #ff64a0);
  background-image: -o-linear-gradient(#ff64a0, #ff64a0);
  background-image: linear-gradient(#ff64a0, #ff64a0);
  -pie-background: linear-gradient(#ff64a0, #ff64a0);
}

.blueBtn {
  height: 40px;
  width:200px;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #75c7ff), color-stop(100%, #0095ff));
  background-image: -webkit-linear-gradient(#75c7ff, #0095ff);
  background-image: -moz-linear-gradient(#75c7ff, #0095ff);
  background-image: -o-linear-gradient(#75c7ff, #0095ff);
  background-image: linear-gradient(#75c7ff, #0095ff);
  -pie-background: linear-gradient(#75c7ff, #0095ff);
  -webkit-border-radius: 4px 4px;
  -moz-border-radius: 4px / 4px;
  border-radius: 4px / 4px;
  behavior: url(/css/PIE);
}

.blueBtn a {
  font-size: 13px;
  color: white;
  text-decoration: none;
  font-family: "ClearTone SG Medium";
  outline: none;
  display: inline-block;
  height: 100%;
  width: 100%;
  text-align: center;
}
.blueBtn:hover {
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0095ff), color-stop(100%, #0095ff));
  background-image: -webkit-linear-gradient(#0095ff, #0095ff);
  background-image: -moz-linear-gradient(#0095ff, #0095ff);
  background-image: -o-linear-gradient(#0095ff, #0095ff);
  background-image: linear-gradient(#0095ff, #0095ff);
  -pie-background: linear-gradient(#0095ff, #0095ff);
}

ul#tab {
  zoom: 1;
  border-bottom: 3px solid #c81528;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
ul#tab:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden; }
ul#tab li {
  float: left;
  text-align: center;
  cursor: pointer;
}
ul#tab li:last-child {
  background: none;
}
ul#tab li {
  display: block;
  width: 124px;
  padding: 8px 0;
  text-decoration: none;
  color: #222;
  font-family: "FB Miller Display Bold";
}
ul#tab li:hover {
  background: #c95560;
  color: #fff;
}
ul#tab li.active,
ul#tab li.active:hover {
  background: #c81528;
  color: #fff;
}
#detail {
  clear: both;
  overflow: hidden;
  background: #f7f7f7;
  width: 650px;
  height: 200px;
  padding: 20px;
}
.tabbox {
  display: none;
}

/* ---------- Link ---------- */
.noDecoration {
    text-decoration: none!important;
    outline: none!important;
}

/* ---------- Components ---------- */
.table {
    text-align: center;
    color: #435055;
}
.tableHeader {
    border-top: 2px solid #CCC;
    border-bottom: 2px solid #CCC;
    background-color: #FAFAFA;
}
.tableHeader th {
    padding: 10px 60px;
    font-weight: bold;
    font-family: "ClearTone SG Medium";
}
.tableBody td{
    padding: 10px 60px;
}
.tableBodyEn td{
    padding: 10px 10px 10px 50px;
}
.confirmBtnHide {
    visibility: hidden;
}
.licenseBox {
  width: 45px;
}
.errorMessageCenter {
  position: relative;
  right: 10%;
}
.detailFontBtn {
  font-family: "ClearTone SG Medium";
}
.help {
  font-family: "ClearTone SG Medium";
}
.modalMessageFontFamily {
  font-family: "ClearTone SG Medium";
}
.modalMessageHeaderFontFamily {
  font-family: "ClearTone SG Medium";
}
.bold {
  font-family: "ClearTone SG Medium"!important;
}
.addIndent {
  text-indent: -1em;
}
.packList {
  cursor: pointer;
}
.packList:after {
  position: relative;
  float: left;
  margin-right: 10px;
  content: '▲';
  margin-top: -1px;
  font-size: 13px;
  font-weight: bold;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transition: all, 0.25s, linear;
  -o-transition: all, 0.25s, linear;
  -webkit-transition: all, 0.25s, linear;
  transition: all, 0.25s, linear;
}

.packList.active:after {
  -moz-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
