:root {
    --gutter-x: 12px;
    --body-text-color: #424242;
    --primary-color: #ee262f;
    --secondary-color: #3b5a6d;
}
html, body {
    height: 100%;
}
body {
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    background-color: #fff;
    color: var( --body-text-color);
}
ol, ul {
    padding-left: 1rem;
}
ol, ul, p,
.form-group {
    margin-bottom: 12px;
}

img {
    -webkit-user-select : none;
    -khtml-user-select  : none;
    -moz-user-select    : none;
    -o-user-select      : none;
    user-select         : none;
    pointer-events      : none;
}

.form-select,
.form-control {
    border-radius: 0;
    border-color: #e0e0e0;
}
.form-check-input {
    border-color: #e0e0e0;
}
.form-check a {
    color: inherit;
    text-decoration: underline;
}

.form-select::placeholder,
.form-control::placeholder,
.placeholder {
    color: var( --body-text-color);
}

.control-label {
    font-weight: normal;
    font-size: 16px;
}
.civility-form-group-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.civility-form-group-inner > label {
    flex: 1;
}
.civility-form-group-inner > div {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.civility-form-group-inner input{
    position: absolute;
    opacity: 0;
    bottom: 0;
    left: 50%;
}
.civility-form-group-inner .btn-civility {
    display: block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    padding: 6px 20px;
    font-size: 16px;
    user-select: none;

    border-radius: 0;
    background: #fff;
    border: 1px solid #fff;
    color: var( --body-text-color);
    width: 100%;
}
.civility-form-group-inner .selected .btn-civility {
    background-color: var( --primary-color);
    border-color: var( --primary-color);
    color: #FFFFFF;
}

.help-block {
    font-size: 11px;
}

.has-error input,
.has-error select:not(.placeholder) {
    color: #842029;
}
.has-error .help-block {
    color: #fff;
}

.font-weight-semibold {
    font-weight: 500;
}

.text-size-small {
    font-size: 13px;
}

.recaptcha-notice,
.policy-text {
    font-size: 10px;
}

.policy-text a,
.recaptcha-notice a {
    color: inherit !important;
}

.grecaptcha-badge {
    visibility: hidden;
}

.btn-secondary,
.btn-submit {
    background-color: var( --primary-color);
    border-color: var( --primary-color);
    color: #ffffff;
    font-weight: 900;
    border-radius: 40px;
    padding-top: 12px;
    padding-bottom: 12px;
    width: 100%;
    line-height: 1;
    font-size: 23px;
    text-transform: uppercase;
}

.btn-secondary:hover,
.btn-submit:hover {
    color: #ffffff;
}
.btn-secondary {
    background-color: var( --secondary-color);
    border-color: var( --secondary-color);
}

.btn-secondary.btn-submit-auto,
.btn-submit.btn-submit-auto {
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
}

header {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
header:before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/bg-xs-tl.png) no-repeat top left;
    width: 53px;
    height: 46px;
    top:0;
    left: 0;
}
header:after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/bg-xs-br.png) no-repeat top left;
    width: 48px;
    height: 49px;
    bottom:0;
    right: 0;
}

header .logo-wrapper {
    padding: 20px 0 15px;
}

header .logo-wrapper img {
    width: 100%;
    max-width: 320px;
}

header .date-text {
    color: #313c43;
    font-size: 17px;
    margin-bottom: 10px;
}
header .tagline-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
header .tagline-stack-item span{
    display: inline-block;
    color: #fff;
    padding: 3px 8px;
    font-weight: 600;
}
header .tagline-stack-item-new {
    margin-bottom: -1px;
    z-index: 2;
    font-size: 17px;
}
header .tagline-stack-item-new span{
    rotate: -2deg;
}
header .tagline-stack-item-text {
    z-index: 1;
    font-size: 19px;
}

header .tagline-stack-item-text span{
    background: #3b5a6d;
    rotate: -1deg;
    z-index: 1;
    padding-left: 18px;
    padding-right: 18px;
}

