* {
  box-sizing:border-box;
  outline:none !important;
}

*, *:before, *:after {
  box-sizing: border-box !important;
}

body {
  font-size        : 13px;
  font-family      : "Lato";
  height           :100%;
  background-color : #fff;
  position         : relative;
}

.main-box {
  overflow:hidden;
  position: relative;
  margin:30px auto 0 auto;
  padding:0 30px;
  max-width:600px;
}

.main-box .header {
  overflow: hidden;
}

.main-box .header .header-left {
  float:left;
  font-size:30px;
}

.main-box .header .header-left a.page-name {
  font-size:24px;
  color:#000;
  text-decoration: none;
  font-weight: 800;
  margin-right:30px;
  text-transform: uppercase;
}

.main-box .header .header-left a.page-name img {
  max-height:55px;
}

.main-box .header .header-right {
  float:right;
}

.main-box .header .header-right a.buy-link {
  display:inline-block;
  text-decoration: none;
  background-color: #175DF8;
  color:#fff;
  padding:8px 15px;
  border-radius: 3px;
  font-size:13px;
  font-weight:800;
  margin-top:10px;
}

.main-box .ad-box {
  margin-top:50px;
  width:100%;
}

.main-box .ad-box .ad-item {
  padding:20px;
  margin-bottom:20px;
  background-color: #F4F4F4;
  width:100%;
  text-align: center;
}

.form-box {
  max-width:600px;
}

.label-line {
  margin-top:30px;
  overflow:hidden;
}

.label-line label {
  color:#6A6A6A;
  font-weight:700;
}

.label-line.first { 
  margin-top:0px;
}

label.inline {
  margin-right:30px; 
}

.input-line {
  margin-top:5px;
}

.input-line input[type='text'],
.input-line input[type='password'],
textarea {
  padding:10px;
  width:100%;
  border: 1px solid #B8BABA;
  border-radius: 2px;
  line-height:normal;
}

.input-line input[type='text']:focus,
.input-line input[type='password']:focus,
textarea:focus {
  outline: none;
  border-color: #9ecaed;
  box-shadow: 0 0 5px #9ecaed;
}

.input-line textarea {
  height:200px;
}

.choice-line {
  margin-top:5px;
}

.choice-line.first {
  margin-top:0px;
}

.input-line input[type='radio'],
.input-line input[type='checkbox'] {
  margin-right:5px;
}

.choice-line label {

}

.button-line {
  margin-top:40px;
  overflow: hidden;
}

.button-line .right-link {
  float:right;
  text-decoration: none;
  color:#333433;
  font-size:13px;
  margin-top:10px;
}

.button-line .right-link:hover {
  text-decoration: underline;
}

button.submit-button {
  background-color: #2B71B1;
  color: #fff;
  padding:15px 20px;
  font-size:12px;
  border-radius:3px;
  vertical-align: top;
  cursor: pointer;
}

button.submit-button:hover {
  background-color: #25659D;
}

button.cancel-button {
  padding:15px 20px;
  font-size:12px;
  font-family: 'montserrat';
  rounded:3px;
  vertical-align: top;
  color: #263d52;
  background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#f7f9fb));
  background-image: -webkit-linear-gradient(#fff,#f7f9fb);
  background-image: linear-gradient(#fff,#f7f9fb);
  background-color: #f7f9fb;
  border: 1px solid #d4dce4;
}

button.cancel-button:hover {
  background-image:none;
  background: #f7f9fb;
}

.error {
  color:#FC000F;
  margin-top:5px;
}

button.loading-button {
  background-color: #77A3CD;
  color: #fff;
  border: 1px solid #77A3CD;
  padding:10px 20px;
  font-size:12px;
  font-family:"Montserrat";
  border-radius:3px;
  vertical-align:top;
}

.loader {
  position: absolute;
  top:10px;
}

.spinner-box {
  padding: 20px;
  margin: 0 auto;
}
.spinner {
  height: 20px;
  text-align: center;
  font-size: 10px;
}
.spinner > div {
  background-color: #595959;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.spinner2 {
  width: 25px;
  height: 25px;
  background-color: #DEDEDE;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.spinner3 {
  width: 30px;
  height: 30px;
  position: relative;
  top: 4px;
}
.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #999999;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.sk-fading-circle {
  position: relative;
}
.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}
.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}
.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes sk-circleFadeDelay {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes sk-circleFadeDelay {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}


.popup {
  position: relative;
}

.popup .popup-header {
  background-color:#fff;
  padding:20px;
  overflow:hidden;
  border-bottom:1px solid #EAEDF3;
}

.popup .popup-header .popup-header-left {
  float:left;
}

.popup .popup-header .popup-header-left .popup-header-left-text {
  font-size:1.3em;
  color:#353536;
}

.popup .popup-header .popup-header-right {
  float:right;
}

.popup .popup-header .popup-header-right a {
  color:#ABADB4;
  text-decoration: none;
}

.popup .popup-header .popup-header-right a:hover {
  color:#66676C;
}

.popup .popup-body {
  overflow-y: auto;
  max-height:400px;
  padding:20px;
}

.popup .popup-footer {
  background-color: #fff;
  padding:20px;
  border-top:1px solid #EAEDF3;
  overflow: hidden;
}

.popup .popup-footer .popup-footer-right {
  margin-top:10px;
}

.popup .popup-footer a.right-link {
  color:#6D6D6D;
  font-size:12px;
  text-decoration: none;
}

.popup .popup-footer a.right-link:hover {
  color:#000;
}

