/* Copyright (c) 2015 CommonTown Pte Ltd. All rights reserved. */
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('/rs/font/glyphicons-halflings-regular.eot');
  src: url('/rs/font/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/rs/font/glyphicons-halflings-regular.woff') format('woff'), url('/rs/font/glyphicons-halflings-regular.ttf') format('truetype'), url('/rs/font/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

/* ----- box ----- */
.ct-box {
  width:100%; 
  box-sizing: 
  border-box; 
  background-color:transparent; 
  color:inherit;
  position:relative;
  padding:.4em 0; 
}
.ct-box > * { padding:.5em 1.0em; }
.ct-box .title_ { font-size:120%; font-weight:bold; }

/* ----- btn ----- */
.ct-btn {
  cursor:pointer;
  display:inline-block!important;
  position: relative;
  line-height:110%!important;
  text-align:center;
  text-decoration:none!important;
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
  -moz-user-select:none;
}
.ct-btn[disabled] { opacity:.5; pointer-events:none; }
.ct-btn:active {
  transform: translate(0,.1em);
  -webkit-transform: translate(0,.1em);
  -ms-transform: translate(0,.1em);
}
.ct-btn:hover {
}

.ct-icon-left {
  padding-left:2.8em!important;
  text-align:left!important;
}

.ct-icon-left:before {
  display: block;
  position: absolute;
  content: attr(data-icon);
  text-align:left;
  font-family: 'Glyphicons Halflings';
  color:#fff;

  padding:.6em .6em 0 .6em;
  opacity:.4;
  top: 0; left: 0; bottom: 0;
  background:black;
}

.ct-icon-right {
  padding-right:2.8em!important;
  text-align:right!important;
}

.ct-icon-right:before {
  display: block;
  position: absolute;
  content: attr(data-icon);
  text-align:right;
  font-family: 'Glyphicons Halflings';
  color:#fff;

  padding:.6em .6em 0 .6em;
  opacity:.4;
  top: 0; right: 0; bottom: 0;
  background:black;
}
