/*loader css*/
body {
  margin: 0;
  padding: 0;
  /*background:#3498db;*/
}
html, body{
  background: #fff !important;
}
.cs-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 1024px;
  width: 100%;
  background-color: #000;
  opacity: 0.8;
}
.cs-loader-first-settings {
  position: absolute;
  top: 0;
  left: 0;
  height: 980px;
  width: 100%;
  background-color: #000;
  opacity: 0.8;
}
.cs-loader-inner {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  width: calc(100% - 200px);
  color: #3498db;
  padding: 0 100px;
  text-align: center;
  font-size: 80px;
  font-weight: bold;
}

.cs-loader-inner label {
  font-size: 40px;
  opacity: 0;
  display:inline-block;
}

@keyframes lol {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  33% {
    opacity: 1;
    transform: translateX(0px);
  }
  66% {
    opacity: 1;
    transform: translateX(0px);
  }
  100% {
    opacity: 0;
    transform: translateX(300px);
  }
}

@-webkit-keyframes lol {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-300px);
  }
  33% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  66% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(300px);
  }
}

.cs-loader-inner label:nth-child(10) {
  -webkit-animation: lol 3s infinite ease-in-out;
  animation: lol 3s infinite ease-in-out;
}
.cs-loader-inner label:nth-child(9) {
  -webkit-animation: lol 3s infinite ease-in-out;
  animation: lol 3s infinite ease-in-out;
}
.cs-loader-inner label:nth-child(8) {
  -webkit-animation: lol 3s infinite ease-in-out;
  animation: lol 3s infinite ease-in-out;
}
.cs-loader-inner label:nth-child(7) {
  -webkit-animation: lol 3s infinite ease-in-out;
  animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(6) {
  -webkit-animation: lol 3s infinite ease-in-out;
  animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
  -webkit-animation: lol 3s 100ms infinite ease-in-out;
  animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
  -webkit-animation: lol 3s 200ms infinite ease-in-out;
  animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
  -webkit-animation: lol 3s 300ms infinite ease-in-out;
  animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
  -webkit-animation: lol 3s 400ms infinite ease-in-out;
  animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
  -webkit-animation: lol 3s 500ms infinite ease-in-out;
  animation: lol 3s 500ms infinite ease-in-out;
}
/*hosted page info page css*/
@import url(https://fonts.googleapis.com/css?family=Merriweather);
    *,
    *:before,
    *:after {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    html,
    body {
        background: #f1f1f1;
        font-family: 'Merriweather', sans-serif;
    }
    
    h1 {
        text-align: center;
        color: #a8a8a8;
        text-shadow: 1px 1px 0 white;
        margin: 20px 0;
    }
    
    form {
        max-width: 600px;
        text-align: center;
        margin: 20px auto;

    }
    
    form input,
    form textarea {
        border: 0;
        outline: 0;
        padding: 1em;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        display: block;
        width: 100%;
        margin-top: 1em;
        font-family: 'Merriweather', sans-serif;
        -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        resize: none;
    }
    
    form input:focus,
    form textarea:focus {
        -moz-box-shadow: 0 0px 2px #e74c3c !important;
        -webkit-box-shadow: 0 0px 2px #e74c3c !important;
        box-shadow: 0 0px 2px #e74c3c !important;
    }
    
    form #input-submit #login {
        color: white;
        background: #e74c3c;
        cursor: pointer;
    }
    .submit {
        color: white;
        background: #1C67A3!important;
        cursor: pointer;
    }
    form #input-submit:hover {
        -moz-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
        -webkit-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
        box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
    }
    
    form textarea {
        height: 126px;
    }
    
    .half {
        float: left;
        width: 48%;
        margin-bottom: 1em;
    }
    
    .right {
        width: 50%;
    }
    
    .left {
        margin-right: 2%;
    }
    
    @media (max-width: 480px) {
        .half {
            width: 100%;
            float: none;
            margin-bottom: 0;
        }
    }
    /* Clearfix */
    
    .cf:before,
    .cf:after {
        content: " ";
        /* 1 */
        display: table;
        /* 2 */
    }
    
    .cf:after {
        clear: both;
    }
    label.error {
      float: left;
      margin-bottom: 5px;
      margin-top: 7px;
      color: #900;
      width: 100%;
      text-align: left;
      font-size: 14px;
    }

    select#payment_type {
    border: 0;
    outline: 0;
    padding: 1em;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: block;
    width: 100%;
    margin-top: 1em;
    font-family: 'Merriweather', sans-serif;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    /* -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    resize: none;
    background-color:#fff;
  }
  select.select_box {
    /*border: 0;*/
    outline: 0;
    /*padding: 1em;*/
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: block;
    width: 100%;
    margin-top: 1em;
    font-family: 'Merriweather', sans-serif;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    /* -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    resize: none;
    background-color:#fff;
  }
select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 8px) !important;
}
.cf {
    margin-top: 30px;
}
.btn-primary{
  padding: 10px !important;
}
.form-group {
margin-bottom: 10px !important;
}
a.menu-link {
    color: #fff;
    text-decoration: none;
}
a.menu-link:hover {
    color: #000;
}
li.menu {
    float: left;
    margin-left: 20px;
}

/*popup*/

body {
  /*font-family: Arial, sans-serif;*/
  /*background: url(http://www.shukatsu-note.com/wp-content/uploads/2014/12/computer-564136_1280.jpg) no-repeat;*/
  /*background-size: cover;*/
  /*height: 100vh;*/
}

.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
/*.overlay:target {
  visibility: visible;
  opacity: 1;
}*/
.overlay{
  visibility: visible;
  opacity: 1;
}
.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 35%;
  position: relative;
  transition: all 5s ease-in-out;
  height: auto;
  background-color: #f1f1f1 !important;
  top:100px;
  
}
.close{display: none;}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  display: inline-block;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 100%;
  overflow: auto;
  margin-bottom: 20px;
}
/*.popup input{
    border: 0;
    outline: 0;
    padding: 1em;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: block;
    width: 100%;
    margin-top: 1em;
    font-family: 'Merriweather', sans-serif;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    resize: none;
}*/
.popup .wgpay__label {
    /*margin: 20px 0 10px;*/
    float: left;
    color: #a8a8a8;
}
.popup .wgpay-title {
    font-size: 1.6em;
    margin-top: 1em;
}
.popup  h1 {
    text-align: center;
    color: #a8a8a8;
    text-shadow: 1px 1px 0 white;
    margin: 20px 0;
}
a.link {
    color: #1C67A3;
    text-decoration: none;
}
a.link:hover {
    color: #000;
}
.disabled{  pointer-events: none;
    background: rgba(28, 103, 163, 0.32)!important;
}
/*2-Jun-2017*/

