@font-face {
  font-family: 'LeagueSpartan';
  src: url('./league-spartan-master/webfonts/leaguespartan-bold.woff2') format('woff2'),
       url('./league-spartan-master/webfonts/leaguespartan-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'LeagueSpartan', sans-serif !important;
  letter-spacing: -1px !important;
  line-height: 1.2 !important;
}


body {
  font-family: SF Pro Text, SF Pro Icons, AOS Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: #1d1d1f;
  font-style: normal;
  padding-left: 22px;
  max-width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  body {
    padding-left: 10px;
    padding-right: 10px;
  }
}

body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

#backgroundVideo {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2; /* Lower the z-index value */
  transform: translate(-50%, -50%);
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

#mobileBackgroundVideo {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2; /* Lower the z-index value */
  transform: translate(-50%, -50%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

/* This media query will be triggered for screen sizes less than or equal to 768px */
@media (max-width: 768px) {
  #backgroundVideo {
    display: none;
  }
  #mobileBackgroundVideo {
    display: block;
  }
}

#video-container {
  z-index: -2;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

#overlay {
  background: url('./images/desktop-back.svg') no-repeat center center fixed;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  opacity: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: showOverlay 7s forwards;
}

/* Add keyframes for the showOverlay animation */
@keyframes showOverlay {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body.overlay-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

#overlay-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.prices-phase-popup {
  background-color: rgba(228, 255, 237, 0.85);
}

.prices-phase-overlay {
  background-image: url('./images/upgrade-desktop-back.svg');
}

#popup {
  background-color: rgb(228, 242, 255, 0.85);
  position: fixed;
  top: 16%;
  opacity: o;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%);
  width: 80%;
  max-width: 640px;
  max-height: 730px;
  padding: 0px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  z-index: 1001;
  border-radius: 18px;
  animation: showOverlay 5s forwards;
  display: flex;
  flex-direction: column;
}

/* Add keyframes for the showPopup animation */
@keyframes showPopup {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 600px) {
  #popup {
    position: fixed;
    top: auto;
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    min-height: 85%;
    max-height: 85%;
    border-radius-top: 30px;
  }
}

/* Large phones */
@media screen and (min-width: 321px) and (max-width: 767px) {
  #popup {
    width: 100%;
  }
}

/* Tablets */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #popup {
    width: 100%;
  }
}

.header-container {
  background-color: rgb(228, 242, 255, 0, 0);
  height: 15%;
  border-radius: 18px;
}

#header-text {
  position: sticky;
  top: 0;
  padding-bottom: 20px;
  color: rgb(104, 103, 103);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  width: 100%;
}

/* Small phones */
@media screen and (max-width: 440px) {
  .header-container {
font-size: 25%;
  }
}

/* Large phones */
@media screen and (min-width: 440px) and (max-width: 660px) {
  .header-container {
    font-size: 22%;
    margin-bottom: 30px;
      }
    }
/* Tablets */
@media screen and (min-width: 660px) and (max-width: 1024px) {
  .header-container {
    font-size: 19%;
      }
    }

.content-container {
  margin-top: 0px;
  margin-left: 90px;
  margin-right: 90px;
  margin-bottom: 10%;
  overflow-y: auto;
  max-height: calc(100% - 50px);
}

/* Small phones */
@media screen and (max-width: 440px) {
  .content-container {
    min-width: none;
    margin-left: 30px;
    margin-right: 30px;
    max-height: 80%;
    margin-bottom: 0%;
  }
}

/* Large phones */
@media screen and (min-width: 440px) and (max-width: 660px) {
  .content-container {
    margin-left: 45px;
    margin-right: 45px;
  }
}

/* Tablets */
@media screen and (min-width: 660px) and (max-width: 1024px) {
  .content-container {
    margin-left: 60px;
    margin-right: 60px;
  }
}

#buttonWrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

#phase1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.instagram-button {
  background-color: #E1306C;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.instagram-button:hover {
  background-color: #D6245F;
}


