@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --main-color: rgb(106, 165, 184);
    --accent-color : rgb(47, 190, 148);
    --accent-color-gradient: linear-gradient(to top right, var(--accent-color), rgb(54, 182, 126));
    --dark-gradient: linear-gradient(to top right, rgba(46, 46, 46, 1), rgba(26, 26, 26, 0.8));
    --background-accent: rgb(22, 22, 22);
    --card-background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006));
    --shadow: 0 6px 18px rgba(2,6,23,0.35);
    --muted: #9aa6b2;
    --panel: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.04);
    --text: #eef6f8;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    min-height: 100vh;
    margin: 0px;
    padding: 0px;
    color: var(--text);
    background-color: #1c1c1c;
    font-family: 'Inter' ,sans-serif;
    line-height: 1.25;
}

h1,h2,h3,h4,h5,ul,p {
    margin: 0px;
    padding: 0px;
    font-weight: 400;
}

a{
    text-decoration: none;
}

.highlight{
     background: var(--accent-color-gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.primary-highlight{
         background: var(--main-color-gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.header {
  background: linear-gradient(to bottom, rgb(5, 46, 70), #0e5c75);
}

#disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(14, 92, 117,0.8);
    width: 100%;
    font-size: 12px;
    font-family: "Archivo", Sans-serif;
    padding: 2px 0; 
    z-index: 100;
    position: relative;
    top: 0;
    transition: position 0.3s ease, top 0.3s ease; 
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    /*background: linear-gradient(to left, #1d1d1d, #292929);*/
    height: 90px;
    z-index: 101; 
}

#disclaimer p {
    padding: 10px;
}

#disclaimer a{
    text-decoration: underline;
}

.nav-right,.nav-left{
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
}

.nav-right a{
    color: #FFF;
}

.nav-left a{
    flex-shrink: 1;
}

.price-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*background: linear-gradient(to top right, rgba(46, 46, 46, 0.5), rgba(26, 26, 26, 0.5));
    border-radius: 10px;
    padding: 7px 20px;*/
    color: #FFF;
}

#jp-price{
    background-color: #2ec396;
    border-radius: 10px;
    font-size: 14px;
    padding: 2px 10px;
    font-weight: 200;
}

#jp-price span{
    font-weight: 600;
}

#price-ui{
    display: flex;
    margin-right: 8px;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

#price-ui a, .price-container a{
      color: #FFF;
}

.main-logo{
    margin: auto 0px;
    width: 250px;
    padding: 20px 0px;
}

.circle{
    background-color: var(--accent-color);
    height: 15px;
    width: 15px;
    border-radius: 100%;
    box-shadow: 0px 0px 40px var(--accent-color-dim);
    margin-right: 20px;
    flex-shrink: 0;
}

.chart-container{
    margin: 2px 0px;
    margin-top: 2px;
    font-size: 14px;
    height: 60px;
}

.nav-icon{
    display: block;
    font-size: 12px;
    font-weight: 700;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto 10px;
}

.nav-icon span{
    margin-top: 2px
}

.nav-menu{
    display: none;
    transition: 1s ease;
    align-items: center;
    justify-content: end;
    background-color: #0D0D0D;
}

.burger-dropdown {
    display: flex;
    height: 100%;
    width: 360px;
    position: fixed;
    overflow: hidden;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
    align-items: baseline;
    justify-content: flex-start;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.98), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    top: 0px;
    right: 0px;
    transform: translateX(100%);
    opacity: 0;
    z-index: 202;
    padding: 80px 28px 28px;
}

.burger-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 201;
    backdrop-filter: blur(1px);
}

.burger-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.burger-dropdown i {
    margin-right: 12px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
} 

