html,body{
  height:100%;
}
body{
  padding:0px;
  margin:0px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  /* font-family: 'Roboto Slab', serif; */
  /* font-family: 'PT Sans', sans-serif; */
  font-size: 15px;
  /* background-color: rgb(228, 228, 228); */
  line-height: 1.43;
  color: #29303b;
  /* background-image: linear-gradient(to top, #6a85b6 0%, #bac8e0 100%); */
  /* background-size: contain; */
}
*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;    
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5{
  font-weight: normal;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ripple div {
position: absolute;
border: 4px solid #16213c;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
animation-delay: -0.5s;
}
@keyframes lds-ripple {
0% {
  top: 28px;
  left: 28px;
  width: 0;
  height: 0;
  opacity: 1;
}
100% {
  top: -1px;
  left: -1px;
  width: 58px;
  height: 58px;
  opacity: 0;
}
}

.btn{
  /* font-family: 'PT Sans', sans-serif; */
  color: #241e20;
  background-color: #f2f2f2;    
  padding: 9px 19px; 
  padding-bottom: 11px;     
  cursor: pointer;
  display: inline-block;    
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;    
  position: relative;
  text-decoration: none;   
  outline: none; 
  border: 1px solid transparent;    
  
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 14px;
  /* font-family: monospace; */
  -webkit-font-smoothing: antialiased;

  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;

  border-radius: 3px;
}
.btn:hover{
  background-color:#dedede;
  color: #222;
}
.btn:focus{
outline:none;
}
.btn.btn-primary{
background-color:#f7d40f !important;
  color:#241e20 !important;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 14px;
  /* font-family: monospace; */
  -webkit-font-smoothing: antialiased;    
  text-shadow: 0px 1px 2px rgba(255,255,255,0.9);
  -moz-text-shadow: 0px 1px 2px rgba(255,255,255,0.9);
  -webkit-text-shadow: 0px 1px 2px rgba(255,255,255,0.9);
}
.btn.btn-primary:hover{
background-color:#c9a500 !important;	
}
.btn.btn-disabled {
opacity: 0.2;
}
.btn.btn-color{
  background: rgb(80,51,116);
  background: linear-gradient(18deg, rgba(80,51,116,1) 0%, rgba(183,49,121,1) 100%);
  color: #fff;
  /* border: none; */
  border: 2px transparent;
  /* font-size: 18px; */
}
.btn.btn-color:hover{
  background: rgba(183,49,121,1);
  background: linear-gradient(-18deg, rgba(80,51,116,1) 0%, rgba(183,49,121,1) 100%);
}

.lang__wrap {
  /* position: absolute;
  left: 0;
  top: 0; */
  /* padding: 10px; */
  /* margin: 10px; */
}

.lang__wrap > a {
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  color: #16213c;
  font-weight: bold;
  padding: 3px 10px;
  border: 1px solid #ada7a7;
  border-radius: 6px;
  
}
.header .lang__wrap > a{
  color:#fff;
}
.lang__wrap > a:hover{
  background: rgb(80,51,116);
  background: linear-gradient(18deg, rgba(80,51,116,1) 0%, rgba(183,49,121,1) 100%);
  color: #fff;
  border-color: transparent;
}