*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', Helvetica, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    background: #E5E5E5;
    height: 100vh;
    min-height: 0;
}

header {
    width: 100%;
}

    header .header-container {
        background-image: url(logo-bg.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        height: 70px;
    }

        header .header-container a img {
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

main {
    min-height: 0;
}

    main .container-info .showpage-inner {
        width: 75%;
        margin: 20px auto 0;
    }

@media (max-width: 768px) {
    main .container-info .showpage-inner {
        width: 100%;
        margin: 0;
    }
}


main .container-info .showpage-inner .showtime-content {
    background-image: url(show-page-inner-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 95px;
    position: relative;
}

    main .container-info .showpage-inner .showtime-content p {
        margin: 0;
        position: absolute;
        width: 100%;
        text-align: center;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-size: 22px;
        line-height: 27px;
        color: #221F6C;
        text-shadow: 0px 0px 20px #FFFFFF;
    }

main .container-info .content {
    text-align: center;
    margin: 30px auto;
}

    main .container-info .content p {
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
        line-height: 36px;
        color: #1D59CB;
        margin: 0;
    }

@media (max-width: 768px) {
    main .container-info .content p {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    main .container-info .content p {
        padding: 0 20px;
    }
}

main .container-info .mechanics-container {
    width: 75%;
    padding: 0px 75px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    main .container-info .mechanics-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    main .container-info .mechanics-container {
        width: 100%;
        padding: 0px 20px;
    }
}

main .container-info .terms-container {
    width: 75%;
    padding: 0px 75px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    main .container-info .terms-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    main .container-info .terms-container {
        width: 100%;
        padding: 0px 20px;
    }
}

main .container-info .privacy-container {
    width: 75%;
    padding: 0px 75px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    main .container-info .privacy-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    main .container-info .privacy-container {
        width: 100%;
        padding: 0px 20px;
    }
}

main .container-info .hero-section {
    margin-top: 30px;
}

@media (max-width: 768px) and (min-width: 576px) {
    main .container-info .hero-section {
        width: 75%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    main .container-info .hero-section {
        padding: 10px 12px;
        margin-top: 0;
    }
}

main .container-info .hero-section .hero-section-content {
    margin: 20px 0;
}

main .upcoming-section-container.inner-section p {
    font-size: 40px;
    margin: 0;
    line-height: 36px;
}

    main .upcoming-section-container.inner-section p.inner-section-text {
        color: #F35B04;
        font-weight: 600;
    }

        main .upcoming-section-container.inner-section p.inner-section-text span {
            color: #000;
        }

@media (max-width: 960px) {
    main .upcoming-section-container.inner-section p {
        font-size: 30px;
        padding: 0 15px;
    }
}

main .upcoming-section-container h1 {
    margin: 20px 0;
    font-size: 40px;
    line-height: 49px;
}

@media (max-width: 768px) {
    main .upcoming-section-container h1 {
        font-size: 24px;
        line-height: 30px;
    }
}

main .upcoming-section-container .upcoming-content {
    width: 75%;
    margin: 0 auto;
}

@media (max-width: 968px) {
    main .upcoming-section-container .upcoming-content {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    main .upcoming-section-container .upcoming-content {
        width: 75%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    main .upcoming-section-container .upcoming-content {
        width: 100%;
        margin: 0px auto;
		padding: 0 28px;
    }
}

main .upcoming-section-container .upcoming-content img {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.ads {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ads {
        width: 100%;
    }
}

.ads a img {
    min-width: 100%;
    width: 100%;
    height: auto;
}

.cookie-container {
    background: #000;
    color: #eee;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 15px 200px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
}

    .cookie-container.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0%);
        transition-delay: 1000ms;
    }

@media (max-width: 968px) {
    .cookie-container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .cookie-container {
        padding: 15px;
    }
}

.cookie-container .cookie-text-container .cookie-text {
    width: 50%;
    padding: 10px 10px 0 10px;
}

    .cookie-container .cookie-text-container .cookie-text h6 {
        font-size: 30px;
        letter-spacing: 1px;
    }

@media (max-width: 960px) {
    .cookie-container .cookie-text-container .cookie-text {
        width: 100%;
    }
}

.cookie-container .cookie-text-container .cookie-text p {
    margin: 0;
}

.cookie-container a {
    text-decoration: none;
    color: #eee;
}

.cookie-container .accept-btn {
    background: #ddd;
    margin-top: 10px;
    color: #000;
    text-align: center;
    border: 1px solid #ddd;
    font-weight: 700;
    font-size: 16px;
    line-height: 27px;
    padding: 8px 16px;
}

.note-container {
    background: #000;
    color: #eee;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1500;
    padding: 30px;
}

    .note-container .note-container-header .close {
        color: #fff;
        background: transparent;
        border: none;
        outline: none;
    }

        .note-container .note-container-header .close:hover, .note-container .note-container-header .close:active, .note-container .note-container-header .close:focus {
            color: #fff;
        }

.page-not-found-container {
    padding: 50px;
}

    .page-not-found-container .page-not-found-content {
        text-align: center;
        margin-bottom: 50px;
    }

        .page-not-found-container .page-not-found-content img {
            max-width: 250px;
            width: 100%;
            height: auto;
        }

        .page-not-found-container .page-not-found-content p {
            font-size: 25px;
            line-height: 30px;
            color: #1D59CB;
            font-weight: 700;
            margin: 0;
        }

        .page-not-found-container .page-not-found-content.error-content {
            margin-bottom: 30px;
        }

            .page-not-found-container .page-not-found-content.error-content p {
                margin: 15px 0 0 0;
                font-size: 20px;
                line-height: 30px;
            }

    .page-not-found-container a {
        color: #F35B04;
        font-size: 18px;
        line-height: 22px;
    }

.footer-section {
    background-image: url(footer.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 15px 30px;
    text-align: center;
}

@media (min-width: 576px) and (max-width: 768px) {
    .footer-section {
        background-image: url(footer-t.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 15px 30px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        background-image: url(footer-m.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 15px 30px;
    }
}

.footer-section .footer-content {
    text-align: center;
    margin: 0 auto;
}

    .footer-section .footer-content p {
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 36px;
        color: #FFFFFF;
    }

@media (max-width: 768px) {
    .footer-section .footer-content p {
        font-size: 18px;
        line-height: 22px;
    }
}

.footer-section p.footer-text {
    font-size: 16px;
    margin: 0;
    padding-bottom: 20px;
    line-height: 26px;
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

.footer-section .copyright {
    margin-top: 20px;
    color: #F2F2F2;
    font-size: 12px;
    line-height: 18px;
}

    .footer-section .copyright a {
        text-decoration: none;
    }

        .footer-section .copyright a p {
            color: #FFFFFF;
            margin: 0;
        }

.modal-backdrop.show {
    opacity: 0.75;
}

#Mechanics .modal-content {
    border-radius: 0;
}

    #Mechanics .modal-content .modal-header {
        border: none;
    }

    #Mechanics .modal-content .modal-body {
        padding: 0 5rem;
    }

@media (min-width: 960px) and (max-width: 1200) {
    #Mechanics .modal-content .modal-body {
        padding: 0 3rem;
    }
}

@media (min-width: 760px) and (max-width: 959) {
    #Mechanics .modal-content .modal-body {
        padding: 0 2rem;
    }
}

@media (max-width: 760px) {
    #Mechanics .modal-content .modal-body {
        padding: 0 1rem;
    }
}

.launch-mechanics-modal {
    background: transparent;
    color: #F35B04;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

    .launch-mechanics-modal:active, .launch-mechanics-modal:hover, .launch-mechanics-modal:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none;
        color: #F35B04;
    }

#Mechanics .modal-content .modal-body {
    padding: 0 5rem 2.5rem;
    height: 400px;
    overflow-y: auto;
}
#Mechanics .modal-content .modal-footer {
    border-top:none;
}
    ol {
    line-height: 1.7;
}

.embed {
	width: 75%;
    margin: 0 auto;
}

@media (min-width: 960px) and (max-width: 1200px) {
    .embed {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .embed {
        width: 100%;
    }
}

@media (min-width: 960px) and (max-width: 1200px){
      main .container-info .showpage-inner{
               width: 90%;
               margin: 20px auto 0;      
       }
}

.note-container .note-container-content .note-content-text {
  font-size: 20px;
}

@media (min-width: 960px) and (max-width: 1200px) {
  .note-container .note-container-content .note-content-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .note-container .note-container-content .note-content-text {
    font-size: 18px;
  }
}
.footer-section{
       margin: 10px 0;
}
/*# sourceMappingURL=style.css.map */