@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Darker+Grotesque:wght@300..900&family=Teko:wght@300..700&display=swap');
:root {
    --white: #ffffff;
    --black: #000000;
    --orange: #ec6d09;
    --dark-orange: #a43109;
    --blue: #002395;
    --dark-blue: #021d76;
}
body {
    font-family: "Comic Neue", serif;
    background-color: var(--white);
    color: var(--dark-blue);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Teko", serif;
    font-weight: 700;
    color: var(--orange);
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--dark-blue);
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
}

.btn-epic {
    background-color: var(--blue);
    color: var(--white);
    width: 100%;
    border: none;
    border-radius: 30px;
}
.btn-epic:hover{
    background-color: var(--dark-blue);
    color: var(--white);
}

.btn-read-more{
    background-color: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 30px;
}
.btn-read-more:hover{
    background-color: var(--dark-orange);
    color: var(--white);
}

.bg-footer , .bg-header{
    background-color: var(--dark-blue);
    z-index: 3;
    position: relative;
    max-height: 75px;
}

.master-div {
    min-height: calc(100dvh - 150px);
}

/*Menu*/
.navbar-toggler {
    background-color: #ffae00 !important;
}
img.custom-logo {
    width: 100%;
    max-height: 55px;
}
ul#menu-menu-1 li a {
    color: #fff !important;
    margin: 0 10px !important;
}
@media only screen and (max-width: 768px) {
    ul#menu-menu-1 li a {
        margin: 10px 0 !important;
        width: 100% !important;
        border: dashed 1px #fff !important;
        padding: 10px !important;
        display: block !important;
        text-align: center !important;
        color: #fff !important;
    }
    .navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
        background: var(--dark-blue);
        z-index: 999;
    }
}


/* Classe para o contêiner do vídeo */
.responsive-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção de aspecto 16:9 */
    height: 0;
    overflow: hidden;
}

/* Estilo para o iframe */
.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*ID GAME*/
.id-game-field {
    margin-top: 15px;
    margin-bottom: 15px;
}

.id-game-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}


/* Main Ticket Style */
.ticketContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ticket {
    animation: bouncingCard 1.6s ease-out infinite alternate;
    color: #000;
    border-radius: 12px;
    border: solid 1px #aaa;
    width: 85%;
    background: #f1f1f1;
}
.ticketShadow{
    animation: bouncingShadow 0.6s ease-out infinite alternate;
    margin-top: 4px;
    width: 95%;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    filter: blur(12px);
}

/* Ticket Content */
.ticketTitle{
    font-size: 1.5rem;
    font-weight: 700;
    padding: 12px 16px 4px;
}
.ticketDetail{
    font-size: 1.1rem;
    font-weight: 500;
    padding: 4px 16px;
}
.ticketSubDetail{
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    padding: 12px 16px;
    font-weight: bold;
    color: var(--orange);
}
.ticketSubDetail .code{
    margin-right: 24px;
}

/* Ticket Ripper */
.ticketRip{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.circleLeft{
    width: 12px;
    height: 24px;
    background-color: #fff;
    border-top: solid 1px #aaa;
    border-left: solid 2px #fff;
    border-right: solid 1px #aaa;
    border-bottom: solid 1px #aaa;
    border-radius: 0 12px 12px 0;
    margin-left: -2px;
}
.ripLine{
    width: 100%;
    border-top: 3px solid #aaa;
    border-top-style: dashed ;
}
.circleRight{
    width: 12px;
    height: 24px;
    background-color: #fff;
    border-top: solid 1px #aaa;
    border-right: solid 2px #fff;
    border-left: solid 1px #aaa;
    border-bottom: solid 1px #aaa;
    border-radius: 12px 0 0 12px;
    margin-right: -2px;
}

/* Ticket Bouncing Animation */
@keyframes bouncingCard {
    from { transform: translateY(0);}
    to {transform: translateY(-18px);}
}
@keyframes bouncingShadow {
    from { transform: translateY(0px);}
    to {transform: translateY(4px);}
}

/*Custom inputs*/
select#custom_product_option {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    color: var(--orange);
    font-weight: bold;
    border: solid 1px #aaa;
}
input#id_game {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    color: var(--orange);
    font-weight: bold;
    border: solid 1px #aaa;
}
.custom-select-wrapper label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}