.transition-button {
  background-color: #007BFF;
  font-size: 1em;
  color: white;
  border-radius: 30px;
  padding: 10px 26px;
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: 10px;
  margin-right: 10px;
  min-width: 30%;
  width: auto; /* Reduce width by 60% */
  min-width: 120px;
  height: 50px; /* Adjust height automatically */
  text-align: center;
}

.outcome-button {
  background-color: #007BFF;
  font-size: 1em;
  color: white;
  border-radius: 26px;
  padding: 10px 16px;
  max-width: 55%;
  height: auto; /* Adjust height automatically */
  text-align: center;
}

.selection-button:hover:not(:disabled) {
  background-color: #b0d6ff;
}

.selection-button-blue {
  background-color: #007BFF;
  color: white;
  border: 1px solid #ccc;
  font-size: 110%;
  font-weight: 540;
  width: 75%;
  text-align: center; /* Align text to the left */
  margin-bottom: 70px;
}

.selection-button-down {
  background-color: rgb(255, 255, 255);
  color: #007BFF;
  border: 1px solid #007BFF;
  font-size: 103%;
  font-weight: 540;
  width: 75%;
  text-align: center; /* Align text to the left */
  margin-bottom: 70px;
}

.selection-button {
  background-color: rgb(255, 255, 255);
  color: #007BFF;
  border: 1px solid #007BFF;
  font-size: 100%;
  font-weight: 540;
  height: 80%;
  width: 75%;
  margin-bottom: 12px;
  text-align: center; /* Align text to the left */
  padding: 22px; /* Add padding to the left of the text */
}

.selection-button-whatsapp {
  background-color: white;
  color: rgb(37, 211, 102);
  border: 1px solid rgb(37, 211, 102);
  font-size: 100%;
  font-weight: 540;
  width: 75%;
  text-align: center;
  padding: 22px;
  margin-bottom: 12px;
  margin-top: 12px;
}

.selection-button, .selection-button-down, .selection-button-blue, .selection-button-whatsapp {
  min-width: 260px;
}

.selection-button-blue:hover:not(:disabled) {
  background-color: #a0ceff;
  border: 1px black;
}

.go-back-button {
  background-color: transparent;
  font-size: 1em;
  color: #007BFF;
  border: 2px solid lightblue;
  border-radius: 30px;
  padding: 10px 25px;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  max-width: 120px;
  height: 50px;
  text-align: center;
}

.download-button {
  background-color: transparent;
  font-size: 1em;
  color: #007BFF;
  border: 2px solid lightblue;
  border-radius: 30px;
  padding: 10px 16px;
  margin-top: 10px;
  margin-left: 0px;
  margin-right: 10px;
  margin-bottom: 25px;
  width: 30%;
  height: 50px;
  text-align: center;
}

.start-button {
  background-color: #007BFF;
  font-size: 1em;
  color: #ffffff;
  border: 2px solid lightblue;
  border-radius: 30px;
  padding: 10px 16px;
  margin-top: 10px;
  margin-left: 0px;
  margin-right: 10px;
  margin-bottom: 50px;
  width: 30%;
  height: 50px;
  text-align: center;
}

.buttons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: 0px;
}

button {
  font: SF Pro Text;
  cursor: pointer;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 15px;
  width: 75%;
  font-size: 16px;
  text-align: left; /* Align text to the left */
  padding-left: 26px; /* Add padding to the left of the text */
}

/* Small phones */
@media screen and (max-width: 440px) {
  button, .button-down {
    width: 90%;
  }
}

/* Large phones */
@media screen and (min-width: 440px) and (max-width: 660px) {
  button, .button-down {
    width: 75%;
  }
}

/* Tablets */
@media screen and (min-width: 660px) and (max-width: 1024px) {
  button, .button-down {
    width: 75%;
  }
}

.button-down {
  font: SF Pro Text;
  cursor: pointer;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 55px;
  max-width: 75%;
  font-size: 16px;
  text-align: left; /* Align text to the left */
  padding-left: 26px; /* Add padding to the left of the text */
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}

select,
button {
  padding: 22px;
  margin-bottom: 15px;
}

