*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="tel"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  /* mobile firefox too! */
  outline: none;
  height: 50px;
  font-size: 16px;
  border: 1px solid #dedfe1;
  border-radius: 3px;
  width: 100%;
  min-height: 2.7142em;
  background: #fff;
  display: inline-block;
  padding: 0.68571429em 1em 0.68571429em 1em;
  font-weight: 300;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  color:#232836;
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="search"]:hover,
input[type="password"]:hover,
input[type="tel"]:hover{

}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus{
  border:1px solid #2dc3e9;
}
.line{
  margin-bottom: 20px;
}
input[type="checkbox"]{
  display: none;
}
input[type="checkbox"]+label{
  cursor: pointer;
}
input[type="checkbox"]+label i{
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: -7px;
  border: none;
  margin-right: 8px;
  position: relative;
  border-radius: 3px;
  background: #dedfe1;
}

input[type="checkbox"]+label i:after{
  content:'';
  display: block;
  width: 14px;
  height: 10px;
  position: absolute;
  left: 50%;
  top:50%;
  margin-top: -5px;
  margin-left: -7px;
  background: url(../images/check.svg) center center no-repeat;
  background-size: 14px 10px;
  opacity: 0;
  transform: scale(2);
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}
input[type="checkbox"]:checked+label i{
  background: #2dc3e9;
}
input[type="checkbox"]:checked+label i:after{
 opacity: 1;
 transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

input[type="radio"]{
  display: none;
}
input[type="radio"]+label{
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
input[type="radio"]+label i{
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: -5px;
  border: none;
  margin-right: 8px;
  position: relative;
  border-radius: 12px;
  background: #dedfe1;
}

input[type="radio"]+label i:after{
  content:'';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 50%;
  top:50%;
  margin-top: -4px;
  margin-left: -4px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(2);
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}
input[type="radio"]:checked+label i{background: #2dc3e9;}
input[type="radio"]:checked+label i:after{
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.half-line{
  width: 50%;
  float: left;
  padding-right: 10px;
}
.half-line+.half-line{
  padding-left: 10px;
  padding-right: 0;
}
.line-25{
  width: 25%;
  float: left;
  padding-right: 10px;
}
.line-75{
  width: 75%;
  float: left;
  padding-left: 10px;
  padding-right: 0;
  position: relative;
}
.line-75:before{
  content: '';
  display: block;
  width: 8px;
  height: 2px;
  background: #2d3344;
  position: absolute;
  left: -4px;
  top: 19px;
}
.form-row{
  max-width: 495px;
  margin: 0 auto;
}
form .line:last-child{
  margin-bottom: 0;
}
.content-box{
  margin-bottom: 80px;
}

/*******************************
         Theme Overrides
*******************************/
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,
main,
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: transparent;
}
a:active,
a:hover {
  outline: 0;
}
b,
strong {
  font-weight: bold;
}
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, a img {
  border: 0;
  outline: none;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  box-sizing: content-box;
  height: 0;
}
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::-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;
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

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

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

html,
body {
  height: 100%;
}

html {
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
  /*overflow-x: hidden;*/
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4285em;
  color:#232836;
  background: #fff;
}

@media (max-width:1000px){
  .content-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
/*******************************
             Headers
*******************************/

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.2857em;
  margin: calc(2rem -  0.14285em ) 0 1rem;
  font-weight: 400;
  padding: 0;
}

h1 {
  min-height: 1rem;
  font-size: 2rem;
}

h2 {
  font-size: 1.714rem;
}

h3 {
  font-size: 1.28rem;
}

h4 {
  font-size: 1.071rem;
}

h5 {
  font-size: 1rem;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child {
  margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child {
  margin-bottom: 0;
}

/*******************************
             Text
*******************************/

p {
  margin: 0 0 1em;
  line-height: 1.4285em;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

/*-------------------
        Links
--------------------*/

a {
  color: #2dc3e9;
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: underline;
  outline: none;
}
a:active,a:focus{
  outline: none;
}
/*******************************
            Button
*******************************/

.ui.button {
  cursor: pointer;
  display: inline-block;
  min-height: 1em;
  outline: none;
  border: none;
  vertical-align: baseline;
  background: #2dc3e9;
  color: #fefefe;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 18px 30px;
  text-shadow: none;
  font-weight: 400;
  line-height: 1em;
  font-style: normal;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-size: 13px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
}
.ui.button.inverted{
  background: transparent;
  border: 1px solid #2dc3e9;
  color:#2dc3e9;
  padding: 17px 26px;
}
.ui.button.inverted.grn{
  background: transparent;
  border: 1px solid #27c97b;
  color:#27c97b;
  padding: 17px 26px;
}
.ui.button.inverted.grn:hover{
  background: #27c97b;
}
.ui.button.register{
  background: #f7495c;
  text-align: center;
  border-radius: 40px;
  text-decoration: none;
  padding: 10px 20px !important;
  display: inline-block;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-weight: 300;
  outline: none;
}
.ui.button.login{
  font-weight: 300;
  text-decoration: none;
  background: none;
  color: #fff;
  text-transform: uppercase;
  display: block;
  padding: 8px 10px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
}
.ui.button.register:hover{
  background: #c83b4a!important;
  color: #fff!important;
}
.ui.button.login:hover{
  background: none;
  color: #2597c7;
}
.ui.button.green{
  background: #27c97b;
}
.ui.button.green:hover{
  background: #1abd6e;
}
.ui.button.red{
  background: #f7495c;
}
.ui.button.red:hover{
  background: #FF6071;
}

/*******************************
            States
*******************************/

/*--------------
      Hover
---------------*/

.ui.button:hover {
  background-color: #1fb8df;
}
.ui.button.inverted:hover {
  background-color:#2dc3e9;
  color:#fff;
}

/*--------------
     Active
---------------*/

.ui.button.big{
  font-size: 13px;
  font-weight: 400;
  padding: 20px 60px;
  border-radius: 3px;
}
.ui.button.middle{
  font-size: 13px;
  font-weight: 400;
  padding: 14px 40px;
  border-radius: 3px;
}

.fl{
  float: left;
}
.fr{
  float: right;
}
.clearfix{
  clear: both;
}
.clearfix:after{
  content: '';
  display: block;
  clear: both;
}
.logo{
  padding-top: 20px;
}
.logo img{
  width: 213px;
  height: 35px;
}
.rel{position: relative;}
.abs{position: absolute;}
.fix{position: fixed;}
.l-wrapper{
  max-width: 1180px;
  margin: 0 auto;
}
.db{display: block;}
.dinb{display: inline-block;}
.mid{vertical-align: middle;}
.bs{vertical-align: baseline;}
h1.m-title,.m-title{font-size: 24px;margin-right: 20px;word-break: break-all;}
.wht-bg{
  background: #fff;
}
.shadow{
  box-shadow:0 0 25px rgba(0, 0, 0, 0.25);
}
.anim{
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
}
.s-bar{
  width: 295px;
  height: 100%;
  background: #232836;
  left:0;
  top:0;
  overflow-y: auto;
}
.s-bar .fix{
  top:0;
  height: 100%;
  width: 295px;
}
.usr-img{
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.usr-img img{
  max-width: 100%;
  border-radius: 20px;
}
.s-menu li a{
  display: block;
  padding: 20px 30px;
  color: #b0b6c5;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
}
.s-menu li.active a{
  color: #fff;
  background: #1e222e;
}
.s-menu li a:hover{
 color:#fff;
  background: #2d3343;
}
.usr-name{
  margin-left:60px;
  margin-top: 9px;
}
a.account-link{
  padding:30px;
  text-decoration: none;
  color:#fff;
  background: #282e3d;
}
a.account-link:hover{
  background: #2d3343;
}
.l-logo{
  padding-top: 2px;
}
.l-logo img{
  width: 123px;
  height: 41px;
}
.l-logo a{
  font-size: 24px;
  color: #FFF;
  text-decoration: none;
}
.l-logo .l-pro{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background: #27c97b;
  border-radius: 10px;
  padding: 3px 10px;
  display: inline-block;
  vertical-align: 3px;
  line-height: 14px;
}
a.logout-btn{
  text-transform: uppercase;
  display: block;
  height: 60px;
  padding: 20px 30px;
  color: #b0b6c5;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  width: 100%;
  bottom:0;
  left:0;
}
a.logout-btn:hover{
  background: #2d3343;
}
.off-icon{
  display: inline-block;
  background: url('../images/off.svg') no-repeat 0 0;
  background-size: 16px 18px;
  width: 16px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 8px;
}
.l-row{
  margin:0 -15px;
}
.col-4{width: 33.3333%;float: left;padding: 15px;}
.col-6{width: 50%;float: left;padding: 15px;}
.col-3{width: 25%;float: left;padding: 15px;}
.l-menu-toggle{
  cursor: pointer;
  margin: 15px 0px;
  display: none;
  width: 25px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0;
}
.l-menu-toggle span{width: 25px;height: 2px;top:0;left:0;background: #fff;}
.l-menu-toggle:before{content: '';display: block;position: absolute;top:7px;left:0;width: 25px;height: 2px;background: #fff;}
.l-menu-toggle:after{content: '';display: block;position: absolute;top:14px;left:0;width: 25px;height: 2px;background: #fff;}

.mob-header .s-logo{padding: 16px 30px;}
.icon-arr-r{
  display: inline-block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-width: 5px;
  border-top-width: 5px;
  border-left-color: #fff;
  vertical-align: baseline;
}
.icon-ref{
  display: inline-block;
  float: left;
  margin-top: 1px;
  margin-right: 10px;
  background: url('../images/refresh.svg') no-repeat 0 0;
  width: 11px;
  height: 11px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
}

.button:hover .icon-ref{
  background: url('../images/refresh_hvr.svg') no-repeat 0 0;
}
.sidebar a.account-link {padding: 20px 30px;}
ul.s-menu {height: calc(100% - 263px);}
.sidebar ul.s-menu {height: calc(100% - 140px);}
.add-bot-wrap+ul.s-menu {height: calc(100% - 373px);}
.sidebar .add-bot-wrap+ul.s-menu {height: calc(100% - 250px);}
.add-bot-wrap{
  padding:30px;
  height: 110px;
}
.l-grey-bg{
  background: #f5f5f6;
  padding:30px;
  margin: 0;
}
.upper{text-transform: uppercase;}
.lower{text-transform: lowercase;}
.tc{text-align: center;}
.white{color: #fff;}
.semibold{font-weight:600;}
.normal{font-weight:400;}
.fs14{font-size: 14px !important;}
.fs15{font-size: 15px !important;}
.fs16{font-size: 16px !important;}
.fs17{font-size: 17px;}
.fs18{font-size: 18px !important;}
.fs19{font-size: 19px;}
.fs20{font-size: 20px;}
.fs21{font-size: 21px;}
.fs22{font-size: 22px;}
.fs23{font-size: 23px;}
.fs24{font-size: 24px;}
.fs25{font-size: 25px;}
.fs26{font-size: 26px;}
.fs27{font-size: 27px;}
.fs28{font-size: 28px;}
.fs29{font-size: 29px;}
.fs30{font-size: 30px;}
.fs36{font-size: 36px;}
.fs48{font-size: 48px}
.l-nav li+li{margin-left: 32px;}
.l-nav li a{text-decoration: none;color:#b0b6c5;}
.l-nav li a:hover,.l-nav li.active a{color:#fff;}
.l-binbot-plat-desc{margin-top: -270px;}
.l-binbot-plat-desc img{border-radius: 5px;}
.l-header{height: 105px;padding: 30px 20px;}
.l-main-screen{
  background:url(../images/bg.jpg) center top #232836;
  background-size: cover;
  min-height: 800px;
}
.l-main-caption {
  padding: 30px 10px 0; /*fix for video */
}
.l-binbot-plat-desc{padding-left:20px;padding-right: 20px;}
.smooth-txt{
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.l-main-caption h1{
  max-width: 900px;
  margin: 0 auto 30px; /*fix for video */
}
.l-main-caption .button{width: 175px;}
.round-green-wrap{padding:0 25px;background: #fff;display: inline-block;margin:0;}
.round-green{width: 60px;height: 60px;border-radius: 30px;background: #27c97b;color:#fff;font-size: 36px;display: block;padding-top: 20px;}
.step-row:before{content: '';left: 15%;right: 15%;height: 4px;background: url(../images/dot.png) 0 0 repeat-x;display: inline-block;position: absolute;top:44px;}
.step-row .col-4{z-index: 2;padding: 15px 55px;}
.step-row .col-4 h4{margin-bottom: 20px;}
.l-binbot-plat-desc img{vertical-align: top;max-width: 100%;box-shadow: 0 2px 50px rgba(0,0,0,0.18);}
.l-table{width:100%;display: table;max-width: 990px;margin: 0 auto;}
.l-trow{display: table-row;}
.l-trow+.l-trow .l-tcell{border-top:1px solid #dedfe1;}
.l-tcell{display: table-cell;vertical-align: bottom;text-align: right;padding: 25px 15px;}
.l-tcell:first-child{text-align: left;padding-left: 0;}
.l-tcell:last-child{padding-right: 0;}
.br-index{margin-bottom: 4px;}
.grey-l{color:#b0b6c5;}
.red-txt{color:#fc4661;}
.green-txt{color:#27c97b;}
.rewards-list{margin:40px -50px 55px;}
.rewards-list li{margin: 0 0 25px;padding: 0 50px}
.full-section{
  padding:80px 0 90px 0;
}
.icon-login{
  display: inline-block;
  float: left;
  margin-top: 2px;
  margin-right: 10px;
  background: url('../images/login.svg') no-repeat 0 0;
  background-size:16px 16px;
  width: 16px;
  height: 16px;
  opacity: 0.5;
}
.l-nav li a:hover .icon-login{opacity: 1;}
.l-footer{background: #232836;padding:36px 20px;}
.l-footer .grey-l{margin-bottom: 10px;}
.l-footer a:hover{text-decoration: none;color:#fff;}
.l-notice{
  width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 15px 50px  rgba(0,0,0,0.35);
  text-align: left;
}
.l-notice:after{content: '';position:absolute;height:0;width:0;border: 10px solid transparent;border-top-color:#fff;bottom:-20px;}
.l-notice.pip-r:after{right: 45px;}
.l-notice.pip-l:after{left: 45px;}
.l-notice.pip-top-l{box-shadow: 0 2px 50px rgba(0, 0, 0, 0.35);}
.l-notice.pip-top-l:after{left: 45px;border-top-color:transparent;bottom:auto;border-bottom-color:#fff;top:-20px;}
.l-notice p{margin-left: 10px;padding-top: 2px;line-height: 21px;}
.l-notice-one{bottom: 40px;left: 205px;}
.l-notice-two{top:175px;right:257px;width: 220px;}
.l-notice-three{top:20px;left:373px;}
.l-notice-four{top:-65px;right:35px;}
.red-round{
  background: #fc4661;
  color: #fff;
  padding: 3px 8px;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  margin-right: 15px;
}
.red-round.fs26{padding-top: 8px;}
.reg-offcanvas{padding: 30px;}
.reg-offcanvas .ui.button{width: 100%;}
.plat-mob{display: none;}
.info-icon{width: 24px;height: 24px;}
@media (max-width: 1199px){
  .s-bar,.s-bar .fix {width: 260px;}
  .in-content{margin-left: 260px;}
  .l-binbot-plat-desc{max-width: 896px;margin-left:auto;margin-right:auto;}
  .l-notice-three {left:232px;}
  .l-notice-one {left: 90px;bottom: 35px;}
  .l-notice-one.pip-r:after{right: 150px;}
  .l-notice-two{right: 120px;}
  .l-notice-two.pip-l:after{left:auto;right: 135px;}
  .l-notice-four{top: 0;right: 20px;}
  .l-notice-four.pip-l:after{left:auto;right: 165px;}
  .step-row .col-4{padding: 15px 35px;}
  .rewards-list li {padding: 0 25px;}
}
@media (max-width: 1079px){
  .trade-settings .col-3{width: 50%;}
  .login-row{padding-top: 60px;}
}
@media (max-width: 959px){
  .info-trigger.tc{text-align: left;display: inline-block;}
  .ui.popup{max-width: 250px !important;}
  .l-menu-toggle{display: block;}
  .l-nav{display: none;}
  .l-main-caption h1{font-size: 28px;max-width: 655px;}
  .step-row .col-4{width: 48%;float: none;display: inline-block;vertical-align: top;}
  .step-row:before {left: 25%;right: 25%;}
  .l-trow{display:table-cell;width: 50%;vertical-align: top;}
  .l-tcell,.l-trow+.l-trow .l-tcell{display: block;border: none;text-align: left;padding: 12px 30px;}
  .finpari{margin-top: -36px;}
  .l-tcell:first-child {padding-left: 30px;}
  .l-table{margin-top: 55px;}
  .rewards-list {margin: 40px 0 55px;}
  .l-notice.abs{position: static;width:100%;box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);margin-top: 2px;}
  .l-notice:after{display: none;}
  .plat-desk{display: none;}
  .plat-mob{display: block;}
  .l-notice p {margin-left: 45px;}
}

@media (max-width: 699px){
  .ranges-wrap .col-4{width: 50%;}
  .col-6{width: 100%;}
  .bl-current {
    font-size: 30px;
    line-height: 32px;
    display: inline-block;
  }
  .status-item+.status-item{border-bottom: 1px solid #ebedf0;}
  .bl-label {margin-top: 0;display: inline-block;margin-right: 5px;}
  .status-item {padding: 20px 0;}
  .status-wrap .col-6+.col-6{padding-top: 0;padding-bottom: 30px;}
  .radio-target.custom-radio{
    display: block;
  }
  .radio-target .radio-item{
    display: block;
    width: 100%;
  }
  .radio-target .radio-item:first-child label {border-radius: 3px 3px 0 0;}
  .radio-target .radio-item:last-child label {border-radius: 0 0 3px 3px;}
  .radio-target .radio-item+.radio-item label {
    border-left: 1px solid #b0b6c5;
    border-top:none;
  }
}
@media (max-width: 614px){
  .info-trigger.tc{text-align: center;display: block;}
  .step-row .col-4{width: 100%;}
  .step-row .col-4+.col-4{margin-top: 30px;}
  .step-row:before{display: none;}
  .l-trow{display: block;width: 100%;}
  .l-table{display: block;}
  .l-tcell,.l-trow+.l-trow .l-tcell,.l-tcell:first-child,.l-tcell:last-child{text-align: center;padding: 12px 30px;}
  .l-trow+.l-trow{border-top: 1px solid #dedfe1;}
  .l-trow:first-child{padding-top: 0;}
  .l-trow:last-child{padding-bottom: 0;}
  .l-trow{
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    padding: 30px;
  }
  .full-section {padding: 80px 20px 90px;}
  .finpari{margin-top: 0;}
  .l-binbot-plat-desc{margin-top: -20px;}
  .l-main-screen{min-height: 470px;}
  .l-main-caption h1 {
    font-size: 18px;
    max-width: 655px;
  }
  h2.fs36 {font-size: 32px;}
  .fs20 {font-size: 18px;}
}
@media (max-width: 479px){
  .l-main-caption {
    padding: 70px 20px 0;
  }
  .ui.button.inverted.grn {
    padding: 17px 20px;
  }
}

/* lang */
.lng-icon-arrow-s {
    border-color: #879295 transparent transparent;
    border-style: solid;
    border-width: 4px 4px 0;
    height: 0;
    position: relative;
    display: inline-block;
    right: 0;
    width: 0;
    vertical-align: middle;
}
.lng-drop-right {
    float: right;
}
.lng-drop {
    display: inline-block;
    vertical-align: top;
    position: relative;
    height: 49px;
    line-height: 49px;
    margin: 0 10px;
    padding: 0 15px;
    cursor: pointer;
    min-width: 82px;
    
    font-size: 12px;
    color: #66767a;
}
.lng-drop-title{
    width:85px;
}
@media (max-width: 959px){
    .lng-drop {
        margin: 0 20px 0px 2px;
        z-index: 10000;
    }
}
.icon-en {
    background: url(/images/icons/en-newa.png) no-repeat;
    height: 16px;
    vertical-align: -7px;
}
.icon-en {
    background-position: 0 0;
}
.icon-en, .icon-ru, .icon-de {
    display: inline-block;
    margin-right: 9px;
    width: 18px;
    height: 12px;
    vertical-align: -2px;
}
.icon-ru {
    background: url(/images/icons/flags.png) no-repeat;
}
.icon-de {
    background: url(/images/icons/de.png) no-repeat;
}
.icon-th {
    background: url(/images/icons/th.png) no-repeat;
    display: inline-block;
    height: 12px;
    margin-right: 9px;
    vertical-align: -2px;
    width: 18px;
}
.icon-sp {
    background: url(/images/icons/sp.png) no-repeat;
    display: inline-block;
    height: 12px;
    margin-right: 9px;
    vertical-align: -2px;
    width: 18px;
}
.icon-fr {
    background: url(/images/icons/fr.png) no-repeat;
    display: inline-block;
    height: 12px;
    margin-right: 9px;
    vertical-align: -2px;
    width: 18px;
}
.icon-ch {
    background: url(/images/icons/ch.png) no-repeat;
    display: inline-block;
    height: 12px;
    margin-right: 9px;
    vertical-align: -2px;
    width: 18px;
}
.icon-ar {
    background: url(/images/icons/ar.png) no-repeat;
    display: inline-block;
    height: 12px;
    margin-right: 9px;
    vertical-align: -2px;
    width: 18px;
}
.lng-drop-choser {
    position: absolute;
    top: 42px;
    left: 0;
    z-index: 100;
    background: #fff;
    min-width: 115px;
    display: none;
}
.lng-drop:hover .lng-drop-choser {
    display: block;
}
.lng-drop-item {
    white-space: nowrap;
    color: #66767a;
    padding: 0 15px;
    line-height: 35px;
    min-width: 85px;
    display: block;
}
.lng-drop-item:hover {
    background: #FAFAFA;
    text-decoration: none;
}
.lng-drop:hover {
    background: #FAFAFA;
}

#disclaimer{
    margin-top: 55px;
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
    text-align: left;
    font-size: 0.8em;
}

.video-modal{
    display:none;
    max-width: 680px;
    margin: 0em 0em 0em -250px;
    position: fixed;
    z-index: 1001;
    top: 50px;
    left: 50%;
    text-align: center;
    background: #ffffff;
    border: none;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 10px;
}
.video-close{
    cursor: pointer;
    padding: 0px 6px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    width: 25px;
    height: 22px;
    border: 1px solid lightgrey;
    line-height: 20px;
    opacity:0.6;
}
.video-close:hover{
    opacity: 1;
}
.video-container{
    padding: 20px;
}
.video-banner{
    padding: 0px 0px 20px 0px;
}
.video-banner img{
    cursor: pointer;
}
.video-banner img:hover{
    opacity: 0.9;
}

.fade{
    display:none;
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8;
    filter: alpha(opacity=80);
}
body{
    z-index:10;
}

@media(max-width:700px) {
    .video-modal{
        margin:0;
        width:90%;
        left:5%;
    }
}