/*
 * @title       I'm Not a Human
 *
 * @date        2021
 *
 * @artist      Cadie Desbiens-Desmeules <contact@push1stop.com>
 *              https://desbiens-desmeules.com
 *
 *              Hicetnunc: https://www.hicetnunc.xyz/tz/tz1Q5kA2FxYJAVV8DXrTcmFwqejc1T5iTfqb
 *              Tezos Public Key: tz1Q5kA2FxYJAVV8DXrTcmFwqejc1T5iTfqb
 *
 * @author      Code written by Michael Gary Dean <contact@michaeldean.ca>
 *              https://michaelgarydean.com
 *              github.com/michaelgarydean
 * 
 * @description False "catcha" created for Cadie Desbiens-Desmeules <contact@push1stop.com>
 *              for her artworks based on privacy and personal data.
 */
/* GLOBAL VARIABLES */
/* blue */
/* black */
@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  /* Use system font, then swap for loaded font when loaded */
  src: local("Roboto"), local("Roboto-Regular"), url("/Roboto-Regular.woff2") format("woff2"), url("/Roboto-Regular.woff") format("woff");
  unicode-range: U+000-5FF;
  /* Download only latin glyphs */
}
/* HICETNUNC */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Helvetica, sans-serif;
}

body {
  overflow: hidden;
  background: #ffffff;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* CONTAINERS */
.container-main {
  width: 100vw;
  height: 100vh;
}

/* 
 * CATCHA STYLING
 */
.catcha-placement, .catcha-outer-border, .catcha-inner-border, .image-placeholder, .centered-container {
  position: absolute;
  width: 304px;
  height: 78px;
}

.centered-container {
  background-color: #F9F9F9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.image-placeholder {
  background: url("images/placeholder-image.png") no-repeat;
  background-size: 304px 78px;
  height: 100%;
}

/* Borders */
.catcha-outer-border, .catcha-inner-border {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-color: #F6F6F6;
  border-style: solid;
  border-width: 2px;
}

.catcha-inner-border {
  /* leave space for the little grey border */
  width: calc(304px - 2px);
  height: calc(78px - 2px);
  border-color: #D3D3D3;
  border-width: 1px;
  border-radius: 3px;
}

/* Interior elements */
.catcha-interior-elements-container {
  padding: 11px 11px 5px 9px;
  /* subtract the margins, but also the border box size */
  height: calc(100%);
  width: calc(100%);
}

.im-not-human-container {
  float: left;
  height: 28px;
  /*size of button*/
  margin-top: 11px;
}

/* I'm not a human button */
.catcha-button-container {
  width: 28px;
  height: 28px;
  display: inline-block;
  position: relative;
}

#catcha-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  margin: 0px 3px;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  border-style: solid;
  border-color: #C1C1C1;
  border-radius: 3px;
  background-color: #FFFFFF;
  cursor: pointer;
}

.button-animation-disappear {
  /* Animate Fade out of title text */
  animation-name: fade-out-and-shrink;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fade-out-and-shrink {
  from {
    opacity: 1;
    width: 100%;
    height: 100%;
  }
  to {
    opacity: 0;
    width: 0%;
    height: 0%;
  }
}
.im-not-a-human-label {
  font-size: 14px;
  position: absolute;
  margin: 0;
  padding: 0;
  line-height: 28px;
  padding-left: 15px;
}

#catcha-button:hover {
  border-color: #B2B2B2;
}

/* Catcha logo and text */
.catcha-logo-container {
  float: right;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  color: #555555;
}

.catcha-logo {
  width: 29px;
  height: 29px;
  background: url("catcha-logo.png") no-repeat;
  background-size: 100% 100%;
}

.text-color, .recatcha-links, .recatcha-text {
  color: #555555;
}

.recatcha-text {
  font-size: 10px;
  margin-top: 6px;
}

.recatcha-links {
  font-size: 8px;
  margin-top: 2px;
}

/* ANIMATIONS */
#spinning-wheel-animation {
  height: 35px;
  width: 35px;
  position: absolute;
  top: 19px;
  z-index: -1;
}

/*# sourceMappingURL=style.css.map */