.burger-dropdown a:hover i {
  background: linear-gradient(90deg, rgba(46,195,150,0.9), rgba(96,149,190,0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(3px) scale(1.05);
  text-shadow: 0 0 8px rgba(46, 195, 150, 0.5);
}

a i {
  color: #e7e7e7;
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.2s, text-shadow 0.3s;
  vertical-align: middle;
  display: inline-block;
}

a:hover i {
  color: rgb(255, 255, 255);
  transform: translateY(-2px) scale(1.1);
  text-shadow: 0 0 5px rgba(218, 218, 218, 0.4);
}

.burger-menu-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.burger-menu-header h3 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-left: 5px;
}

.fa-xmark{
    font-size: 1.8rem;
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fa-xmark:hover {
    /* Remove hover animation for close icon: keep appearance stable */
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    transform: none;
    box-shadow: none;
}

.burger-dropdown.open {
    transform: translateX(0);
    opacity: 1;
}

.burger-dropdown a:hover, .nav-menu a:hover {
    color: #FFF;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.search-dropdown {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.98), rgba(40, 40, 40, 0.98));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 28px;
    z-index: 10002;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.search-dropdown.open {
    opacity: 1;
    transform: translateY(0);
}

.search-input{
    font-size: 1.05rem;
    height: 48px;
    width: 100%;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    color: #FFF;
    padding: 0 18px;
    border-radius: 12px;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.search-submit{
    height: 48px;
    width: 48px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
}

.search-submit:hover{
    /* Keep appearance stable like the close icon */
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    transform: none;
    box-shadow: none;
}

.search-submit:active {
    transform: none;
}

.search-dropdown form{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 900px;
}

.burger-dropdown a, .nav-menu a {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 18px;
    margin: 6px 0;
    border-bottom: 3px solid transparent;
    border-left: 3px solid transparent;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.scroll-container {
    height: 67px;
    overflow: hidden;
    /*background: linear-gradient(#0E5C75, #001C45);*/
    display: flex;
    align-items: baseline;
    position: relative;
}

.scroll-cards {
    display: flex;
    width: max-content;
    animation: scroll-left 110s linear infinite;
}

.scroll-cards:hover{
    animation-play-state: paused ;
}

.scroll-image{
    border-radius: 10px;
    margin: auto 10px;
}

.scroll-info{
    padding-right: 20px;
    text-align: center;
}

.link{
    color: white
}

.scroll-card {
    width: 175px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    flex-shrink: 0;
}

.scroll-card:hover{
    background-color:#2ec396;
}

.scroll-card h3{
    font-size: 16px;
    font-weight: 700;
}

.scroll-card h4{
    font-size: 14px;
}

.video-wrapper {
    pointer-events: none;
    position: relative;
    width: 100%;      
    height: 215px;     
    overflow: hidden;
    background: black;
}

.video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1300px;
    min-height: 1000px; 
    transform: translate(-50%, -50%);
    border: none;
    font-size: 40px;
    font-weight: 800;
}

  .login-btn {
    background: linear-gradient(135deg, #2ec396, #1aa37d);
    border: none;
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .login-btn:hover {
    background: linear-gradient(135deg, #27b388, #14966e);
    transform: translateX(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  .login-btn i {
    font-size: 18px;
  }

.cta-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 5;
    pointer-events: none;
    background: radial-gradient(circle, rgba(46, 195, 150, 0.3) 0%, rgba(0, 28, 69, 0.3) 50%)
}

.cta .fa-arrow-right {
  transition: transform 0.3s ease;
}

.cta:hover .fa-arrow-right {
  transform: rotate(90deg);
}

.cta-container div a{
    color: #FFF;
}

.cta-container h1{
    font-size: 46px;
    font-weight: 800; 
    margin-bottom: 20px;
    text-align: center;
    line-height: 0.9;
}

.cta-container h2{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.cta-btns{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
    pointer-events:all
}

.left-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    background: var(--accent-color-gradient);
    padding: 20px;
    font-size: 1.1rem;
    border-radius: 30px;
    min-width: 200px;
    transition: transform 0.5s ease, box-shadow 0.3s ease, background-color 0.5s ease;
}

.left-btn span{
    font-size: 20px;
}

.left-btn:hover{
    background-color: #2ec396;
}

.right-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-width: 200px;
    border: solid;
    border-color: #FFF;
    color: #FFF;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    line-height: 1;
    transition: .2s;
}

.right-btn span{
    font-size: 20px;
}


.overlay{
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle, rgba(46, 195, 150, 0.3) 0%, rgba(0, 28, 69, 0.3) 50%);
    z-index: 4;
}

.footer{
    border-top: 1px solid #FFF;
}

.footer-container{
    max-width: 1200px;
    margin: auto;
}

.footer-content-container{
    display: flex;
    justify-content: space-between;
    margin: 50px auto
}

.footer-content{
    display: flex;
    flex-direction: row;
    gap: 100px;
    padding: 50px auto;
    flex-wrap: wrap;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li{
    margin: 5px;
}

.footer-nav li a{
    font-weight: 600;
    color: #2ec396;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-item i {
  font-size: 1.2em;
  min-width: 20px;
  text-align: center;
  line-height: 1;
}

.contact-item p {
  line-height: 1.4;
}

.footer-address {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.footer-address p {
  margin: 0;
}

.footer-socials{
    display: flex;
    flex-direction: row;
    padding: 50px 150px;
    align-self: center;
    gap: 20px;
}

.footer-socials a{
    color: white;
}

.legal{
    font-size: 12px;
    margin: 100px auto;
}

.required-asterisk {
  color: red;
  margin-left: 4px;
  font-weight: bold;
}

.trade-hover{
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--accent-color), rgb(54, 182, 126));
    color: #FFFFFF !important;
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(46, 195, 150, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trade-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 195, 150, 0.6);
    background: linear-gradient(135deg, rgb(54, 182, 126), var(--accent-color));
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 10px 0;
  border: 1px solid #c3e6cb;
}

.alert-failure {
  background-color: #d4edda;
  color: #571515;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 10px 0;
  border: 1px solid #c3e6cb;
}

.trade-popup{
    display: flex;
    width: 650px;
    max-width: 90vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98), rgba(25, 25, 25, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.trade-popup-content{
    display: flex;
    flex-direction: column;
    padding: 2.5rem 3rem;
    text-align: center;
    gap: 1rem;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(46, 195, 150, 0.5) rgba(255, 255, 255, 0.05);
}

.trade-popup-content::-webkit-scrollbar {
    width: 8px;
}

.trade-popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.trade-popup-content::-webkit-scrollbar-thumb {
    background: rgba(46, 195, 150, 0.5);
    border-radius: 10px;
}

.trade-popup-content::-webkit-scrollbar-thumb:hover {
    background: rgba(46, 195, 150, 0.7);
}

.trade-popup.open{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.trade-popup-content i{
    text-align: right;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px;
    border-radius: 8px;
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.05);
}

.trade-popup-content i:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.trade-popup-content h1{
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #FFF, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trade-popup-content p{
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.trade-popup-content h2{
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.trade-popup-content strong {
    color: var(--accent-color);
    font-size: 1.05rem;
}

.trade-popup-content a {
    color: #2EC396;
}

.trade-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), rgb(54, 182, 126));
    color: #FFF;
    padding: 14px 40px;
    border-radius: 12px;
    width: auto;
    max-width: 300px;
    margin: 1rem auto 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 195, 150, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 195, 150, 0.5);
    background: linear-gradient(135deg, rgb(54, 182, 126), var(--accent-color));
}
    transition: .2s;
}

.cookie-bar {
  position: fixed;
  bottom: 1rem;
  left: 1%;
  top: translateX(-50%);
  max-width: 500px;
  background: rgba(50, 50, 50, 0.9); 
  color: #eee; 
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: baseline;
  flex-direction: column ;
  align-items: left;
  border-radius: 5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-btns{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.cookie-bar p {
  margin-bottom: 1.9rem;
  line-height: 1.4;
}

.cookie-bar h2{
    font-weight: 600;
    line-height: 1.6rem;
    margin-bottom: 1rem;
}

.cookie-bar a {
    color: #ccc; 
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-bar .cookie-btn {
    color: #eee;
    border: none;
    padding: 0.6rem 2rem;
    margin-right: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    }

.cc-cookie-accept:hover {

    background: var(--accent-color);
    transform: translateY(-1px);
}

.cc-cookie-decline:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
}

.cc-cookie-accept{
    background-color: #2ec396;
}

.cc-cookie-decline{
    background-color: #777;
}

.manage-cookies{
    text-decoration: underline!important;
}

.cookie-expanded{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 0px;
    margin-bottom: 0px;
    gap: 5px;
}

.cookie-arrow{
    height: 24px;
    width: 16px;
    margin-left: 10px;
}

.checkbox-wrapper{
    display: flex;
    justify-content: space-between;
    height: 45px;
    padding: 10px 15px;
    background-color: rgba(59, 59, 59, 0.5);
}

.hidden-cookie-text{
    font-size: 0.8rem;
    color: #d6d6d6;
    background-color:rgba(59, 59, 59, 0.5);
    height: 0px;
    overflow: hidden;
    margin:0px!important;
}

.cookie-open{
    height: unset;
    margin: 0px;
    margin-bottom: 5px!important;
    padding: 10px 25px;
}

.checkbox-wrapper .switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 60px;
}

.checkbox-wrapper .switch input {
display:none;
}

.checkbox-wrapper .slider {
background-color: #ccc;
bottom: 0;
cursor: pointer;
left: 0;
position: absolute;
right: 0;
top: 0;
transition: .4s;
}

.checkbox-wrapper .slider:before {
background-color: #fff;
bottom: 4px;
content: "";
height: 16px;
left: 4px;
position: absolute;
transition: .4s;
width: 16px;
}

.checkbox-wrapper input:checked + .slider {
background-color: #66bb6a;
}

.checkbox-wrapper input:checked + .slider:before {
transform: translateX(36px);
}

.checkbox-wrapper .slider.round {
border-radius: 34px;
}

.checkbox-wrapper .slider.round:before {
border-radius: 50%;
}

@media screen and (max-width:1307px){
    .footer ul{
            padding-left: 30px;
        }

    .main-logo{
        max-width: 250px;
    }
}

@media (max-width: 1080px) {
    .footer-content-container {
        flex-direction: column;
    }
    .footer-content{
        flex-direction: column;
    }
    .nav-menu{
        display: none;
    }
    .nav-icon{
        display: block;
        opacity: 1;
    }
    .burger-label{
        display: none;
    }
    .main-logo{
        max-width: 200px;
    }
}

@media (max-width: 880px) {
    .burger-dropdown{
        flex-direction: column;
    }
    .burger-dropdown.open{
        max-height: none;
        width: 100%;
        padding: 80px 25px 25px;
    }
    .burger-dropdown a {
        font-size: 1.15rem;
        padding: 20px;
    }
    .search-dropdown{
        padding: 15px 20px;
    }
    .search-input{
        font-size: 1rem;
        height: 50px;
    }
    .search-submit {
        height: 50px;
        width: 50px;
    }
    .search-form{
        width: 100%;
        max-width: 100%;
    }
    .main-logo{
        max-width: 175px;
    }
}

@media (max-width: 660px) {
    .trade-popup{
        width: 100%;
        height: 100%;
    }
    .price-container{
    display: none;
    }
    #disclaimer p{
        font-size: 0.7rem;
        line-height: 0.7rem;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 750px) {

    .video-wrapper {
        height: 400px;
        aspect-ratio: 16 / 9;
        position: relative;
        overflow: hidden
    }

    .video-wrapper iframe {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: unset;
        transform: none;
    }
    .video-poster{
        display: block;
        position: relative;
        width: 1000px;
        height: 400px;
        transform: none;

    }
    .cta-btns{
        gap: 5px;
    }
}

@media (max-width: 440px) {
    .cookie-btn{
        width: 100%;
        text-align: center;
    }
}