.selected-button {
  font: SF Pro Text;
  font-weight: 550;
  cursor: pointer;
  background-color: rgb(200, 228, 255);
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 15px;
  width: 69%;
  font-size: 18px;
  text-align: left; /* Align text to the left */
  padding-left: 26px; /* Add padding to the left of the text */
}

/* Small phones */
@media screen and (max-width: 440px) {
  .selected-button {
    width: 85%;
  }
}

/* Large phones */
@media screen and (min-width: 440px) and (max-width: 660px) {
  button, .button-down {
    width: 80%;
  }
}

/* Tablets */
@media screen and (min-width: 660px) and (max-width: 1024px) {
  button, .button-down {
    width: 75%;
  }
}
.container {
  max-width: 600px;
  margin: 20px;
  text-align: center;
}

button:disabled {
  background-color: #B0C4DE;
}

button:hover:not(:disabled) {
  border: 1px black;
}

button {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

h2 {
  margin-top: 35px;
  margin-bottom: 15px;
}

h3 {
  font-size: 2em;
  margin-top: 30px;
  margin-bottom: 0px;
  width: 80%;
}

.h33 {
  font-size: 2em;
  margin-top: 3px;
  margin-bottom: 0px;
}

h4 {
  font-size: 3.6em;
  margin-top: 70px;
  margin-bottom: 8px;
  line-height: 2;
}

/* Small phones */
@media screen and (max-width: 400px) {
  h4 {
font-size: 2.8em;
  }
}

h5 {
  font-size: 2em;
  margin-top: 0px;
  margin-bottom: 30px;
  line-height: 1;
  padding-left: 0px;
}

h6 {
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 8px;
  line-height: 1;
}

.hwelcome, .hwelcome-blue {
  font-size: 2.8em !important; /* Keep this size */
  font-weight: bold; /* Ensure the text is bold */
  text-align: center;
  margin-top: 20px; /* Space above the header */
  margin-bottom: 0; /* No space below the header */
  line-height: 1; /* Tight line height */
  padding-top: 20px; /* Padding only at the top */
  padding-bottom: 0; /* No padding at the bottom */
}

/* Adjust media queries as previously defined... */* Small phones */
@media screen and (max-width: 400px) {
  .hwelcome, .hwelcome-blue {
    font-size: 1.7em;
    padding-top: 20px; /* Maintain top padding */
    padding-left: 15px; /* Increase side padding */
    padding-right: 15px; /* Increase side padding */
    padding-bottom: 0; /* No padding at the bottom */
  }
}

/* Large phones */
@media screen and (min-width: 400px) and (max-width: 660px) {
  .hwelcome, .hwelcome-blue {
    font-size: 2em;
    padding-top: 20px; /* Maintain top padding */
    padding-left: 15px; /* Increase side padding */
    padding-right: 15px; /* Increase side padding */
    padding-bottom: 0; /* No padding at the bottom */
  }
}

/* Tablets */
@media screen and (min-width: 660px) and (max-width: 1024px) {
  .hwelcome, .hwelcome-blue {
    font-size: 2.6em;
    padding-top: 20px; /* Maintain top padding */
    padding-left: 20px; /* Adjust side padding */
    padding-right: 20px; /* Adjust side padding */
    padding-bottom: 0; /* No padding at the bottom */
  }
}

/* Desktops */
@media screen and (min-width: 1024px) {
  .hwelcome, .hwelcome-blue {
    font-size: 5em; /* Larger size for desktop */
    padding-top: 30px; /* More padding for top */
    padding-left: 30px; /* More padding for side */
    padding-right: 30px; /* More padding for side */
    padding-bottom: 0; /* No padding at the bottom */
  }
}

/* Small phones */
@media screen and (max-width: 400px) {
  .hwelcome, .hwelcome-blue, .htradein, .hwelcome-green, h3 {
font-size: 1.3em;
  }
}

/* Large phones */
@media screen and (min-width: 400px) and (max-width: 660px) {
  .hwelcome, .hwelcome-blue, .htradein, .hwelcome-green, h3 {
    font-size: 1.7em;
      }
    }

/* Tablets */
@media screen and (min-width: 660px) and (max-width: 1024px) {
  .hwelcome, .hwelcome-blue, .htradein, .hwelcome-green {
    font-size: 2.6em;
      }
    }

.hwelcome-blue {
  color: #18577B;
  margin-bottom: 0px;
}

.hwelcome-green {
  font-size: 2em;
  color: #6DA64A;
  text-align: left;
  margin-top: 0px;
  margin-bottom: 18px;
  line-height: 1;
}

.hprices {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 8px;
  line-height: 1;
}

.htradein {
  font-size: 1.8em;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 8px;
  line-height: 1;
}

.hloading {
  font-size: 2em;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 3px;
  line-height: 1;
}

.hswap {
  font-size: 2.1em;
  margin-top: 30px;
  margin-bottom: 8px;
  line-height: 1;
}

p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 1em;
  margin-top: 7px;
  margin-bottom: 5px;
}


