@charset "UTF-8";

/*
Theme Name: Innocent
Theme URI:
Author: Peppermint
Author URI: https://gamewin.quad.eu/
Description: Custom WordPress theme designed for <code>Innocent Lottery</code>.
Version: 1.0
Tags: innocent, company, custom, marketing, agency
*/

@font-face {
    font-family: 'Innocent';
    src: url('./assets/fonts/InnocentSans-Bold.woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Innocent';
    src: url('./assets/fonts/InnocentSans-Light.woff2');
    font-weight: 300;
}



body {
    font-family: 'Innocent';
}

.container-sm {
   max-width: 900px !important;
}
.container-md {
   max-width: 1120px !important;
}
@media (min-width: 1536px) {
   .container-sm {
      max-width: 900px !important;
   }
   .container-md {
      max-width: 1120px !important;
   }
}
@media (min-width: 1280px) {
   .container-sm {
      max-width: 900px !important;
   }
   .container-md {
      max-width: 1120px !important;
   }
}

.reward:hover img {
    transform: scale(1.05);
}

.button-wrapper:hover img {
    transform: scale(1.1);
}

input:hover,
input:focus,
#ticket-wrapper:hover,
#ticket-wrapper:focus {
    outline-style: solid;
    outline-width: 2px !important;
    outline-color: #20A7B6;
}
input:hover:disabled,
input:focus:disabled {
    outline: none;
}

@media (min-width: 1024px) {
    input:hover,
    input:focus,
    #ticket-wrapper:hover,
    #ticket-wrapper:focus {
        outline-width: 4px !important;
    }
}

.bg-menu {
    background-color: #B30838;
}

/* Ukrycie recaptcha */
.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

/* Lottery styles */

ul li {
    line-height:1.6;
}

.results--wrapp {
    font-size: 24px;
    font-weight: bold;
    padding: 12px;
}

canvas {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 768px; /* Maksymalny rozmiar dla większych ekranów */
}
.draw-cta button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.wheel-wrapper {
    position: relative;
    z-index: 2;

}
.wheel-wrapper img {
    position: absolute;
    top: 0.5%;
    left: 0.5%;
    width: 99%;
    height: 99%;
    z-index: 5;
}

.one-col {
    grid-template-columns: 1fr;
}

@media (min-width: 998px) {
    .one-col {
        grid-template-columns: 100% 0;
        transition: 0.3s;
    }
    .two-col {
        grid-template-columns: 50% 50% !important;
    }
}

@media (max-width: 565px) {
    .wheel-wrapper img {
        top: 2%;
        left: 2%;
        width: 96%;
        height: 96%;
    }
}

.body-bg {
   position: relative;
}
.body-bg::before {
   content: '';
   position: absolute;
   top: 0;
   bottom: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.6);
   z-index: 50;
}

@media (max-width: 1023px) {
   #result-wrapper {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      z-index: 99;
      width: 90vw;
      height: fit-content;
      background-color: #FFFFFF;
      border-radius: 20px;
      padding: 30px 10px;
   }
   #result-wrapper img {
      max-width: 250px;
      margin: 0 auto;
   }
}

#form.disabled {
   pointer-events: none;
}
#form.disabled .button-wrapper {
   opacity: .5;
}

.checkbox-wrapper {
   display: grid;
   grid-template-columns: 40px 1fr;
   align-items: center;
   justify-items: start;
}
#acceptance {
   -webkit-appearance: none;
   appearance: none;
   width: 30px;
   height: 30px;
   background-color: #FFFFFF;
   margin: 0;
   border-radius: 50%;
}
@media (min-width: 1024px) {
   .checkbox-wrapper {
      grid-template-columns: 60px 1fr;
   }
   #acceptance {
      width: 40px;
      height: 40px;
   }
}
#acceptance:checked {
    background-color: #20A7B6;
}
#acceptance:hover,
#acceptance:focus {
    outline-style: solid;
    outline-width: 1px !important;
    outline-color: #20A7B6;
}

#startButton:disabled,
#startButton[disabled]{
   opacity: .5;
}

.faq-arrow {
   transition: ease 0.3s all;
}

.faq-body {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease-out, padding 0.3s ease-out;
   padding: 0 12px;
}

.faq-body.open {
   max-height: fit-content; /* Ustaw maksymalną wysokość dopasowaną do zawartości */
   padding: 12px; /* Dodaj padding, gdy akordeon jest otwarty */
}

@media (max-width: 400px) {
    button .px-16 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.showOnMobile {
    display: none;
}

.hideOnMobile {
    display: block;
}

@media (max-width: 768px) {
    .showOnMobile {
        display: block;
    }
    
    .hideOnMobile {
        display: none;
    }
}