/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a
{
  text-decoration: none;
}

input
{
  /*font-size: 14px;*/
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
  font-family: 'FuturaMedium';
  src: url('../fonts/futura-medium.ttf')  format('truetype');
}

@font-face {
  font-family: 'Metropolis-SemiBold';
  src: url('../fonts/Metropolis-SemiBold.ttf')  format('truetype'); 
}

@font-face {
  font-family: 'Metropolis-Medium';
  src: url('../fonts/Metropolis-Medium.ttf')  format('truetype'); 
}

@font-face {
  font-family: 'Metropolis-Light';
  src: url('../fonts/Metropolis-Light.ttf')  format('truetype'); 
}

@font-face {
  font-family: 'Metropolis-Regular';
  src: url('../fonts/Metropolis-Regular.ttf')  format('truetype'); 
}
/*Global code starts*/
*{
  font-family: 'FuturaMedium', sans-serif;
  /*color: rgb(70,70,70);*/
  box-sizing:border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-tap-highlight-color: transparent !important;
     outline: none !important; 
     -webkit-overflow-scrolling: touch;
     box-sizing: border-box;
     font-size: 16px;
     font-weight: 400;
}

input {
    -webkit-user-select: auto !important;
}

input[type='number'],input[type='text'],input[type='password'],input[type='button'],input[type='submit'],input[type='number'],input[type='email'],input[type='reset'],select,button,textarea 
{
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
}


body,html
{
  height: 100% !important;
  width: 100%;
  font-size: 16px;
  padding: 0px;
  margin: 0px;
  font-family: 'FuturaMedium', sans-serif;
    background-color: #fff;
    font-weight: 400;
    background: linear-gradient(rgb(230,230,230), rgb(255,255,255));
    overflow-y: auto;
    overflow-x: hidden;
}

.main-header .logo-lg
{
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
  display: block;
  margin-top: 8px;
}

.main-header .logo
{
  background-color: #fff !important;
}

.main-header .logo-mini
{
  max-width: 70%;
    display: block;
    margin: 0 auto;
}

.button
{
  border-radius: 8px;
  padding: 14px 40px;
  color: #fff;
  text-transform: uppercase;
  /*background-image: linear-gradient(to right, #b23052, #be2f54, #cb2d56, #d72b58, #e42859);*/
    background-image: linear-gradient(to right, rgb(178, 48, 82),rgb(228, 40, 89));
  display: inline-block;
  border:none;
  outline: 0;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.button:hover
{
  color: #fff;
}

.button.button-big
{
  padding: 12px 40px;
}

.button:active, .action:active
{
  opacity: 0.8;
  transform: translateY(2px);
}

#loader
{
  position: fixed;
  z-index: 9;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background-color: rgba(255,255,255,0.6);
}

#loader-img 
{
  animation: rotation 400ms linear infinite alternate; 
    -moz-animation: rotation 400ms linear infinite alternate;  /* Firefox */
    -webkit-animation: rotation 400ms linear infinite alternate; /* Safari and Chrome */
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(-20deg);}
    to   {-webkit-transform: rotate(20deg);}
}

@-moz-keyframes rotation {
    from {-moz-transform: rotate(-20deg);}
    to   {-moz-transform: rotate(20deg);}
}

#loader-img
{
  display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    width: 120px;
    height: auto;
    margin-left: -60px;
    margin-top: -23px;
}
