* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    backface-visibility: hidden;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    font-family: 'Roboto', sans-serif;
    background-color: #0e5ed1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.onboarding,
.onboarding2 {
    --page-number: 1;
    position: relative;
    height: 100vh;
    width: 360px;
    overflow: hidden;
}
.onboarding .slider {
    width: 3400%;
}

.onboarding2 .slider {
    width: 4000%;
}

.onboarding .slider, .onboarding2 .slider {
    height: 100%;
    margin-left: calc(-360px * (var(--page-number) - 1));
}

.onboarding .slider .slide,
.onboarding2 .slider .slide {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;

    background-image: url("bg.png");
    background-repeat: no-repeat;
    background-position: center;
}

/* Custom CSS */

.logo {
    display: flex;
    margin-bottom: 36px;
}

.heading {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    align-self: flex-start;
}

.description {
    color: #fff;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.start {
    width: 140px;
    height: 35px;
    background-color: #52ff00;
    border-radius: 75px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    border: none;
    align-self: self-start;
    gap: 8px;

    position: relative;
    margin-top: 32px;
    z-index: 10;

    transition: top 1s;
    transition-timing-function: ease-in;
    margin-bottom: 32px;
}

.start a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    width: 100%;
}

.content {
    position: relative;
    padding: 0 25px;
}

.content-w-images {
    position: relative;
}

.dot {
    width: 0.563rem;
    height: 0.563rem;

    border-radius: 100%;
    background-color: #fff;
}

.active {
    background-color: #6a9ee8;
}

.img-wrapper {
    position: relative;
}

/* Loading */

div#loadingDiv {
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 11;

    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.one {
    position: absolute;
    border-radius: 50%;
    background: rgb(43, 106, 178);
    background: linear-gradient(
        180deg,
        rgba(43, 106, 178, 1) 0%,
        rgba(61, 151, 255, 1) 35%
    );
    opacity: 0;
    animation: loading 1.3s 0.65s;
    height: 20px;
    width: 20px;
}

.two {
    position: absolute;
    border-radius: 50%;
    background: rgb(43, 106, 178);
    background: linear-gradient(
        180deg,
        rgba(43, 106, 178, 1) 0%,
        rgba(61, 151, 255, 1) 35%
    );
    opacity: 0;
    animation: loading 1.3s 1.3s;
    height: 100px;
    width: 100px;
}

.three {
    position: absolute;
    border-radius: 100vw;
    background: rgb(43, 106, 178);
    background: linear-gradient(
        180deg,
        rgba(43, 106, 178, 1) 0%,
        rgba(61, 151, 255, 1) 35%
    );
    opacity: 0;
    animation: loading 1.3s 1.6s;
    height: 100vh;
    width: 100vw;
}

/* Backdrop Background */

.backdrop-images {
    width: 100vw;
    height: 100vh;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(11, 11, 11, 0.85);

    display: none;
}

/* Manual Animation */

.animation-out {
    width: 100%;
    height: 100vh;

    /* position: absolute; */
    display: block;
}

.animation-in {
    width: 100%;
    height: 100vh;
}

/* Ballon */

.ballon {
    background: #fff;
    border-radius: 5px;
    padding: 1rem;
    position: absolute;
    color: #3e3e41;
    z-index: 11;
    max-width: 300px;
    text-align: center;
}

.ballon::before {
    content: '';
    width: 19px;
    height: 19px;
    display: flex;
    background-image: url('../assets/pinion-ballon-before.svg');
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
    top: -15px;

    background-size: 19px 19px;
}

.ballon-right {
  background: #fff;
  border-radius: 5px;
  padding: 1rem;
  position: absolute;
  color: #3e3e41;
  z-index: 11;
  max-width: 300px;
  text-align: center;
}

.ballon-right::before {
  content: '';
  width: 19px;
  height: 19px;
  display: flex;
  background-image: url('../assets/pinion-ballon-before.svg');
  position: absolute;

  right: 10%;
  transform: translateX(-50%);
  top: -15px;

  background-size: 19px 19px;
}

.ballon-center {
    background: #fff;
    border-radius: 5px;
    padding: 1rem;
    position: absolute;
    color: #3e3e41;
    z-index: 11;
    max-width: 300px;
    text-align: center;
  }
  
  .ballon-center::before {
    content: '';
    width: 19px;
    height: 19px;
    display: flex;
    background-image: url('../assets/pinion-ballon-before.svg');
    position: absolute;
  
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
  
    background-size: 19px 19px;
  }

