* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    outline:none;   
}

:focus {outline:none;}
::-moz-focus-inner {border:0;}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.noselect {
  -webkit-touch-callout: none; 
  -webkit-user-select: none;   
  -khtml-user-select: none;    
  -moz-user-select: none;      
  -ms-user-select: none;       
  user-select: none;
}

html {
    -webkit-text-size-adjust:none;
    -webkit-font-smoothing: subpixel-antialiased;
}

html * {max-height:1000000px;}

.cleaner {
    width: 100%;
    clear: both;
    float: none;
    font-size: 1px;
    line-height: 1px;
    height: 0px;
}

div {
    position: relative;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    font-weight: 400;
}

html, body{
  height: 100%;
}

p, h1, h2, h3, h4 {
    margin: 0px;
    padding: 0px;
    display: block;
}

li {
    list-style-type: none;
}

::-webkit-input-placeholder { 
   color: #aaa;
}
:-ms-input-placeholder { 
   color: #aaa;
}
::-ms-input-placeholder { 
   color: #aaa;
}
::placeholder { 
   color: #aaa;
}

.fixed_holder {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 9999;
  text-align: center;
  overflow-y: auto;
  display: none;
}

.fixed_holder:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}

.fixed_wrapper {
  display: inline-block;
  vertical-align: middle;
  width: 310px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px; 
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 2px;
}

.form_input {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: block;
  padding: 10px 12px;
  border: 1px solid #aaa;
  font-size: 15px;
  border-radius: 2px;
  width: 100%;
}

.fixed_header {
  font-size: 16px;
  margin-bottom: 20px;
  color: #000;
  text-align: left;
  margin-right: 30px;
  font-weight: 500;
}

.form_web, .web_error {
  display: none;
}

.possible_error {
  text-align: left;
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #da3347;
  margin-left: 1px;
}

.form_output {
  display: inline-block;
  background-color: #4d673f;
  color: #fff;
  border-radius: 2px;
  padding: 10px 15px 8px 15px;
  cursor: pointer; 
  margin-top: 15px;
}

.closecross {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 17px;
  height: 16px;
  background-image: url(../images/close.png);
  background-size: 17px 16px;
  background-repeat: no-repeat;
  background-position: center right; 
  cursor: pointer;
  padding: 12px;
}

.content {
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}

.content.margined {
  padding-top: 40px;
}

.centered {
  text-align: center;
}

.left_aligned {
  text-align: left;
}

.preloader_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  display: none;
}

.spinner {
  height: 100%;
  text-align: center;
  font-size: 10px;
  display: inline-block;
}

.spinner > div {
  background-color: #fff;
  height: 100%;
  width: 6px;
  float: left;
  margin-left: 2px;
  margin-right: 1px;
  
  -webkit-animation: sk-stretchdelay 0.8s infinite ease-in-out;
  animation: sk-stretchdelay 0.8s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.spinner .rect3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

.ovelay_inner.preloader_inner {
  background-color: transparent;
  height: 53px;
}

.ovelay_inner.preloader_inner .spinner > div {
  background-color: #fff;
  width: 6px;
  margin-left: 4px;
  margin-right: 4px;
  opacity: 0.9;
  border-radius: 4px;
}