.container{
    width: 700px;
    margin: 0 auto;
    height: auto; 
    margin-top: 50px;
}
ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    float: left;
    width: 100%;
    /*background-color: #f1f1f1;*/
}
ul.menu-list {
    float: right;
    margin-bottom: 0;
}


ul.tabs li {
    background: none;
    color: #222;
    float: left;
    padding: 10px 15px;
    cursor: pointer;
    width: 50%;
    font-size: 18px;
    font-weight: bold;
    background: #fff;
}

ul.tabs li.current{
    background: #f0f0f0;
    color: #1C67A3;
}

.tab-content{
    display: none;
    background: #f0f0f0;
    padding: 15px;
}

.tab-content.current{
    display: inherit;
    height: auto;
}
input#active {
    width: 48%;
    float: left;
    margin-right: 22px;
}

input#deactivate {
    width: 48%;
}
.disabled{pointer-events: none; background: #a8c7e0 !important;border: none !important;}

@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
 
.isa_info, .isa_success, .isa_warning, .isa_error {
margin: 10px 0px;
padding:12px;
 
}
.isa_info {
    color: #00529B;
    background-color: #BDE5F8;
}
.isa_success {
    color: #4F8A10;
    background-color: #DFF2BF;
}
.isa_warning {
    color: #9F6000;
    background-color: #FEEFB3;
}
.isa_error {
    color: #D8000C;
    background-color: #FFBABA;
}
.isa_info i, .isa_success i, .isa_warning i, .isa_error i {
    margin:10px 22px;
    font-size:2em;
    vertical-align:middle;
}
label.url-error {
    float: left;
    margin-bottom: 5px;
    margin-top: 7px;
    color: #900;
    width: 100%;
    text-align: left;
    font-size: 14px;
}
div#preloader {
    opacity: 0.8;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #333 url('../images/loading.gif') no-repeat center center;
    display: none;
}

.form-control{
  border-radius: 8px !important;
  line-height: 2 !important;
}

@media screen and (max-width: 700px){

  .popup{
    width: 80% !important;
  }
  .popup input {
    padding: 2em !important;
  }
}
@media screen and (max-width: 700px){
   .popup{
    width: 80% !important;
  }

  input{
    padding: 2em !important;
  }
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}