.ballon-left {
  background: #fff;
  border-radius: 5px;
  padding: 1rem;
  position: absolute;
  color: #3e3e41;
  z-index: 11;
  max-width: 300px;
  text-align: center;
}

.ballon-left::before {
  content: '';
  width: 19px;
  height: 19px;
  display: flex;
  background-image: url('../assets/pinion-ballon-before.svg');
  position: absolute;

  left: 28%;
  transform: translateX(-50%);
  top: -15px;

  background-size: 19px 19px;
}

.ballon-right-bottom {
    background: #fff;
    border-radius: 5px;
    padding: 1rem;
    position: absolute;
    color: #3e3e41;
    z-index: 11;
    max-width: 300px;
    text-align: center;
  }
  
  .ballon-right-bottom::before {
    content: '';
    width: 19px;
    height: 19px;
    display: flex;
    background-image: url('../assets/pinion-ballon-before.svg');
    position: absolute;
  
    right: 10%;
    transform: translateX(-50%);
    bottom: -15px;
  
    background-size: 19px 19px;
    transform: rotate(180deg);
  }

.ballon-txt {
    color: #3e3e41;
}

/* Quick Classes */

.absolute-center {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.fh-320 {
    min-height: 100px;
    display: flex;
    flex-direction: column;
}

.bold {
    font-weight: bold;
}

.text-4 {
    font-size: 1rem;
}

.text-24 {
    font-size: 1.5rem;
}

.tracking-5 {
    line-height: 1.25rem;
}

.text-blue {
    color: #0e5ed1;
}

.btn-next {
    cursor: pointer;
}
.btn-prev {
    cursor: pointer;
    margin-right: 20px;
}
.btn-reset {
    border: 0;
    cursor: pointer;
}

.gap-1 {
    gap: 4px;
}

.rounded-2 {
    border-radius: 8px;
}

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

.bg-white {
    background: #fff;
}

.bg-blue {
    background-color: #0e5ed1;
}

.bg-blue-dark {
    background-color: #3B7EDD;
}

.bg-blue-grey {
    background-color: #062654;
}

.bg-green {
    background-color: #82B52A;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-5 {
    margin-top: 20px;
}

.mt-6 {
    margin-top: 24px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.top-0 {
    top: 0;
    -webkit-transition:all 1s ease;
    -moz-transition:all 1s ease;
     -ms-transition:all 1s ease;
      -o-transition:all 1s ease;
         transition:all 1s ease;
}

.top-8 {
    top: 2rem;
}

.-top-50 {
    top: -50px;
}

.-top-100 {
    top: -100px;
}

.-top-150 {
    top: -150px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.-top-200 {
    top: -200px;
}

.-top-250 {
    top: -250px;
}

.top-10vh {
    top: 10vh;
}

.bottom-0 {
    bottom: 0;
}

.bottom-8 {
    bottom: 2rem;
}

.bottom-16 {
  bottom: 8rem;
}

.bottom-10vh {
    bottom: 10vh;
}

.left-0 {
    left: 0;
}

.left-before {
}

.right-0 {
    right: 0;
}

.b-30 {
    bottom: 30px;
}

.r-30 {
    right: 30px;
}

.justify-center {
    justify-content: center;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.align-center {
    align-items: center;
}

.relative {
    position: relative;
}

.self-center {
    align-self: center;
}

.self-end {
    align-self: flex-end;
}

.absolute {
    position: absolute;
}

.w-100vw {
    width: 100vw;
}

.h-100vh {
    height: 100vh;
}

.w-full {
    width: 100%;
}

.blur {
    filter: blur(2px);
}

.z-10 {
    z-index: 10;
}

.z-11 {
    z-index: 11;
}

.flex {
    display: flex;
}

.none {
    display: none;
}

.fixed {
    position: fixed;
}

.w-transition {
    width: 100%;
    transition: width 1s;
}

.top-transition {
    top: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

/* Keyframes */

@keyframes backInUpManual {
    0% {
        -webkit-transform: translate(-50%) scale(1);
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
    }

    80% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes loading {
    0% {
        opacity: 0;
        transform: scale(0.15);
        box-shadow: 0 0 2px rgba(black, 0.1);
    }
    50% {
        opacity: 1;
        transform: scale(2);
        box-shadow: 0 0 10px rgba(black, 0.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
        box-shadow: 0 0 2px rgba(black, 0.1);
    }
}

/* Media Query */

@media screen and (max-width: 400px) {
    .thumbnail {
        display: block;
    }
}

.btn-continue {
    padding: 0 25px;
}
.btn-arrows {
    display: none;
}
.checklist-description {
    margin-left: 10px;
}
.padding-top-10 {
    padding-top: 10px;
}