html * {
  box-sizing: border-box;
}
html, body {
  font-size: 9px;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: #333;
  border: 0;
  outline: 0;
}
:focus {
  outline: none;
}
::-moz-focus-inner {
  border: 0;
}
p {
  margin: 0;
  padding: 0;
}
.not-active {
  pointer-events: none;
  cursor: default;
}
.btn {
  position: absolute;
  cursor: pointer;
  background-color: transparent;
}
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#main-container {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 300px;
  height: 250px;
  cursor: pointer;
}
.frames {
  position: absolute;
  width: 100%;
  height:100%;
  opacity: 0;
}
#bg-exit {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
#legal-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, .9);
    transition: top .3s cubic-bezier(0.465, 0.183, 0.153, 0.946);
}

#legal-checkbox {
    display: none;
}

#legal-checkbox:checked~#legal-content {
    top: 0;
}

#legal-checkbox~#legal-content>div {
    opacity: 0;
    transition: .3s opacity;
}

#legal-checkbox~#legal-content>div:nth-child(1) {
    transition-delay: .2s;
}

#legal-checkbox~#legal-content>div:nth-child(2) {
    transition-delay: .3s;
}

#legal-checkbox~#legal-content>div:nth-child(3) {
    transition-delay: .4s;
}

#legal-checkbox~#legal-content>div:nth-child(4) {
    transition-delay: .4s;
}

#legal-checkbox:checked~#legal-content>div {
    opacity: 1;
}

#legal-checkbox:checked~#legal-content .text-legal-container {
    opacity: 1;
    transform: translateY(-50%);
}

.text-legal-container {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.28px;
    color: white;
    position: absolute;
    padding: 40px 25px;
    top: 50%;
    text-align: center;
    font-family: 'Arial', 'Helvetica', sans-serif;
}


/* CTA Hover */

.cta span {
    opacity: 0;
    transition: opacity .3s;
    top: 0;
    left: 0px;
}

.cta:hover span {
    opacity: 1;
}
.all-reload{
  padding: 10px;
}
.contain{
  position: absolute;
  top: 15%;
}
.line{
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

#all-cta{
  cursor: pointer;
}