@media screen and (max-width: 440px) {
  .p, .par5, .par5output, .par4 {
 margin-inline-start: 10px !important;
 margin-inline-end: 10px !important;
  }
}

.par2 {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 1em;
  margin-inline-end: 45px;
  margin-top: 0px;
  margin-bottom: 25px;
}

.par22 {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 1em;
  margin-inline-end: 10px;
  margin-top: 0px;
  margin-bottom: 25px;
}


.par3 {
  display: block;
  font-weight: 600;
  margin-block-start: 0em;
  margin-block-end: 1em;
  margin-top: 8;
  margin-bottom: 10px;
}

.par4 {
  display: block;
  color: #454545;
  font-size: smaller;
  font-weight: 400;
  text-align: center;
  margin-inline-start: 50px;
  margin-inline-end: 50px;
  margin-top: 8;
  margin-bottom: 25px;
}

.par44 {
  display: block;
  color: #454545;
  font-size: smaller;
  font-weight: 400;
  text-align: center;
  margin-block-start: 0em;
  margin-block-end: 1em;
  margin-top: 2;
  margin-bottom: 2px;
}

.par5 {
  display: block;
  text-align: center;
  margin-inline-start: 40px;
  margin-inline-end: 40px;
  margin-bottom: 0px;
}

.par5output {
  display: block;
  text-align: center;
  margin-inline-start: 40px;
  margin-inline-end: 40px;
  margin-top: 8px;
  margin-bottom: 0px;
}

/* Small phones */
@media screen and (max-width: 440px) {
  .par5 {
  size: 10px;
  }
}

.par55 {
  display: block;
  text-align: center;
  margin-inline-start: 35px;
  margin-inline-end: 35px;
  margin-top: 3px;
  margin-bottom: 25px;
}

/* Small phones */
@media screen and (max-width: 440px) {
  .par55 {
  size: 10px;
  }
}

.par505 {
  display: block;
  text-align: center;
  margin-inline-start: 15px;
  margin-inline-end: 15px;
  margin-top: 0px;
  margin-bottom: 3px;
}

.par6 {
  font-size: 120%;
  display: block;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 0px;
  padding-left: 20%;
  padding-right: 20%;
}

@media screen and (max-width: 300px) {
  .par6 {
  margin-top: 8px;
  size: 12px;
  padding-left: 10% !important;
  padding-right: 10%;
  }
}

@media screen and (max-width: 600px) {
  .par6 {
  margin-top: 8px;
  size: 12px;
  padding-left: 10% !important;
  padding-right: 10%;
  }
}

.par66 {
  font-size: 120%;
  display: block;
  text-align: center;
  margin-block-start: 0em;
  margin-block-end: 1em;
  margin-bottom: 0px;
}

/* Small phones */
@media screen and (max-width: 440px) {
  .par6 {
  size: 12px;
  }
}

.par7 {
  display: block;
  text-align: center;
  margin-block-start: 0em;
  margin-block-end: 1em;
  margin-top: 15px;
  margin-bottom: 25px;
}

