﻿@font-face {
    font-family: 'HighlandsCoffee';
    src: url('UTM Alexander.ttf') format('truetype');
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden
}

body {
    background-size: 100% 100%;
    background-position: top center;
}

.modal-content {
    background-color: #fbd2a6;
    width: 100%;
}

.modal-footer {
    border-top: none;
}

.modal-body p {
    padding-left: 5%;
    padding-right: 5%;
    color: #660000;
    font-family: 'HighlandsCoffee';
    font-size: 13pt;
    text-align: center;
}

.modal-backdrop {
    opacity: 0.5 !important;
}

.btn-ok {
    display: inline-block;
    border: none;
    font-size: 14px;
    padding: 12px 35px;
    border-radius: 10px;
    text-transform: uppercase;
    color: #fff;
    line-height: normal;
    cursor: pointer;
    text-align: center;
}

.group-code {
    position: relative;
    margin: 5px 0;
}

.employee-label {
    position: absolute;
    top: 0;
    font-size: 20px;
    margin: 10px;
    padding: 0 10px;
    background-color: #fff;
    -webkit-transition: top .2s ease-in-out, font-size .2s ease-in-out;
    transition: top .2s ease-in-out, font-size .2s ease-in-out;
    color: rgb(40, 1, 117);
}

.active {
    top: -25px;
    font-size: 20px;
    transition: all 0.2s ease-out;
}

.form-container {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translateX(-50%);
}

.text-note {
    color: rgb(255, 222, 89);
    font-size: 12px;
    padding: 0 40px;
}

.employee-code {
    width: 100%;
    padding: 10px;
    border: 3px solid rgb(255, 222, 89);
    font-size: 18px;
    background-color: #fff;
    color: rgb(40, 1, 117);
}

    .employee-code:focus {
        outline: none;
    }

.landing-page {
    left: 0;
    background: url(images/Landing_page_desktop.jpg?v=61.0) no-repeat top center;
    background-position-y: 42%;
    font-family: 'HighlandsCoffee';
    padding-bottom: 30px;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    opacity: 0.9;
}

.site-btn {
    display: inline-block;
    /*border: 1px solid rgb(40, 1, 117);*/
    font-size: 14px;
    font-weight: 600;
    min-width: 160px;
    padding: 10px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    color: rgb(40, 1, 117);
    line-height: normal;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0px 5px rgb(255, 222, 89, 0.3);
    background: rgb(255, 222, 89);
}

    .site-btn:hover {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        transform: translateY(2px);
    }

    .site-btn > span {
        color: rgb(40, 1, 117);
    }

.btn-text {
    font-size: 14px;
}

.btn-text-en {
    font-size: 12px;
}

.wrap {
    width: 80%;
    top: 50%;
    left: 50%;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
}

