body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    background: #00402c;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
   
}
.page-scroll {
    overflow-x: hidden;
    overflow-y: auto;
}
.pageContainer {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    
}



img {
    max-width: 100%;
}
p {
    margin: 0;
    padding: 0;
}
.mob{
    display: none;
}
.ipad{
    display: none;
}


.flex-rw {
    display: flex;
    justify-content: center;
}
.flex-cl {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.fb88logo {
    position: fixed;
    top: 10px;
    left: 5%;
    display: block;
    padding: 15px 0 5px 0;
    margin: 0 auto;
    margin-bottom: 10px;
}

.pageContainer {
    width: auto;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
}

.page {
    position: relative;
    min-width: 100%;
    height: 100%;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page1 {
    background: url(../images/page1-bg.jpg) no-repeat center bottom;
    background-size: cover;
}
.page2 {
    background: url(../images/page2-bg.jpg) no-repeat center bottom;
    background-size: cover;
}
.page3 {
    background: url(../images/page3-bg.jpg) no-repeat center bottom;
    background-size: cover;
}

.ctainer {
    max-width: 850px;
    margin: 0 auto;
    padding: 0px 10px;
}
.flags-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 30px;
    padding: 15px 15px 0px 15px;
    background: rgb(0,53,19,0.5);;

}
.flags-wrapper .team {
    flex-basis: 24%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 200ms ease-in-out;
    cursor: pointer;
    margin-bottom: 20px;
}

.flags-wrapper .team img {
    max-height: 75px;
    width: auto;
    border: 2px solid #fff;
    border-radius:10px;
    box-shadow: 0 0 2px 1px rgba(255,255,255,0.5);
}
.flags-wrapper .team p {
    margin-top: -7px;
    padding: 4px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.5);
    min-width: 88px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: #009c31;
    background: linear-gradient(0, #008c3b, #006b00, #1bc136);
}

.flags-wrapper .team.selected {
    opacity: 1 !important;
}
.flags-wrapper .team img {
    box-shadow: 0 0 6px 1px #ceecdf;
    border: none;
}
.flags-wrapper .team.selected img {
    box-shadow:  0 0 15px 1px #00ff8e;
    border: 2px solid #fff;
}
.flags-wrapper .team.selected p {
    background: #00ff8e;
    color: #00522e;
    font-weight: 600;
    box-shadow:  0 0 15px 1px #00ff8e;
    border: 2px solid #fff;
}

.username-ldp {
    margin: 30px auto 0;
}
.username-ldp label {
    color: #a7ffa8;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 4px 5px #333;
}
.username-ldp input {
    padding: 8px 5px;
    border-radius: 5px;
    outline: 1px solid #036914;
    border: 1px solid #014d17;
    box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.2);
}
.username-ldp .note {
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.navigate-btns {
    margin: 30px 0 5px 0;
}

.btn-predict,
.btn-fb {
    width: 250px;
    height: 50px;
    border: 1px solid rgb(0, 88, 27);
    border-radius: 6px;
    color: #333;
    font-weight: 600;
    font-size: 25px;
    background: yellow;
    align-items: center;
}
.btn-predict {
    margin-top: 45px;
}


a.btn-fb ,
a.btn-fb:active,
a.btn-fb:hover {
    color: #333;
}

.btn-godk  {
    margin-top: 30px;
    color: white;
}
.btn-godk .page-next  {
    color: #ffc543;
    text-decoration: underline;
    cursor: pointer;
}
.p2-title {
    max-width: 1000px;
    margin: 0 auto;
}
.prediction-here {
    margin-bottom: 50px;
}

.basic-100 {
    flex-basis: 100%;
}
.p3-bottomtext {
    margin: 30px;
}

.goto-page2{
    position: absolute;
    right: 20px;
    bottom: 40px;
    color: #fff;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}
.goto-page2 img {
    height: 70px;
}
.arrow-container {
    display: flex;
    font-size: 2rem;
    color: #fff;
}

.arrow {
    animation: moveArrow 1.5s infinite;
    margin: 0 5px;
}

.arrow:nth-child(1) {
    animation-delay: 0s;
}

.arrow:nth-child(2) {
    animation-delay: 0.5s;
}

.arrow:nth-child(3) {
    animation-delay: 1s;
}

@keyframes moveArrow {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

#loading{
    display: none;
}
#loading.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    }

    #loading span{
        animation: 1.5s linear infinite spinner;
        animation-play-state: inherit;
        border: solid 5px #cfd0d1;
        border-bottom-color: #00c72b;
        border-radius: 50%;
        height: 40px;
        width: 40px;
        transform: translate3d(-50%, -50%, 0);
      }
        @keyframes spinner {
            0% {
            transform: translate3d(-50%, -50%, 0) rotate(0deg);
            }
            100% {
            transform: translate3d(-50%, -50%, 0) rotate(360deg);
            }
        }

/*#region Boostrap modal adjustment */
#modal-linkvao1 .modal-content,
#modal-success-register .modal-content{
    background-color: unset;
    outline: none;
    border: none;
}
#modal-linkvao1 .close,
#modal-success-register .close{
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    color: #333;
    opacity: 1;
    z-index: 99;
    cursor: pointer;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: all 100ms ease-out;
}
#modal-linkvao1 .close span,
#modal-success-register .close span{
   display: block;
   width: 22px;
    height: 22px;
    line-height: 17px;
}
#modal-linkvao1 .close:hover,
#modal-success-register .close:hover{
    color: white;
    transition: all 100ms ease-out;
    transform: rotate(90deg);
    transform-origin: center center;
    background: red;
}
#dangky-success .modal-dialog {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #022510;
    border: 2px solid #dec900;
    border-radius: 8px;
}
#dangky-success .modal-content {
    color: white;
    background: #022510;
    padding: 10px;
    text-align: center;
}
#dangky-success .btn-secondary,
#dangky-success .btn-secondary:hover {
    color: #333;
    background-color: #fdf42b;
    border-color: #fdf42b;
    text-transform: capitalize;
    margin: 10px;
    font-weight: 600;
}
#dangky-success .modal-title{
    color: yellow;
}

