/*
Theme Name: Fakeout
Author: the Innodel Team
Author URI: https://www.innodel.com/
Description: Custom WordPress Theme for new game.
Requires at least: WordPress 5.0.0
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fakeout
Tags: custom theme, one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready.
*/

/* Theme CSS */
@font-face {
  font-family: "AvenirNext-Regular";
  src: url("fonts/AvenirNext-Regular.eot");
  src: url("fonts/AvenirNext-Regular.woff") format("woff"),
    url("fonts/AvenirNext-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNext-Medium";
  src: url("fonts/AvenirNext-Medium.eot");
  src: url("fonts/AvenirNext-Medium.woff") format("woff"),
    url("fonts/AvenirNext-Medium.ttf") format("truetype");
  font-weight: medium;
  font-style: medium;
}

@font-face {
  font-family: "AvenirNext-DemiBold";
  src: url("fonts/AvenirNext-DemiBold.eot");
  src: url("fonts/AvenirNext-DemiBold.woff") format("woff"),
    url("fonts/AvenirNext-DemiBold.ttf") format("truetype");
  font-weight: bold;
  font-style: bold;
}

@font-face {
  font-family: "AvenirNext-Bold";
  src: url("fonts/AvenirNext-Bold.eot");
  src: url("fonts/AvenirNext-Bold.woff") format("woff"),
    url("fonts/AvenirNext-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: bold;
}

@font-face {
  font-family: "KaushanScript-Regular";
  src: url("fonts/KaushanScript-Regular.eot");
  src: url("fonts/KaushanScript-Regular.woff") format("woff"),
    url("fonts/KaushanScript-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: medium;
}

@font-face {
  font-family: "AvenirLTStd-Roman";
  src: url("fonts/AvenirLTStd-Roman.eot");
  src: url("fonts/AvenirLTStd-Roman.woff") format("woff"),
    url("fonts/AvenirLTStd-Roman.ttf") format("truetype");
  font-weight: medium;
  font-style: medium;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a {
  margin: 0;
  padding: 0;
  line-height: 1;
}

a {
  text-decoration: none;
  outline: none;
  color: #5197e9;
  cursor: pointer;
}
strong {
  color: #686565;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
}
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  border: none;
}

.clearfix:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: "";
}
.clr,
.cl,
.clear {
  clear: both;
}
.loader {
  display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0.8;
    top: 0;
    background-color: #000000;
}

.spinner {
  height: 5vh;
  width: 5vh;
  border: 6px solid rgba(0, 174, 239, 0.2);
  border-top-color: rgba(0, 174, 239, 0.8);
  border-radius: 100%;
  animation: rotation 0.6s infinite linear 0.25s;

  /* the opacity is used to lazyload the spinner, see animation delay */
  /* this avoid the spinner to be displayed when visible for a very short period of time */
  opacity: 0;
}

@keyframes rotation {
  from {
    opacity: 1;
    transform: rotate(0deg);
  }
  to {
    opacity: 1;
    transform: rotate(359deg);
  }
}
 .userLogin .error a {
    display: none;
}