.game-description {
    position: relative;
}
.game-description-line1 {
    font-size: 19px;
    text-align: center;
    line-height: 1;
    margin-bottom: 5px;
}
.game-description-line2 {
    font-size: 35px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.game-more-line2-line1-linebreak {
    display: none;
}

.game-more-line2-line2 span{
    text-transform: uppercase;
    rotate: -1deg;
    display: inline-block;
    color: #fff;
    padding: 2px 10px;
    line-height: 1;
    font-weight: 900;
}
.game-more-line2-line2 span,
header .tagline-stack-item-new span {
    background: var( --primary-color);
}

.game-more {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.game-more-line1 {
    font-size: 45px;
    line-height: 1;
    font-weight: 900;
    margin-top: -13px;
}
.game-more-line2 {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
}


.text-highlighted {
    background: var( --primary-color);
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 3px;
    rotate: -1deg;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

.game-more-line2 .text-highlighted {
    rotate: -3deg;
}

.game-more-line3 {
}
.game-more-line3 img {
    display: inline-block;
    margin-top: -10px;
    max-width: 94px;
}

#main-section {
    background: #313c43;
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.instruction {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.form-check {
    font-size: 13px;
}

.mandatory-fields {
    font-size: 12px;
}

footer {
    background: #3b5a6d;
    color: #ffffff;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
}
footer .footer-logo {
    margin-bottom: 3px;
}
footer .footer-logo img{
    width: 100%;
    max-width: 329px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
}

footer a {
    color: #ffffff !important;
}


.control-label {
    font-weight: 600;
}

.form-table {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.form-table .form-group-label {
    flex: 1;
    line-height: 1.2;
}

.dob-selector {
    display: flex;
}
#dob_d{
    width: 70px;
}
#dob_m{
    width: 80px;
}
#dob_y{
    width: 95px;
}
.dob-selector select.form-control{
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}


.hr {
    height: 19px;
    background: url(../images/hr.png) no-repeat center center;
    background-size: contain;
}

.text-color {
    color: var( --primary-color);
}

.content-page .main-content-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-result {
    text-align: center;
}
.text-result strong{
    font-size: 23px;
    display: block;
}

.content-page .instruction {
    font-size: 18px;
}

.text-amount {
    font-size: 1.20em;
}

@media (min-width: 430px) {

}

@media (min-width: 480px) {

}

@media (min-width: 576px) {

}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
    .has-error input,
    .has-error select:not(.placeholder),
    .has-error .help-block {
        color: #842029;
    }

    .game-more-line2-line1-linebreak {
        display: block;
    }

    .container {
        max-width: 100%;
    }

    header {
        height: 96px;
    }

    header .logo-wrapper img {
        max-width: 555px;
    }

    header:before,
    header:after {
        display: none;
    }

    header .date-text {
        padding-top: 10px;
        color: #fff;
        font-size: 23px;
    }

    header .tagline-stack-item-new {
        font-size: 22px;
    }

    header .tagline-stack-item-text {
        font-size: 25px;
    }

    .game-description {
        padding-right: 6%;
    }

    .game-description-line1 {
        font-size: 27px
    }

    .game-description-line2 {
        font-size: 51px;
        margin-bottom: 15px;
    }

    #main-section {
        padding-top: 115px;
        color: var( --body-text-color);
    }

    #main-section .game-description{
        color: var( --body-text-color);
    }

    .main-content-wrapper {
        max-width: 1120px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        background: url("../images/bg-md-content.png") no-repeat center center;
        background-size: cover;
        padding: 50px 20px 20px 0;
        border-radius: 20px;
    }

    .main-content {
        width: 40%;
        padding: 0 20px 0 10px;
    }

    .game-description {
        height: 100%;
        width: 100%;
    }

    .game-more {
        justify-content: start;
        align-items: start;
        padding-left: 12px;
    }
    .game-more-line1 {
        line-height: 1;
        font-size: 70px;
        margin-top: -20px;
    }
    .game-more-line2 {
        font-size: 43px;
        text-align: left;
        align-items: start;
        margin-bottom: 5px;
        gap: 10px;
    }
    .game-more-line3 img {
        max-width: 172px;
    }

    .content-page  #main-section{
        padding-bottom: 0;
    }
    .content-page .main-content-wrapper {
        background: #fff url("../images/bg-content-tl.png") no-repeat top left;
        background-size: auto;
        padding: 40px 0 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        flex-direction: column;
    }

    .content-page .game-description-line1 {
        font-size: 23px;
    }

    .content-page .game-description-line2 {
        font-size: 43px;
        margin-bottom: 0;
    }

    .content-page .game-description-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .content-page .game-more-line2-line1-linebreak {
        display: none
    }

    .content-page .game-more {
        flex-direction: row;
        align-items: center;
        padding-left: 0;
    }

    .content-page .main-content {
        width: 100%;
        padding: 0;
    }

    .content-page .main-content-body {
        background: #f5f5f5;
        padding: 20px;
    }

    .content-page .main-content-head {
        padding: 5px;
    }
    .content-page .instruction {
        font-size: 20px;
    }

    .content-page .text-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        min-height: 66px;
    }
    .content-page .text-wrapper .instruction{
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .main-content {
        padding: 0 40px 0 20px;
    }
}

@media (min-width: 1920px) {

}