/*#endregion Boostrap modal adjustment */

/*#region FLASH ------------------*/
.flash-container-6 {
    width: 100%;
    height: 90vh;
    position: absolute;
    top: 0;
}
.relati{
    position: relative;
    width: 100%;
    height: 100%;
}
.flash-1 {
    left: 10%;
    top: 23%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite linear;
}

.flash-2 {
    left: 25%;
    top: 18%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 0.4s linear;
}

.flash-3 {
    left: 75%;
    top: 51%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 0.2s linear;
}

.flash-4 {
    left: 5%;
    top: 45%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 0.6s linear;
}

.flash-5 {
    left: 20%;
    top: 65%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 0.8s linear;
}

.flash-6 {
    left: 30%;
    top: 55%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 0.3s linear;
}



.flash-7 {
    left: 49%;
    top: 3%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 1s linear;
}

.flash-8 {
    left: 10%;
    top: 2%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 0.8s linear;
}

.flash-9 {
    left: 78%;
    top: 23%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 0.7s linear;
}

.flash-10 {
    left: 8%;
    top: 37%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 0.5s linear;
}

.flash-11 {
    left: 26%;
    top: 23%;
    transform: scale(0.5);
    width: 144px;
    height: 134px;
    background: url(../images/flash-effect.png) top center no-repeat;
    position: absolute;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    opacity: 0;
    animation: flash-agile 2s infinite 0.4s linear;
}

/*END FLASHES*/

@keyframes flash-agile {
    0% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    19% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    20% {
        -ms-transform: scale(0.2);
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 1;
    }

    21% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    60% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    79% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    80% {
        -ms-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 1;
    }

    81% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}
/*#endregion FLASH ------------------*/

/*#region REGISER ------------------*/
#register{
    position: relative;
    z-index: 1;
}
.register-form {
    position: relative;
    max-width: 420px;
    min-height: 475px;
    display: block;
    margin: 0px auto;
    background: rgba(2, 37, 16, 1);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#831b1b', endColorstr='#380000', GradientType=0);
    box-shadow: none;
    border: 2px solid #dec900;
    border-radius: 8px;
}

.register-form>.close {
    color: #fff;
    opacity: 1;
    margin-top: 16px;
    margin-right: 31px;
    z-index: 9999;
    position: relative;
    cursor: pointer;
}

.inner-wrap {
    /* width: 340px; */
    margin: 0 auto;
    position: relative;
    z-index: 999;
    padding-top: 38px;
    padding: 15px 30px 0;
}

