/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Oswald';
    font-weight: 400; */
}

body {
    font-family: 'Oswald', sans-serif;
}

:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --orange: #F26F26;
}

.bg-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-image {
    background-image: url("../assets/images/large_logo.svg  ");
    background-repeat: no-repeat;
    height: 250px;
    width: 250px;
    z-index: 1;
    background-size: cover;
    background-position: center;
    align-self: center;
    margin-right: 0;
}

.bg-black {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100vh;
    width: 100%;
    z-index: 1;
}

.background-master {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    width: 100%;
    flex-direction: row;
    z-index: 1;
}

.header-contents>h1 {
    letter-spacing: 5px;
    font-weight: 500;
    font-size: 30px !important;
    font-family: 'Oswald';
    padding-bottom: 15px;
}

.header-contents > span {
    font-weight: 500;
    font-family: 'Oswald';
    letter-spacing: 8px;
}

.header-code-text {
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--orange);
    line-height: 100%;
}

.register-link-test{
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    line-height: 300%;
    font-family: 'Oswald';
}

.register-container{
    margin-top: 30px;
}

.register-left-box h6 {
    font-size: 1.1rem;
    color: var(--orange);
    font-weight: 500;
}

.register-left-box p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.register-step-container{
    line-height: 200%;
}

.steps-group{
    line-height: 150%;
    font-family: 'Oswald';
    font-weight: 400;
    letter-spacing: 1.5px;
}

.register-left-box h5, .register-right-box h5{
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 300%;
}

.register-right-box ul li{
    list-style: none;
    color: var(--white);
    line-height: 200%;
    font-weight: 600;
}

.section-container{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}


.video-container{
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}



.video-element{
    width:100vw;
    height: 100vh;
    object-fit: cover;
}

.video-element-portrait{
    width:auto;
    height: 100vh;
    text-align: center;
}

@media (max-width: 768px) {
    body {
      font-size: 16px; /* Adjust font size for smaller screens */
    }
  
    .video-element{
        width:100%;
        height: 100%;
        object-fit: cover;
    }

    .header-code-text {
        font-size: 2.8rem;
        font-weight: 600;
        letter-spacing: 4px;
        color: var(--orange);
        line-height: 100%;
    }

    .register-link-test {
        color: var(--white);
        font-size: 19px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        line-height: 230%;
        font-family: 'Oswald';
    }
  }

.spinner {
    display: none;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: conic-gradient(
      from 180deg at 50% 50%,
      rgba(82, 0, 255, 0) 0deg,
      #F26F26 360deg
    );
    animation: spin 2s infinite linear;
  }
  .spinner::before {
    content: "";
    border-radius: 50%;
    width: 80%;
    height: 80%;
    background-color: #000;
  }
  
  @keyframes spin {
    to {
      transform: rotate(1turn);
    }
  }
  

  .display-loader{
    display: grid;
  }
  
  .spinner-container{
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: #000;
  }

  .webplayer-element.landscape {
      display: block;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
  }

  .webplayer-element.portrait {
      display: block;
      width: 100vw;
      height: 100vh;
      object-fit: scale-down !important;
      background-color: #04040C !important;
  }
  .webplayer-element {
      display: none;
  }

  .webplayer-element.active {
      display: block;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      background-color: #04040C !important;
  }
img.webplayer-element.active {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: scale-down;
}

  /* unique codes alert ui */

  .fancy-alert {
      color: white;
      width: 78px;
      z-index: 99;
      top: 0px;
      margin-left: auto;
      margin-right: auto;
      left: 0;
      right: 0;
      position: fixed;
      overflow: hidden;
      opacity: 0;
      height: 50px;
      -moz-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
      -webkit-transform: scale(0, 0);
      transform: scale(0, 0);
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      -webkit-transition: all 0.5s;
      transition: all 0.5s;
  }

  .fancy-alert.fancy-alert__active {
      opacity: 1;
      top: 20px;
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
  }

  .fancy-alert.fancy-alert__extended {
      width: 850px;
  }

  .fancy-alert.fancy-alert__extended .fancy-alert--content {
      opacity: 1;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      -webkit-transition: all 0.5s;
      transition: all 0.5s;
  }

  .fancy-alert.fancy-alert__extended .fancy-alert--words {
      top: 5px;
      opacity: 1;
  }

  .fancy-alert.error {
      background-color: #D64646;
      top: 50%;
  }

  .fancy-alert a {
      color: white;
      text-decoration: underline;
  }

  .fancy-alert .fancy-alert--content {
      padding: 10px;
      opacity: 0;
  }

  .fancy-alert .fancy-alert--words {
      font-size: 15px;
      font-weight: 600;
      padding: 0 18px 0 90px;
      max-width: 80%;
      position: relative;
      top: -50px;
      opacity: 0;
      height: 60px;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      -moz-transition-delay: 0.5s;
      -o-transition-delay: 0.5s;
      -webkit-transition-delay: 0.5s;
      transition-delay: 0.5s;
  }

  .fancy-alert .fancy-alert--close {
      position: absolute;
      text-decoration: none;
      right: 10px;
      top: 10px;
      font-size: 15px;
      padding: 6px 9px;
      background: rgba(0, 0, 0, 0.12);
  }

  .show-alert {
      border: 0;
      background: #F2F2F2;
      padding: 15px 70px;
      font-weight: bold;
      border-radius: 5px;
      border-bottom: 3px solid #C8C8C8;
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.23), inset 0 -53px 20px -30px rgba(59, 65, 74, 0.06);
      margin: 0 10px;
      font-size: 16px;
      cursor: pointer;
      color: #808080;
      text-shadow: 0 1px #FFF;
      outline: 0;
      position: relative;
  }

  .show-alert:active {
      border: 0;
      box-shadow: none;
      top: 2px;
  }

  .show-alert__error {
      color: #D64646;
  }

  /* uniqueCount ui */

  #uniqueCount-container {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 40px;
      height: 40px;
      z-index: 99;
      color: rgba(255, 255, 255, 0.523);
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 600;
  }
  #iframe-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