.col-left, .col-right {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/******************** Social Foot *************************/
ul {
    list-style: none;
}

.socialFoot {
    margin-right: 20px;
    margin-top: 10px;
}

    .socialFoot ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .socialFoot ul li {
            margin-right: 5px;
        }

            .socialFoot ul li:last-child {
                margin-right: 0;
            }

            .socialFoot ul li a {
                display: block;
                width: 25px;
                height: 25px;
                background-color: transparent;
                color: #fff;
                font-size: 16px;
                line-height: 24px;
                position: relative;
                backface-visibility: hidden;
            }

                .socialFoot ul li a:hover {
                    -webkit-transform: translateY(-3px);
                    -ms-transform: translateY(-3px);
                    -o-transform: translateY(-3px);
                    transform: translateY(-3px);
                }

                .socialFoot ul li a i {
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    -webkit-transform: translate(-50%,-50%);
                    -ms-transform: translate(-50%,-50%);
                    -o-transform: translate(-50%,-50%);
                    transform: translate(-50%,-50%);
                }

/***********************************************/


@media only screen and (max-width: 767px) {
    .landing-page {
        background: url(images/Landing_page_mobile.jpg) no-repeat top center;
        background-size: cover;
        background-position-y: 22%;
    }

    .wrap {
        margin-top: 70%;
        margin-bottom: 0;
        width: 90%;
    }

    .col-left {
        display: none;
    }

    .col-right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .form-container {
        top: 45%;
        width: 80%;
    }
    .text-note {
        font-size: 8px;
        padding: 0px
    }

}


@media only screen and (max-width: 600px) {

    .landing-page {
        background-position-y: 25%;
    }
  
    .wrap {
        margin-top: 65%;
        margin-bottom: 0;
        width: 90%;
    }

    .ticket {
        width: 400px;
    }

    .col-left {
        display: none;
    }

    .col-right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .form-container {
        top: 43%;
    }

    .text-note {
        font-size: 8px;
        padding: 0px
    }

    .btn-text {
        font-size: 12px;
    }

    .btn-text-en {
        font-size: 10px;
    }

    .site-btn {
        font-weight: 400;
    }

    .copy-right {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {
    .landing-page {
        background-position-y: 25%;
    }
    .form-container {
        top: 35%;
    }

    .employee-label {
        font-size: 14px;
    }

    .employee-code {
        padding: 8px;
        border: 2px solid rgb(255, 222, 89);
        font-size: 16px;
    }
}
@media only screen and (max-width: 400px) {
    .form-container {
        top: 30%;
    }
    .landing-page {
        background-position-y: 30%;
    }
    .employee-label {
        font-size: 14px;
    }

    .employee-code {
        padding: 8px;
        border: 2px solid rgb(255, 222, 89);
        font-size: 16px;
    }
}
@media only screen and (min-width: 991px) and (max-width: 1400px) {
    /*.landing-page {
      background: url(images/Landing_page_tablet.jpg?v=61.0) no-repeat top center;
      background-size: cover;*/
    /*background-position-y: 100%;*/
    /*}*/

    .wrap {
        margin-top: 60%;
        margin-bottom: 60%;
        width: 60%;
    }

    .col-left {
        display: none;
    }

    .col-right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    body {
        overflow-y: hidden;
    }

    .form-container {
        top: 45%;
    }
}

@media only screen and (max-width: 969px) and (min-width: 768px) {
    .landing-page {
        background: url(images/Landing_page_tablet.jpg) no-repeat top center;
        background-size: cover;
        background-position-y: 25%;
    }

    .wrap {
        margin-top: 60%;
        margin-bottom: 30%;
        width: 65%;
    }

    .col-left {
        display: none;
    }

    .col-right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    body {
        overflow-y: hidden;
    }

    .form-container {
        width: max-content;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
    }

    .text-note {
        font-size: 8px;
        padding:0px
    }

    .employee-code {
        width: 100%;
        padding: 8px;
        border: 2px solid rgb(255, 222, 89);
        font-size: 16px;
    }

    .employee-label {
        font-size: 16px;
    }

    .btn-text {
        font-size: 12px;
    }

    .btn-text-en {
        font-size: 10px;
    }
}

@media only screen and (max-width: 990px) and (min-width: 969px) {


    .form-container {
        width: max-content;
        position: absolute;
        top: 46%;
        left: 50%;
        transform: translateX(-50%);
    }

    .site-btn > span {
        color: rgb(40, 1, 117);
        font-size: 10px;
    }
    .text-note {
        padding: 0px
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {
    .wrap {
        margin-top: 65%;
        margin-bottom: 20%;
        width: 80%;
    }

    .col-left {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-right {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 1281px) {
    .wrap {
        margin-top: 40%;
        margin-bottom: 50%;
        width: 85%;
    }

    .col-left {
        -ms-flex: 0 0 53%;
        flex: 0 0 53%;
        max-width: 53%;
    }

    .col-right {
        -ms-flex: 0 0 47%;
        flex: 0 0 47%;
        max-width: 47%;
    }

    body {
        overflow-y: hidden;
    }
}

/*************************************Page E voucher***************************************/
.ticket {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

    .ticket > img {
        display: block;
        max-width: 100%;
        height: auto;
    }
/**********************************Button************************************************/
.btn-download {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 25px;
    background: #000000;
    padding: 3px;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    /*line-height: 25px;*/
}

    .btn-download:active {
        color: #000000;
        background: #ffff;
    }

    .btn-download:hover {
        color: #000000;
        background: #808080;
    }
