@import url("fonts/fonts.css");

html{
  font-size: 62.5% !important;
  background-color: #ffffff;

  /*Small Desktop Screens*/
  @media screen and (max-height:720px) and (max-width: 1280px) {
    font-size: 50% !important;
  }

  /*Mobile Phones and Tablets*/
  @media only screen and (max-width:768px){
    font-size: 62.5% !important;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.before-init {
  height: 100vh;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.loader {
  text-align: center;
  align-self: center;
  width: 34px;
  height: 34px;
  border: .3rem solid #ddd;
  border-bottom-color: #268038;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.label-loader {
  margin-left: 1.6rem;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  color: #292C2E;
}

a{
  text-decoration: underline;
}

body {
  position: relative;
  margin: 0;
  font-family: sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  monospace;
}

.cookies-policy {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
  justify-content: center;
}

.cookies-policy.d-none {
  display: none;
}

#ot-sdk-btn {
  @media screen and (min-width: 1024px) {
    margin-top:2rem;
    position:absolute;
    bottom:0;
    left:28.6%;
  }
}