/*bootstrap css modify*/
.card-img, .card-img-bottom, .card-img-top {
    height: 100%;
}
.btn{
    font-weight: 700;
}
.accordion-button {
    font-size: 1.5rem;
}

/*Paypal*/
.wc-block-components-express-payment .wc-block-components-express-payment__event-buttons>li {
    z-index: 1;
}

/*Woocommerce modify*/
.woocommerce-Input {
    min-height: 45px;
    border-radius: 5px;
    border: solid 1px #bbb;
}
.wc-block-components-checkout-step__description {
    background: var(--blue);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    width: fit-content;
    text-align: center;
}
.wc-block-cart-item__remove-link {
    background: var(--orange) !important;
    text-decoration: none !important;
    color: #fff !important;
    padding: 5px !important;
    border-radius: 5px !important;
}
.wc-block-cart-item__remove-link:hover {
    background: var(--dark-orange) !important;
    color: #fff !important;
}

.wc-block-components-button {
    background: var(--orange) !important;
    text-decoration: none !important;
    color: #fff !important;
    padding: 5px !important;
    border-radius: 5px !important;
}
.wc-block-components-button:hover {
    background: var(--dark-orange) !important;
    color: #fff !important;
}
button.single_add_to_cart_button.button.alt {
    background: var(--orange);
    width: 100%;
    border-radius: 5px;
}
p.price {
    color: var(--orange) !important;
    font-weight: bold;
}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    width: 100%;
    text-align: center;
    background: var(--blue);
    color: #fff;
    border-radius: 5px;
}

/*Idioma*/
#trp-floater-ls.trp-bottom-right {
    right: 0;
}

/*Air Menu*/
.air-menu {
    width: 100%;
    max-width: 285px;
    position: fixed;
    bottom: -12px;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
}
.woocommerce-account .air-menu {
    bottom: 40px;
}
.active-cart{
    display: block !important;
}
.content-air-menu{
    position: relative;
}
.content-air-icons {
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    border-radius: 30px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
}
.link-air-menu{
    text-decoration: none;
    color: var(--blue);
}
.link-air-menu:hover img {
    filter: invert(11%) sepia(5%) saturate(7190%) hue-rotate(185deg) brightness(95%) contrast(89%);
}
.link-air-menu i {
    font-size: 25px;
    display: flex;
}
.link-air-menu i:hover {
    filter: invert(11%) sepia(5%) saturate(7190%) hue-rotate(185deg) brightness(95%) contrast(89%);
}
.content-air-cart {
    display: none;
    position: absolute;
    bottom: 5px;
    z-index: -1;
    background-color: var(--blue);
    color: var(--orange);
    width: 100%;
    height: 130px;
    border-radius: 25px;
}
.active-add-cart{
    display: block !important;
}
.content-air-cart-add-cart {
    display: none;
    position: absolute;
    bottom: 5px;
    z-index: -1;
    background-color: var(--blue);
    color: var(--orange);
    width: 100%;
    height: 75px;
    border-radius: 25px;
}
.btn-checkout-air-menu-add-cart{
    width: 100%;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: transparent;
    color: var(--orange);
}
/*Dot Pulse Air Menu*/
.ring-container-air-menu {
    position: absolute;
    top: 0;
}
.circle-air-menu {
    width: 18px;
    height: 18px;
    background-color: var(--orange);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 17px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.ringring-air-menu {
    border: 3px solid var(--orange);
    -webkit-border-radius: 30px;
    height: 20px;
    width: 20px;
    position: absolute;
    left: 14px;
    top: 2px;
    -webkit-animation: pulsate-air-menu 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0;
}
@-webkit-keyframes pulsate-air-menu {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 0.5;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

/*Anime*/
@keyframes shadow-pulse
{
    0% {
        box-shadow: 0 0 0 0px rgba(219, 179, 75, 0.4);
    }
    100% {
        box-shadow: 0 0 4px 15px rgba(219, 179, 75, 0);
    }
}

.pulse {
    width: 280px;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: var(--blue);
    border-radius: 50px;
    animation: shadow-pulse 2.5s infinite;
}

/*Translatepress*/
img.trp-flag-image {
    max-width: 18px;
}