.register-form input[type="text"],
.register-form input[type="password"],
.register-form input[type="email"],
.register-form textarea,
.register-form select {
    background: #000;
    width: 100%;
    height: 43px;
    background-size: contain;
    border: none;
    padding-left: 20px;
    margin: 0 auto;
    font-size: 21px;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    border-radius: 6px;
    position: relative;
    z-index: 999;
    color: #fff;
    border: 1px solid #fff;
}

.errorMsg {
    padding: 8px;
    background: #e74e4e;
    border: 1px solid #860404;
    color: #fff;
    display: none;
    font-size: 14px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999999;
    box-sizing: border-box;
    right: 10px;
    -moz-box-sizing: border-box;
    border-radius: 5px;
}

.successMsg {
    padding: 8px;
    background: #6bb34b;
    border: 1px solid #1b4a07;
    color: #fff;
    display: none;
    font-size: 14px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
    box-sizing: border-box;
    right: 10px;
    -moz-box-sizing: border-box;
    border-radius: 5px;
}

.birthDate select {
    width: 31.4%;
    display: block;
    float: left;
    margin-right: 8px;
    padding-left: 5px;
    font-size: 13px;
    line-height: 19px;
    position: relative;
}

.birthDate select:last-child {
    margin-right: 0;
}

.msg-error {
    color: #fff;
    font-size: 12px;
    margin-top: -5px;
    display: none;
    padding: 0 10px;
    margin-bottom: 5px;
    max-width: 280px;
}

.msg-error-focus {
    position: relative;
    color: #fff;
    font-size: 12px;
    margin-top: -5px;
    display: block;
    padding: 0 10px;
    margin-bottom: 5px;
    background: #015e2f;
}

.capbox-inner {
    position: relative;
}

#CaptchaDiv {
    font-size: 17px;
    font-style: italic;
    color: #fff;
    background-color: gray;
    padding: 4px;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    width: 100px;
    float: right;
    height: 43px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 41px;
    z-index: 999;
}

.dangky {
    outline: none;
    border: none;
    border-radius: 4px;
    width: 100%;
    margin: 10px 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    height: 50px;
    cursor: pointer;
    background: #fee71b;
    background-image: linear-gradient(to right top, #ffc400, #ffca03, #ffd107, #ffd70d, #ffde13, #ffe22c, #fee73d, #feeb4c, #feee65, #fff17c, #fff391, #fff6a6);
}
/*#endregion REGISER ------------------*/

/* #region responsive--------- */
@media (max-width: 900px) {
    .pageContainer{
        height: auto;
    }
    .page {
        padding-top: 5px;
        padding: 5px 10px 2px;
        min-height: 100vh;
        height: auto;
    }
    .fb88logo {
        position: relative;
        height: 60px;
        left: unset;
        top: unset;
    }
    .flags-wrapper .team img {
        max-height: 40px;
    }
    .flags-wrapper .team p{
        margin-top: -1px;
        padding: 2px 5px;
        font-size: 12px;
    }
    .page.page2 {
        padding-top: 50px;
    }
    .p3-bottomtext {
        margin: 0;
        margin-bottom: 40px;
    }
     .flags-wrapper{
        margin-top: 0;
    }
    
    .goto-page2{
        position: relative;
        padding-bottom:10px;
        bottom: 0;
    }
    .btn-predict {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .flags-wrapper .team p {
        min-width: 55px;
    }
}

/* #endregion responsive--------- */



/* #region Animation--------- */

@keyframes handUp {
    0%{
        transform: translateY(60px);
        opacity: 0;
    }
    40%{
        transform: translateY(-28px);
        opacity: 1;
    }
    60%{
        transform: translateY(-28px);
        opacity: 1;
    }
    61%{
        transform: translateY(-25px);
        opacity: 1;
    }
    62%{
        transform: translateY(-28px);
        opacity: 1;
    }
    100%{
        transform: translateY(-28px);
        opacity: 1;
    }
}
@keyframes sonicwave {
    0%{
        transform: scale(0);
        opacity: 1;
    }
    60%{
        transform: scale(0);
        opacity: 1;
    }
    100%{
        transform: scale(6);
        opacity: 0;
    }
}

@keyframes cirZoom {
    0%{
        opacity: 1;
        transform: scale(1, 1)
    }
  
    70% {
      opacity: 0;
      transform: scale(1.2, 1.2)
    }
  
    100% {
      opacity: 0
    }
  }

  /* #endregion Animation--------- */