.par8 {
  display: block;
  text-align: center;
  margin-block-start: 0em;
  margin-block-end: 1em;
  margin-top: 10px;
  margin-bottom: 10px;
}

li {
    display: block;
    margin-block-start: 0em;
    margin-block-end: 1em;
    margin-top: 8;
    margin-bottom: 00px;
}

ul {
  list-style-type: disc;
  padding-left: 0em;
  margin-bottom: 10px;
}

/* Small phones */
@media screen and (max-width: 440px) {
  ul {
font-size: 85%;
  }
}

/* Large phones */
@media screen and (min-width: 440px) and (max-width: 660px) {
  ul {
font-size: 90%;
  }
}

.hidden {
  display: none;
}

.step {
  display: none;
}

a {
  text-decoration: none;
}

.step-title {
  font-weight: bold;
  margin-bottom: 5px;
}

select {
  height: 40px;
}

form {
  display: flex;
  flex-direction: column;
}

.table {
  width: 77%;
  margin: 53px auto auto;
  border-collapse: collapse;
  border-spacing: 0;
}
  
html {
  font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 106.25%;
  quotes: "“" "”";
  -webkit-text-size-adjust: 100%;
  color: text;
}
  
/* Center the table */
.dd-table {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}

.dd-table th {
  font-weight: normal;
  background-color: #f2f2f2;
  font-size: 1em;
  padding-left: 8px;
}
  
.dd-table td {
  font-weight: normal;
  padding-left: 8px;
}
  
.dd-table td:last-child {
  font-weight: bold;
  text-align: right;
  padding-right: 12px;
  width: 35%;
}
  
.dd-table td:first-child {
color: #18577B;
}

.dd-table th {
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  padding: 8px;
  text-align: left;
  font-size: 1.2em;
}


.dd-table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  padding: 7px;
  padding-left: 12px;
  text-align: left;
  font-size: 1em;
}


/* Center the table */
.dp-table {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}

.dp-table th {
  font-weight: normal;
  background-color: #f2f2f2;
  font-size: 1em;
  padding-left: 8px;
}
  
.dp-table td {
  font-weight: normal;
  padding-left: 8px;
}
  
.dp-table td:last-child {
  font-weight: bold;
  text-align: right;
  padding-right: 12px;
  width: 35%;
}
  
.dp-table td:first-child {
color: #000000;
font-size: 0.95em;
}

.dp-table th {
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  padding: 8px;
  text-align: left;
  font-size: 1.2em;
}


.dp-table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  padding: 7px;
  padding-left: 12px;
  text-align: left;
  font-size: 1em;
}

.lcc {
  margin-left: 10%;
  margin-right: 10%;
}

/* Small phones */
@media screen and (max-width: 400px) {
.lcc {
  margin-left: 3%;
  margin-right: 3%;
  }
}

.loading-bar {
  width: 80%;
  height: 10px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 10px;
  overflow: hidden;
}

/* Small phones */
@media screen and (max-width: 400px) {
.loading-bar {
  width: 90%;
  }
}

.loading-bar::before {
  content: "";
  position: absolute;
  width: 70%;
  margin-left: 10%;
  margin-right: 10%;
  height: 10px;
  border-radius: 4px;
  background-color: #18577B;
  animation: loading 3s infinite;
}

.loading-header {
  color: #18577B;
  font-size: 18px;
  text-align: center;
  margin-bottom: 16px;
}

.loading-subheader {
  display: block;
  text-align: center;
  margin-inline-start: 15%;
  margin-inline-end: 15%;
  margin-top: 3px;
  margin-bottom: 13px;
}

/* Small phones */
@media screen and (max-width: 400px) {
  .loading-subheader {
  margin-inline-start: 3%;
  margin-inline-end: 3%;
  }
}

.loading-text {
  color: #18577B;
  text-align: center;
  justify-content: center;
  font-size: 12px;
  margin: 2px 0;
  animation: fadeInOut 2.6s infinite;
  margin-bottom: 10px;
}

.loading-bar-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; /* Added */
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #18577B;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


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

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
