@import "https://fonts.googleapis.com/css?family=Open+Sans:400,600";

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  margin: 0;
}

.body {
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  padding-bottom: 75px;
  position: relative;
}

.container {
  min-width: 768px;
  width: 100%;
  max-width: 980px;
  margin: auto;
  padding: 0 20px;
}

.container.main {
  position: relative;
  padding: 20px;
}

.intro-text h1 {
  text-align: center;
}

.action-btns {
  display: flex;
  justify-content: space-between;
}

.back-btn {
  background-color: #eaecf1;
  font-weight: 800;
  height: 50px;
  line-height: 40px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 16px;
  border: none;
  width: 120px;
  margin: 20px 0 0 0;
  display: block;
  outline: none;
}

.back-btn:not(:disabled):hover {
  background-color: #dfe1e8;
  cursor: pointer;
}

.back-btn:disabled {
  background-color: #f0f1f3;
  color: #c2c8d3;
}

.next-btn {
  background-color: #445c95;
  color: #fff;
  font-weight: 800;
  height: 50px;
  line-height: 40px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 16px;
  border: none;
  width: 120px;
  margin: 20px 0 0 auto;
  display: block;
  outline: none;
}

.next-btn:not(:disabled):hover {
  background-color: #0e2e7c;
  cursor: pointer;
}

.next-btn:disabled {
  background-color: #f0f1f3;
  color: #c2c8d3;
}

.footer {
  background-color: #c2c7d2;
  height: 75px;
  position: absolute;
  bottom: 0;
  width: 100%;
  min-width: 768px;
}

.footer p {
  margin: 0;
  height: 22px;
}

.header {
  background: url("/bundles/concertopanel/files/images/mabel-bg.png");
  background-size: auto 100%;
  height: 60px;
  min-width: 768px;
}

.header .container {
  display: flex;
  flex-direction: row;
  justify-content: left;
}

.header h1 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-top: 19px;
  margin-left: 20px;
}

.header .logo {
  width: 100px;
  margin-top: 9px;
}

.header .logo img {
  width: 100%;
  border-radius: 0 0 10px 10px;
}

.lds-dual-ring {
  display: block;
  margin: 100px auto;
  width: 100px;
  height: 100px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 80px;
  height: 80px;
  margin: 1px;
  border-radius: 50%;
  border: 8px solid #445c95;
  border-color: #445c95 transparent #445c95 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

.items-video-container video {
  width: 100%;
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.footer .tooltip {
  opacity: 0;
  display: none;
  position: absolute;
  width: 60px;
  right: -62px;
  top: 3px;
  transition: 0.3s;
  pointer-events: none;
}

@media (min-width: 1120px) {
  .footer .icon-btn .tooltip {
    display: block;
  }

  .footer .icon-btn:hover .tooltip {
    opacity: 1;
  }
}

.tooltip-btn {
  position: relative;
}

.tooltip-btn .tooltip {
  opacity: 0;
  display: none;
  position: absolute;
  left: 34px;
  background-color: white;
  pointer-events: none;
}

.question-container .tooltip-btn .tooltip  {
  transition: 0.3s opacity;
}

@media (min-width: 1120px) {
  .tooltip-btn .tooltip {
    display: block;
  }

  .tooltip-btn:hover .tooltip {
    opacity: 1;
  }
}