/* Minification failed. Returning unminified contents.
(450,1): run-time error CSS1019: Unexpected token, found '}'
(564,5636): run-time error CSS1019: Unexpected token, found '@keyframes'
(564,5660): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(564,7333): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(564,7365): run-time error CSS1035: Expected colon, found ','
(564,7967): run-time error CSS1019: Unexpected token, found '@keyframes'
(564,7991): run-time error CSS1035: Expected colon, found ','
(564,11180): run-time error CSS1019: Unexpected token, found '@keyframes'
(564,11203): run-time error CSS1035: Expected colon, found '{'
(564,22704): run-time error CSS1019: Unexpected token, found '@keyframes'
(564,22738): run-time error CSS1035: Expected colon, found '{'
 */
/*
    tabSlideOUt v2.4

    By  Michael Fielding
    License: GPL v3.0
*/

.ui-slideouttab-panel, .ui-slideouttab-handle {
    background-color: white;
    padding: 0.4em;
    box-sizing: border-box;
}
.ui-slideouttab-panel {
	display: block;
	position: fixed;
    border: 2px solid grey;
}
/* This class is added after the tabs are initialised, otherwise the user sees the 
   tabs slide out of the way when the page is initialised. */
.ui-slideouttab-ready {
	transition: transform 0.5s ease 0s;
}

/* Hide tabs and panels when printed. */
@media print {
    .ui-slideouttab-panel {
        display: none;
    }
}

/* Tab handles */
.ui-slideouttab-handle {
    display: block;
    position: absolute;
    cursor: pointer;
    color: white;
    background-color: grey;
}
.ui-slideouttab-handle-image {
    transform: rotate(0);
}

/* Right */
.ui-slideouttab-right {
	right: 0px;
	transform: translateX(100%);
	border-right: none;
}
.ui-slideouttab-right.ui-slideouttab-open {
	transform: translateX(0%);
}
.ui-slideouttab-right .ui-slideouttab-handle {
    transform-origin: 0% 0%;
    transform: rotate(-90deg) translate(-100%,-100%);   
}
.ui-slideouttab-right .ui-slideouttab-handle-reverse {
    transform-origin: 0% 100%;
    transform: rotate(-90deg);
}
/* Left */
.ui-slideouttab-left {
	left: 0px;
	transform: translateX(-100%);
	border-left: none;
}
.ui-slideouttab-left.ui-slideouttab-open {
	transform: translateX(0%);
}
.ui-slideouttab-left .ui-slideouttab-handle {
    transform-origin: 100% 0%;
    transform: rotate(-90deg);   
}
.ui-slideouttab-left .ui-slideouttab-handle-reverse {
    transform-origin: 100% 100%;
    transform: rotate(-90deg) translate(100%,100%);   
}
/* Top */
.ui-slideouttab-top {
	top: 0px;
	transform: translateY(-100%);
	border-top: none;
}
.ui-slideouttab-top.ui-slideouttab-open {
	transform: translateY(0%);
}
/* Bottom */
.ui-slideouttab-bottom {
	bottom: 0px;
	transform: translateY(100%);
	border-bottom: none;
}
.ui-slideouttab-bottom.ui-slideouttab-open {
		transform: translateY(0%);
}

/* turn font awesome icon in a tab upright */
.ui-slideouttab-left .ui-slideouttab-handle>.fa-icon, 
.ui-slideouttab-right .ui-slideouttab-handle>.fa-icon { 
    transform: rotate(90deg);
}
.ui-slideouttab-handle>.fa-icon {
    margin-left: 0.5em;
}

/* apply rounded corners if handle has the -rounded class */
.ui-slideouttab-top .ui-slideouttab-handle-rounded,
.ui-slideouttab-left .ui-slideouttab-handle-rounded {
    border-radius: 0 0 4px 4px;
}
.ui-slideouttab-right .ui-slideouttab-handle-rounded, 
.ui-slideouttab-bottom .ui-slideouttab-handle-rounded {
    border-radius: 4px 4px 0 0;
}


header {
    /*height: 60px;*/
    position: relative;
    background-color: #f3f5f6;
}

    header h1 {
        color: #9aa6af;
        text-align: left;
        font-size: 27px;
        line-height: 60px;
        font-weight: bold;
        padding-left: 20px;
    }

.burger {
    padding: 14px 10px 14px;
    float: left;
    display: none;
}

.header-liveChat {
    display: none !important;
}

    .burger.open-trunk .hamburger .top {
        -webkit-transform: translateY(8px) rotateZ(45deg);
        -ms-transform: translateY(8px) rotateZ(45deg);
        transform: translateY(8px) rotateZ(45deg);
    }

.burger.open-trunk .hamburger .middle {
    width: 0;
    -ms-opacity: 0;
    opacity: 0;
}

.burger.open-trunk .hamburger .bottom {
        -webkit-transform: translateY(-8px) rotateZ(-45deg);
        -ms-transform: translateY(-8px) rotateZ(-45deg);
        transform: translateY(-8px) rotateZ(-45deg);
    }

@media only screen and (max-width: 991px) {

    header {
        height: 60px;
        z-index: 2;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        /* starting point */
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        background-color: rgb(40, 40, 40) !important;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
        display: flex;
        flex-wrap: wrap;
        padding: 0 15px;
    }

        header h1 {
            color: #ffffff;
            text-align: center;
            padding-left: 0;
            display: block;
        }

    .burger {
        display: block;
    }

    .header-liveChat {
        display: flex !important;
    }

    /*  Nav Drawer Layout  */
    nav {
        position: relative;
    }

        nav ul {
            height: 100%;
            overflow-y: auto;
        }

        nav li {
            display: block;
            float: none;
        }

            nav li a {
                padding: 22px 25px;
                letter-spacing: 3px;
                font-size: 14px;
            }

                nav li a.logo {
                    display: none;
                }

                nav li a.active {
                    color: #fff;
                    background-color: #141e23;
                }

                nav li a:hover {
                    color: #fff;
                    background-color: #19252c;
                }

            nav li:first-child a.active,
            nav li:first-child a:hover {
                border-radius: 10px 0 0 0;
            }

    /* NAVIGATION ANNIMATION */
    nav {
        width: 93%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        margin: 0;
        background-color: #1d2d35;
        /* starting point */
        opacity: 0;
        -webkit-transform: translate3d(5%,0,0)scale(.97);
        -moz-transform: translate3d(5%,0,0)scale(.97);
        transform: translate3d(5%,0,0)scale(.97);
    }

        /*Nav Expanding Open Effect*/
        nav.open-trunk {
            opacity: 1;
            -webkit-transform: translate3d(0,0,0)scale(1);
            -webkit-animation: slideIn .35s ease-in-out;
            -moz-transform: translate3d(0,0,0)scale(1);
            -moz-animation: slideIn .35s ease-in-out;
            transform: translate3d(0,0,0)scale(1);
            animation: slideIn .35s ease-in-out;
        }

    @-webkit-keyframes slideIn {
        0% {
            opacity: .3;
            -webkit-transform: translate3d(5%,0,0)scale(.97);
        }

        100% {
            opacity: 1;
            -webkit-transform: translate3d(0,0,0)scale(1);
        }
    }

    @-moz-keyframes slideIn {
        0% {
            opacity: .3;
            -moz-transform: translate3d(5%,0,0)scale(.97);
        }

        100% {
            opacity: 1;
            -moz-transform: translate3d(0,0,0)scale(1);
        }
    }

    @keyframes slideIn {
        0% {
            opacity: .3;
            transform: translate3d(5%,0,0)scale(.97);
        }

        100% {
            opacity: 1;
            transform: translate3d(0,0,0)scale(1);
        }
    }

    /*Nav Shrinking Closed Effect*/
    nav.close-trunk {
        opacity: 0;
        -webkit-transform: translate3d(5%,0,0)scale(.97);
        -webkit-animation: slideOut .3s ease-in-out;
        -moz-transform: translate3d(5%,0,0)scale(.97);
        -moz-animation: slideOut .3s ease-in-out;
        transform: translate3d(5%,0,0)scale(.97);
        animation: slideOut .3s ease-in-out;
    }

    @-webkit-keyframes slideOut {
        0% {
            opacity: 1;
            -webkit-transform: translate3d(0,0,0)scale(1);
        }

        100% {
            opacity: .3;
            -webkit-transform: translate3d(5%,0,0)scale(.97);
        }
    }

    @-moz-keyframes slideOut {
        0% {
            opacity: 1;
            -moz-transform: translate3d(0,0,0)scale(1);
        }

        100% {
            opacity: .3;
            -moz-transform: translate3d(5%,0,0)scale(.97);
        }
    }

    @keyframes slideOut {
        0% {
            opacity: 1;
            transform: translate3d(0,0,0)scale(1);
        }

        100% {
            opacity: .3;
            transform: translate3d(5%,0,0)scale(.97);
        }
    }



    /* CONTENT ANNIMATION */
    .header-top {
        /* starting point */
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        z-index: 1;
    }

        /*Content Sliding Open Effect*/
        header.open-trunk,
        .section-main.open-trunk,
        .header-top.open-trunk {
            -webkit-transform: translate3d(240px,0,0);
            -webkit-animation: open-trunk .5s ease-in-out;
            -moz-transform: translate3d(240px,0,0);
            -moz-animation: open-trunk .5s ease-in-out;
            transform: translate3d(240px,0,0);
            animation: open-trunk .5s ease-in-out;
        }

    @-webkit-keyframes open-trunk {
        0% {
            -webkit-transform: translate3d(0,0,0);
        }

        70% {
            -webkit-transform: translate3d(260px,0,0);
        }

        100% {
            -webkit-transform: translate3d(240px,0,0);
        }
    }

    @-moz-keyframes open-trunk {
        0% {
            -moz-transform: translate3d(0,0,0);
        }

        70% {
            -moz-transform: translate3d(260px,0,0);
        }

        100% {
            -moz-transform: translate3d(240px,0,0);
        }
    }

    @keyframes open-trunk {
        0% {
            transform: translate3d(0,0,0);
        }

        70% {
            transform: translate3d(260px,0,0);
        }

        100% {
            transform: translate3d(240px,0,0);
        }
    }

    /*Content Sliding Closed Effect*/
    header.close-trunk,
    .section-main.close-trunk,
    .header-top.close-trunk {
        -webkit-transform: translate3d(0,0,0);
        -webkit-animation: close-trunk .3s ease-in-out;
        -moz-transform: translate3d(0,0,0);
        -moz-animation: close-trunk .3s ease-in-out;
        transform: translate3d(0,0,0);
        animation: close-trunk .3s ease-in-out;
    }

    @-webkit-keyframes close-trunk {
        0% {
            -webkit-transform: translate3d(240px,0,0);
        }

        100% {
            -webkit-transform: translate3d(0,0,0);
        }
    }

    @-moz-keyframes close-trunk {
        0% {
            -moz-transform: translate3d(240px,0,0);
        }

        100% {
            -moz-transform: translate3d(0,0,0);
        }
    }

    @keyframes close-trunk {
        0% {
            transform: translate3d(240px,0,0);
        }

        100% {
            transform: translate3d(0,0,0);
        }
    }
}


.pagination {
    position: relative;
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.42857143;
            color: #337ab7;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            z-index: 2;
            color: #23527c;
            background-color: #eee;
            border-color: #ddd;
        }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 3;
        color: #fff;
        cursor: default;
        background-color: #337ab7;
        border-color: #337ab7;
    }

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

html,body{font-family:"Roboto",sans-serif;font-size:14px;font-weight:400;line-height:1.5;color:#333;min-width:360px;}body{background-repeat:no-repeat;background-position:top;background-color:#fff;background-image:url(/Content/Images/background_body.jpg);background-size:100% auto;}a{color:#333;}a:hover,a:focus{text-decoration:none;color:#31b1f8;}ol,ul,li{margin:0;padding:0;}li{list-style-type:none;}a,span,i{-webkit-transition:all .25s ease 0s;-o-transition:all .25s ease 0s;-moz-transition:all .25s ease 0s;transition:all .25s ease 0s;}a:focus,a:active{outline:none;}img{max-width:100%;height:auto;}.table{color:#aaa;}.section{position:relative;width:100%;min-height:100%;}.section-main{background-color:#000;}.section-content{padding:35px 0;min-height:100%;}.section-content.no-background{background:0 0 !important;padding:0;}.section-content.no-background>.container{padding-top:35px;padding-bottom:35px;}@media(max-width:575px){.section-content.no-background{background:#fff !important;}}form{overflow:hidden;}.field-validation-error{color:#f44336;}.ui-slideouttab-panel,.ui-slideouttab-left.ui-slideouttab-open{z-index:100;}.modal .modal-dialog:not(.modal-dialog-centered){margin-top:60px;}#livechat-compact-container{z-index:1000 !important;}.introduceBong90 h1{font-size:16px;font-weight:bold;border-top:1px dashed #4d4d4d;font-size:15px;margin-top:10px;padding-top:15px;margin-bottom:10px;}.modal-backdrop.show{opacity:.8;}.view-mobile{display:none;}@media(max-width:767px){.view-mobile{display:block;}}.title-color{color:rgba(255,255,255,.87);}.boder-bottom-title{border-bottom:3px solid #bbb;}.close-without-header{position:absolute;right:10px;top:4px;font-size:28px;z-index:1;}.flex-1{flex:1;}.cursor-pointer{cursor:pointer;}.overflow-hidden{overflow:hidden;}.btn-outline-primary{color:#0199ed;border-color:#0199ed;}.btn-outline-primary:hover{color:#fff;background-color:#0199ed;border-color:#0199ed;}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary .btn-outline-primary:not(:disabled):not(.disabled):active{color:#fff;background-color:#0199ed;border-color:#0199ed;}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active{color:#fff;background-color:#0199ed;border-color:#0199ed;}.btn-primary{background-color:#31b1f8 !important;transition:all .1s ease-in-out;}.btn-primary:hover,.btn-primary:active,.btn-primary:focus{background-color:#0199ed !important;}.btn-primary_sub{background-color:#d70f15 !important;}.btn-primary_sub:hover,.btn-primary_sub:active,.btn-primary_sub:focus{background-color:#b30f0b !important;}.btn-more{background-color:#31b1f8;color:#fff;padding:15px 60px;font-size:16px;text-transform:uppercase;}.btn-more:hover{background-color:#0199ed;}.border-color-primary{border-color:#31b1f8 !important;}.border-color-primary_sub{border-color:#d70f15 !important;}.display-inline{display:inline-block;}.text-primary{color:#31b1f8 !important;}.text-lightGray{color:#e5e5e5 !important;}.text-gray{color:#aaa !important;}.text-link{text-decoration:none;color:#2196f3 !important;cursor:pointer;}.text-link:hover{text-decoration:underline !important;}.bg-primary{background-color:#31b1f8 !important;}.bg-primary_sub{background-color:#d70f15 !important;}.bg-lightGray{background-color:#e5e5e5 !important;}.bg-dark-light{background-color:#121212 !important;}.btn.bg-primary:hover,.btn.bg-primary:focus{background-color:#31b1f8 !important;opacity:.8;}@media(max-width:767px){.d-xs-none{display:none !important;}}.background-image{background-repeat:no-repeat;background-position:center;background-size:cover;}.bg-black{background-color:#000;}.position-fixed.fullPage,.position-absolute.fullPage{top:0;bottom:0;left:0;right:0;}.loadMore{text-align:center;margin:25px 0;}.loadMore .btn{display:block;margin:0 auto;padding:15px 60px;max-width:100%;background:#808080;color:#fff;border-radius:0;text-transform:uppercase;}.loadMore .btn:hover{color:#962d21;}.cricle{border-radius:50%;}.line-either-side{position:relative;overflow:hidden;text-align:center;}.line-either-side:before,.line-either-side:after{content:" ";position:absolute;top:50%;margin-left:-999em;height:2px;width:998em;border-top:1px solid #ccc;}.line-either-side:after{left:auto;width:999em;margin:0 0 0 1em;}.article-wrap{padding:40px 0;}.article-wrap .article-title{text-align:center;font-size:26px;text-transform:uppercase;margin-bottom:30px;}.banner{width:100%;}.banner img{width:100%;}.thumbnail-list{padding:20px 0;}.thumbnail-list .thumbnail{padding-bottom:15px;}.thumbnail-list .thumbnail .thumbnail-title{font-size:16px;font-weight:bold;text-align:center;}.icon{width:25px;height:23px;margin-right:3px;display:inline-block;vertical-align:middle;}.icon:after{content:"";display:block;background-position:center;background-repeat:no-repeat;background-size:cover;width:100%;height:100%;}.icon.icon-viber:after{background-image:url("/Content/Images/icons/ic_viber.png");}.icon.icon-zalo:after{background-image:url("/Content/Images/icons/ic_zalo.png");}.icon.icon-wechat:after{background-image:url("/Content/Images/icons/ic_wechat.png");}.loading-submit{position:relative;}.loading-submit:after{content:"";position:absolute;top:0;bottom:0;right:0;left:0;background-color:#fafafa;opacity:.7;z-index:2;}.loading-submit:before{content:"";position:absolute;top:50%;left:50%;margin-top:-35px;margin-left:-30px;animation:fa-spin 1s infinite steps(8);display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:2.5em;text-rendering:auto;-webkit-font-smoothing:antialiased;z-index:3;}.colorchange{-webkit-animation:color-change .8s infinite alternate;}@keyframes color-change{0%{color:#d70f15;}50%{color:#31b1f8;}100%{color:#fff;}}.radius-0{border-radius:0;}.theme-dark .dropdown-dark .btn{background-color:#121212 !important;border:1px solid #f8f9fa;color:#fff !important;}.theme-dark .btn-outline-primary{color:#31b1f8;border-color:#31b1f8;border:1px solid #31b1f8;}.theme-dark .btn-outline-primary:hover{color:#fff;background-color:#0199ed;border-color:#0199ed;}.theme-dark .btn-outline-primary:not(:disabled):not(.disabled).active,.theme-dark .btn-outline-primary .btn-outline-primary:not(:disabled):not(.disabled):active{color:#fff;background-color:#0199ed;border-color:#0199ed;}.theme-dark .btn-outline-primary:not(:disabled):not(.disabled).active,.theme-dark .btn-outline-primary:not(:disabled):not(.disabled):active{color:#fff;background-color:#0199ed;border-color:#0199ed;}.modal-view{z-index:10000000009;}.modal-view.show{padding-right:0 !important;}.modal-view .close{position:absolute;display:flex;flex-wrap:wrap;justify-content:center;align-items:center;right:-12px;top:-12px;height:24px;width:24px;margin:0;color:#fff;border:3px solid #fff;background:#d70f15;font-size:16px;border-radius:100%;opacity:.8;z-index:10;}.modal-view .close:hover{opacity:1 !important;}@media(max-width:567px){.modal-view .close{height:22px;width:22px;right:-11px;top:-11px;}}.modal-view .modal-body{padding:10px;}@media(max-width:767px){.modal-view .close{top:10px;right:8px;height:22px;width:22px;}.modal-view .modal-content{position:static;background-color:transparent;border:none;border-radius:0;}.modal-view .modal-body{padding:0;}}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;}@-webkit-keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3);}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1);}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9);}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03);}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97);}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);}}@keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3);}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1);}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9);}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03);}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97);}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);}}.bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn;}.table-align-middle tr>td{vertical-align:middle;}.table-align-middle thead th{vertical-align:middle;}.show-full-screen{position:fixed;left:0;top:0;right:0;bottom:0;z-index:100000;border-radius:0;box-shadow:none;border:none;transition:all .2s ease-out;background-color:#121212;padding:15px;}.box-square,.box-3x4,.box-4x3,.box-16x9,.box-420x460{display:block;position:relative;width:100%;height:0;padding-bottom:100%;overflow:hidden;margin:0;background:#f8f8f8;}.box-square>img,.box-3x4>img,.box-4x3>img,.box-16x9>img,.box-420x460>img{position:absolute;top:0;left:0;right:auto;bottom:auto;display:block;height:100% !important;}.box-square>span,.box-3x4>span,.box-4x3>span,.box-16x9>span,.box-420x460>span{position:absolute;top:0;left:0;right:0;bottom:0;background-position:center;background-repeat:no-repeat;background-size:cover;}.box-3x4{padding-bottom:133.333333%;}.box-4x3{padding-bottom:75%;}.box-16x9{padding-bottom:56.25%;}.box-420x460{padding-bottom:106.52%;}.form-control{background:#282828;box-shadow:none !important;border:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.87);}.form-control:focus{border:1px solid #0083c5;background:#282828;color:rgba(255,255,255,.87);}.input-group>.input-group-prepend>.input-group-text{background:#282828;border-color:rgba(255,255,255,.1);color:#909090;}.icon-require{font-size:8px;}.date-dropdowns{display:flex;flex-wrap:wrap;}.date-dropdowns .day,.date-dropdowns .month,.date-dropdowns .year{flex:1;background:#2a3038;box-shadow:none !important;border:1px solid #495057;color:#bbb;margin-right:4px;padding:8px;}.date-dropdowns .year{margin-right:0;}.date-dropdowns .month{flex-grow:2;}.view-code{padding:0;font-size:12px;color:#aaa;background-color:#242424;border-radius:0;cursor:pointer;position:relative;}.view-code .btnCopy{position:absolute;right:4px;top:4px;padding:2px 6px;transition:opacity .3s ease-in-out;opacity:0;z-index:1;}.view-code code{color:#aaa;}.view-code:hover code{color:#31b1f8;}.view-code:hover .btnCopy{opacity:1;}.loader{position:relative;overflow:hidden;width:100%;height:100%;pointer-events:none;}.loader:after{content:"";position:absolute;top:0;bottom:0;right:0;left:0;background-color:#fafafa;opacity:.6;z-index:998;display:block !important;}.loader.loader-full-screen{position:fixed;z-index:1000;}.loader:before{display:block !important;position:absolute;content:"";top:0;left:-200px;width:200px;height:4px;background-color:#31b1f8;z-index:999;animation:loading 2s linear infinite;}@keyframes loading{from{left:-200px;width:30%;}50%{width:30%;}70%{width:70%;}80%{left:50%;}95%{left:120%;}to{left:100%;}}.news-page .title-page{margin-bottom:35px;}.collapse-page .card{border:0;border-radius:5px;margin-bottom:10px;background-color:#3a3a3a;color:#aaa;}.collapse-page .card .card-header{background-color:#242424;}.collapse-page .card .card-header .btn{color:rgba(255,255,255,.87);}.collapse-page .card .card-body{padding:15px 30px;}.tabSlideOut{background-color:#0199ed !important;border:none !important;display:none;}.tabSlideOut .ui-slideouttab-handle-rounded{background-color:#0199ed;border-radius:0 !important;border-top-left-radius:8px !important;border-top-right-radius:8px !important;padding:5px;}.tabSlideOut .thumbnail{width:100px;height:73px;}.tabSlideOut .title{font-size:20px;text-transform:uppercase;color:#fff;font-weight:bold;padding:6px 12px;display:block;background-color:#31b1f8;border-top-left-radius:5px;border-top-right-radius:5px;}@media(max-width:575px){.tabSlideOut .title{font-size:16px;}}.tabSlideOut .item-contact{color:#fff;font-size:14px;border:1px solid;border-color:#0087c0;padding:5px 10px;margin-bottom:10px;}.tabSlideOut .item-contact a{color:#fff;}.tabSlideOut .item-contact .fa{font-size:18px;margin:0 6px;}header{background-color:#000;}.header-top{padding:15px 0;overflow:hidden;background-color:#000;z-index:1;position:relative;}@media(max-width:991px){.header-top{padding-top:70px;}}.header-top .logo{float:left;margin-right:25px;}.header-top .logo svg{width:140px;}@media(max-width:600px){.header-top .logo{float:none;text-align:center;margin-right:0;margin:0 auto;}}.header-top .container{max-width:1140px;}.header-top .menu-list{display:flex;flex-wrap:wrap;align-items:center;flex-basis:100%;justify-content:center;}@media(max-width:600px){.header-top .menu-list{margin:0 auto !important;}}.header-top .menu-list .far.fa-dot-circle{padding:3px;color:#31b1f8;vertical-align:middle;}.header-top .menu-list .menu-item{cursor:pointer;margin-left:5px;}@media(max-width:991px){.header-top .menu-list .menu-item:first-child{width:100%;text-align:center;margin-bottom:5px;}}.header-top .menu-list .menu-item a{padding:4px 12px;}.header-top .menu-list .menu-item.background-link{margin-right:10px;margin-bottom:5px;}.header-top .menu-list .menu-item.social-link{width:24px;height:24px;background-color:#e5e5e5;border-radius:100%;display:flex;justify-content:center;align-items:center;font-size:14px;margin-right:10px;cursor:pointer;}.header-top .menu-list .menu-item.social-link .fa{color:#31b1f8;}.header-top #btnLivechat:hover .cricle{background-color:#0199ed;}@media(max-width:768px){.header-top .container{display:flex;flex-direction:column;align-items:center;justify-content:center;}.header-top .logo{margin:10px 0;}}.marquee-wrap{float:right;border-radius:4px;padding:3px 10px 3px 30px;position:relative;margin:20px 0 0 0;width:100%;max-width:500px;}.marquee-wrap i.fa{position:absolute;left:10px;top:7px;}.marquee-wrap a{margin:0 25px;}.marquee-wrap a:hover{color:#0199ed !important;}.marquee-wrap .marquee-notification{overflow:hidden;font-size:12px;line-height:20px;}@media(min-width:1200px){.marquee-wrap{max-width:768px;}}@media(max-width:1200px) and (min-width:992px){.marquee-wrap{max-width:768px;}}@media(max-width:992px) and (min-width:820px){.marquee-wrap{max-width:580px;}}@media(max-width:820px) and (min-width:768px){.marquee-wrap{max-width:500px;}}@media(max-width:768px){.marquee-wrap{max-width:100%;margin:10px 0 0 0;}}.marquee-wrap{background:#e5e5e5;}.marquee-wrap .marquee-notification{background-color:#dee2e6;}.nav-menu{background-color:#ffb300;}.nav-menu .nav-menu-list{display:flex;flex-wrap:wrap;justify-content:center;}@media(max-width:991px){.nav-menu .nav-menu-list{display:block;}}@media(max-width:991px){.nav-menu{background-color:#1d2d35;}}.nav-menu .nav-item{position:relative;cursor:pointer;}.nav-menu .nav-item:after{content:"";background:transparent;display:block;margin:auto;height:3px;width:0;transition:width .5s ease,background-color .5s ease;}.nav-menu .nav-item:hover:after{background:#fff;width:100%;}.nav-menu .nav-item .nav-link{cursor:pointer;line-height:34px;padding:2px 20px !important;text-transform:uppercase;transition:opacity .2s;color:#fff;opacity:1;font-size:16px;}.nav-menu .nav-item.active .nav-link,.nav-menu .nav-item:hover .nav-link{opacity:1;}.nav-menu .nav-item.active .nav-link{font-weight:500;}.nav-menu .nav-item.active:after{width:100%;background:#fff;}.nav-menu .nav-item.nav-small .nav-link{font-size:14px;padding:2px 15px !important;line-height:30px;}@media(max-width:991px){.nav-menu .nav-item:after{display:none;}.nav-menu .nav-item .nav-link{color:#fff;}.nav-menu .nav-item:hover .nav-link,.nav-menu .nav-item.active .nav-link{opacity:1;color:#fff;background-color:#19252c;}.nav-menu .nav-item.nav-small .nav-link{font-size:16px;padding:6px 18px !important;line-height:34px;}}.hamburger{cursor:pointer;width:auto;margin:0 auto;-webkit-transition:all 500ms ease;transition:all 500ms ease;}.hamburger .bar{display:block;height:3px;width:25px;background:#e8e8e8;margin:5px auto;-webkit-transition:all 500ms ease;transition:all 500ms ease;}.hamburger .middle{margin:0 auto;opacity:1;-webkit-transition:all 250ms ease;transition:all 250ms ease;}footer{padding:50px 0;background-color:#4c4c4c;}footer .title{line-height:22px;font-size:16px;color:#fff;margin-bottom:15px;text-transform:uppercase;}@media(max-width:767px){footer .title{margin-top:15px;}}footer .footer-menus{min-height:130px;}@media(max-width:767px){footer .footer-menus{min-height:auto;}}footer .footer-menus li{line-height:25px;margin-bottom:5px;text-transform:uppercase;}footer .footer-menus li a{font-size:13px;color:#fff;text-transform:uppercase;}footer .footer-menus li a:hover{color:#31b1f8;}.copyright-wrap{background-color:#404040;text-align:center;padding:15px 0;color:#aaa;}.theme-dark{background:none;background-color:#000;color:#aaa;}.theme-dark a{color:#aaa;}.theme-dark .section-content{background-color:#121212;}.theme-dark .article-wrap .article-title{color:#0199ed;}.theme-dark .modal .modal-title{color:#fff;}.theme-dark .modal .modal-content{background-color:#1e1f23;}.theme-dark .modal label{color:#fff;}.theme-dark .modal input.form-control,.theme-dark .modal textarea.form-control{background-color:#cecece;}.theme-dark .modal .close{color:#fff;}.theme-dark .modal .close:not(:disabled):not(.disabled):focus,.theme-dark .modal .close:not(:disabled):not(.disabled):hover{color:#fff;}.theme-dark .newspage{background-color:#121212;color:#aaa !important;}.theme-dark .newspage .title{color:#fff;}.theme-dark .newspage a:not([href="#"]):hover{color:#0199ed;}.theme-dark .newspage span{background-color:transparent !important;color:#aaa !important;}.theme-dark .new-news{background-color:#121212;}.theme-dark .new-news a{color:#fff;}.theme-dark .news .title a{color:#fff;}.theme-dark .news .title a:hover{color:#31b1f8;}.theme-dark .news .excerpt{color:#aaa;}.theme-dark .post-detail *:not(a){color:#aaa !important;border-color:#aaa !important;}.theme-dark .post-detail span{background-color:transparent !important;color:#aaa !important;}.theme-dark .post-detail .title{color:#fff;}.theme-dark .post-detail a:not([href="#"]):hover{color:#31b1f8 !important;}.theme-dark .list-related li a:hover{color:#31b1f8;}.theme-dark .card-news:hover{box-shadow:0 0 10px 0 #e8e8e8;}.theme-dark .dropdown .dropdown-menu{background-color:#121212;color:#fff;}.theme-dark .dropdown .dropdown-menu .dropdown-item{color:#aaa;}.theme-dark .dropdown .dropdown-menu .dropdown-item:hover{background-color:#0199ed;}.theme-dark .header-top .marquee-wrap{background:#242424;}.theme-dark .header-top .marquee-wrap .marquee-notification{background-color:#000;}.theme-dark .header-top .marquee-wrap .marquee-notification a{color:rgba(255,255,255,.87);}.theme-dark footer{background-color:#000;}.theme-dark .copyright-wrap{background-color:#121212;}.theme-dark .footer-menus li a{color:#aaa;}.theme-dark .step-wrapper{overflow:hidden;color:#bbb;background-color:#212529;}.theme-dark .step-wrapper .step-inner .number{color:#31b2f6;}.theme-dark .step-wrapper>.step-left:hover .step-inner .number,.theme-dark .step-wrapper>.step-right:hover .step-inner .number,.theme-dark .step-wrapper>.step-main:hover .step-inner .number{color:#191a1d;}.theme-dark .step-wrapper .link-view{color:#31b1f8;}.theme-dark .step-wrapper .link-view:hover{color:#31b1f8;}.theme-dark .step-wrapper>a:hover{color:#fff;}@media(max-width:767px){.theme-dark .step-wrapper>.step-left:hover .step-inner .number,.theme-dark .step-wrapper>.step-right:hover .step-inner .number,.theme-dark .step-wrapper>.step-main:hover .step-inner .number{color:#0199ed;}.theme-dark .step-wrapper>.step-left:hover .link-view:hover,.theme-dark .step-wrapper>.step-right:hover .link-view:hover,.theme-dark .step-wrapper>.step-main:hover .link-view:hover{color:#0199ed;}.theme-dark .step-wrapper .link-view{color:#31b1f8;}}.theme-dark .swiper-slide{background-color:#121212;}.theme-dark .swiper-slide .item .blog-inner{border:1px solid #4d4f56;}.theme-dark .swiper-slide .item .title a{color:#0199ed;border-bottom:1px solid #aaa;}.theme-dark .swiper-slide .item:hover .title a{color:#31b1f8;}.theme-dark .banks-wrap{background-color:#121212;}.theme-dark .tabSlideOut .item-contact{border-color:#dee2e6;}.theme-dark .dropdown .dropdown-menu .dropdown-item:hover,.theme-dark .dropdown .dropdown-menu .dropdown-item.active{color:#fff;}.theme-dark .my-account{background-color:#121212;}.theme-dark .account-wrap .menu-left{border-color:rgba(255,255,255,.2);}.theme-dark .account-wrap .dropdown .dropdown-menu li:hover a{background:#31b1f8;color:#fff;}.theme-dark .account-wrap .dropdown .dropdown-menu li.active a{background:#0199ed;color:#fff;}.theme-dark .pagination>li>a,.theme-dark .pagination>li>span{color:#fff;background-color:#121212;border:1px solid #dee2e6;}.theme-dark .pagination>.disabled>span,.theme-dark .pagination>.disabled>span:hover,.theme-dark .pagination>.disabled>span:focus,.theme-dark .pagination>.disabled>a,.theme-dark .pagination>.disabled>a:hover,.theme-dark .pagination>.disabled>a:focus{color:#fff;cursor:not-allowed;background-color:#121212;border-color:#dee2e6;}.theme-dark .pagination>.active>a,.theme-dark .pagination>.active>span,.theme-dark .pagination>.active>a:hover,.theme-dark .pagination>.active>span:hover,.theme-dark .pagination>.active>a:focus,.theme-dark .pagination>.active>span:focus{color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7;}.theme-dark .account-wrap .nav-item .nav-link{color:#aaa;}.theme-dark .account-wrap .nav-item .nav-link.active{color:#000;}.theme-dark .account-wrap .dropdown .dropdown-toggle{color:#aaa;}.theme-dark .introduceBong90{background-color:#000;}.theme-dark .introduceBong90 h1{color:#fff;}.navigation{display:block;position:absolute;cursor:pointer;}.navigation .a{fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}.navigation:hover{opacity:.8;}.pagination-slider{position:absolute;}.pagination-slider .i{position:absolute;cursor:pointer;}.pagination-slider .i .b{fill:#000;fill-opacity:.5;stroke:#fff;stroke-width:1200;stroke-miterlimit:10;stroke-opacity:.3;}.pagination-slider .i:hover .b{fill:#fff;fill-opacity:.7;stroke:#000;stroke-opacity:.5;}.pagination-slider .iav .b{fill:#fff;stroke:#000;fill-opacity:1;}.pagination-slider .i.idn{opacity:.3;}.jssorl-slider-spin img{animation-name:jssorl-slider-spin;animation-duration:1.6s;animation-iteration-count:infinite;animation-timing-function:linear;}@keyframes jssorl-slider-spin{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}.modal-view{z-index:10000000009;}.modal-view.show{padding-right:0 !important;}.modal-view .close{position:absolute;display:flex;flex-wrap:wrap;justify-content:center;align-items:center;right:-12px;top:-12px;height:24px;width:24px;margin:0;color:#fff;border:3px solid #fff;background:#d70f15;font-size:16px;border-radius:100%;opacity:.8;z-index:10;}.modal-view .close:hover{opacity:1 !important;}@media(max-width:567px){.modal-view .close{height:22px;width:22px;right:-11px;top:-11px;}}.modal-view .modal-body{padding:10px;}@media(max-width:767px){.modal-view .close{top:10px;right:8px;height:22px;width:22px;}.modal-view .modal-content{position:static;background-color:transparent;border:none;border-radius:0;}.modal-view .modal-body{padding:0;}}.box-info{border-radius:8px;border:1px solid rgba(255,255,255,.1);padding:15px;}.box-info .tbl-info-border{transition:padding-left 15ms ease-in-out;padding-left:16px;}.box-info .tbl-info-border>div{border-top:1px solid rgba(255,255,255,.1);}.box-info .box-info-header{padding-top:15px;padding-left:15px;padding-right:15px;padding-bottom:8px;}.box-info .box-info-title{font-size:1.325rem;color:#e5e5e5;}.box-info .box-info-subTitle{padding:8px 0 0 0;word-break:break-word;word-wrap:break-word;}.box-info .box-info-body .tbl-info .tbl-info-row .tbl-info-column{padding-left:24px;padding-right:24px;padding-top:15px;padding-bottom:16px;}.box-info .box-info-body .tbl-info .tbl-info-row .tbl-info-column .tbl-info-column-lbl{display:flex;padding-top:4px;text-transform:uppercase;font-size:12px;}.box-info .box-info-body .tbl-info .tbl-info-row .tbl-info-column .tbl-info-column-value{display:flex;padding-top:4px;font-size:1.2rem;color:#e5e5e5;}.nav-account-wrap{padding:0;margin:0;list-style:none;background-color:#242424;}.nav-account-wrap .nav-account-item{width:100%;}.nav-account-wrap .nav-account-item .nav-account-link{padding:8px 14px 8px 22px;position:relative;display:flex;flex-wrap:wrap;align-items:center;color:#fff;}.nav-account-wrap .nav-account-item .nav-account-link:hover{background-color:rgba(58,58,58,.4);transition:background 15ms;text-decoration:none;}.nav-account-wrap .nav-account-item .nav-icon{font-size:24px;width:30px;height:30px;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;color:#909090;}.nav-account-wrap .nav-account-item .nav-text{padding-left:16px;}.nav-account-wrap .nav-account-item.active .nav-account-link{background-color:#3a3a3a !important;color:#fff !important;}.home-content-main .container{max-width:1140px;}@media(max-width:767px){.home-content-main .container{width:100%;}}.home-content-main .slider-container{padding:0;}@media(max-width:767px){.home-content-main .menus{display:none;}}.step{position:relative;padding:40px 0;}.step>.container{position:relative;z-index:1;}.step .background{position:absolute;top:0;left:0;bottom:0;width:100%;background-image:url(/Content/Images/background_step.jpg);z-index:0;background-position:center !important;background-repeat:no-repeat !important;background-size:cover !important;}.box-step-wrap{display:flex;padding-left:100px;}@media(max-width:991px){.box-step-wrap{padding-left:0;}}@media(max-width:650px){.box-step-wrap{flex-direction:column;}}.box-step{position:relative;padding-left:60px;padding-right:100px;width:33.3333%;}.box-step:after{content:"";background-image:url("/Content/Images/icons/arrow-right.png");width:40px;height:54px;position:absolute;right:30px;background-size:cover;background-position:center;background-repeat:no-repeat;opacity:.8;top:0;}@media(max-width:991px){.box-step:last-child{padding-right:0;}}.box-step:last-child:after{background-image:none;width:0;height:0;}.box-step .number,.box-step .title{font-weight:bold;}.box-step .number{display:inline-block;float:left;color:#fff;background-color:#31b1f8;border-radius:100%;border:1px solid #ccc;line-height:1;margin-right:15px;position:absolute;width:48px;height:48px;left:0;display:flex;justify-content:center;align-items:center;font-size:18px;}.box-step .title{font-size:24px;color:#3c3950;}@media(max-width:767px){.box-step{padding-right:60px;}.box-step:after{width:30px;height:40px;right:15px;}.box-step .title{font-size:18px;}}@media(max-width:650px){.box-step{width:100%;padding-bottom:15px;}.box-step:after{background-image:none;width:0;}.box-step .title{font-size:22px;}}.banks-wrap{background-color:#f7f7f7;}.swiper-wrap{padding:0 28px;position:relative;}.step-wrapper{overflow:hidden;color:#f8f9fa;background-color:#f8f9fa;}.step-wrapper>a{float:left;height:138px;background-repeat:no-repeat;}.step-wrapper .step-inner{width:80%;}.step-wrapper .step-inner .number{position:absolute;left:10%;top:0;margin:8px 0;color:#fff;transition:all .3s;}.step-wrapper .step-inner h4{margin-top:10px;}.step-wrapper>.step-left{background-image:url(/Content/Images/step/arrow_left_normal.png);width:40%;background-size:100% 138px;padding-left:20%;position:relative;}.step-wrapper>.step-left .step-inner .number{left:38%;}.step-wrapper>.step-left:hover{background-image:url(/Content/Images/step/arrow_left_normal_hover.png);}.step-wrapper>.step-main{position:relative;background-image:url(/Content/Images/step/arrow_center_normal.png);width:25.5%;background-size:100% 138px;margin-left:-1.5%;padding-left:7%;}.step-wrapper>.step-main:hover{background-image:url(/Content/Images/step/arrow_center_normal_hover.png);}.step-wrapper>.step-right{background-image:url(/Content/Images/step/arrow_right_normal.png);width:35%;background-size:100% 138px;margin-left:-2%;position:relative;padding-left:8%;padding-right:10%;}.step-wrapper>.step-right:hover{background-image:url(/Content/Images/step/arrow_right_normal_hover.png);}@media(max-width:991px){.step-wrapper>.step-right{padding-right:8%;}}.step-wrapper>.step-left,.step-wrapper>.step-right,.step-wrapper>.step-main{cursor:pointer;display:block;}.step-wrapper>.step-left:hover .step-inner .number,.step-wrapper>.step-right:hover .step-inner .number,.step-wrapper>.step-main:hover .step-inner .number{color:#31b2f6;}.step-wrapper .link-view{text-decoration:none;color:#f8f9fa;font-weight:bold;position:absolute;bottom:10px;display:block;cursor:pointer;margin-bottom:6px;}.step-wrapper .link-view:hover{color:#f8f9fa;text-decoration:underline;}.step-wrapper .link-view>span{display:inline-block;width:15px;height:15px;background:url("/Content/Images/step/play-icon.png");background-position:center;background-repeat:no-repeat;background-size:cover;vertical-align:text-top;margin-left:5px;}@media(max-width:767px){.step-wrapper{padding:15px;background-color:#f7f7f7;color:#333;}.step-wrapper>a{float:none;height:auto;margin:0 0 25px !important;}.step-wrapper>a:hover{color:#31b2f6;}.step-wrapper>.step-left,.step-wrapper>.step-right,.step-wrapper>.step-main,.step-wrapper>.step-left:hover,.step-wrapper>.step-right:hover,.step-wrapper>.step-main:hover{width:100%;background:none;padding:0;padding-left:90px;position:relative;}.step-wrapper>.step-left:after,.step-wrapper>.step-right:after,.step-wrapper>.step-main:after,.step-wrapper>.step-left:hover:after,.step-wrapper>.step-right:hover:after,.step-wrapper>.step-main:hover:after{content:"";position:absolute;left:70px;border-right:1px solid #6c757d;top:8%;bottom:8%;}.step-wrapper .step-inner{width:100%;}.step-wrapper .step-inner .number{color:#31b2f6;left:20px !important;font-size:45px;margin:0;top:50%;margin-top:-30px;}.step-wrapper .step-inner h4{margin:0 0 5px;}.step-wrapper .step-inner .link-view{position:relative;bottom:auto;}.step-wrapper>.step-left:hover .step-inner .number,.step-wrapper>.step-right:hover .step-inner .number,.step-wrapper>.step-main:hover .step-inner .number{color:#0199ed;}.step-wrapper>.step-left:hover .link-view:hover,.step-wrapper>.step-right:hover .link-view:hover,.step-wrapper>.step-main:hover .link-view:hover{color:#0199ed;text-decoration:underline;}.step-wrapper .link-view{color:#31b2f6;}}@media(min-width:1200px){.section-signup .widget.signup{margin-left:100px;}}@media(max-width:1200px){.section-signup .widget.signup{margin-left:10px;}}@media(max-width:991px){.section-signup .widget.signup{margin-left:0;}}.section-signup input[type=color],.section-signup input[type=date],.section-signup input[type=datetime],.section-signup input[type=datetime-local],.section-signup input[type=email],.section-signup input[type=month],.section-signup input[type=number],.section-signup input[type=password],.section-signup input[type=search],.section-signup input[type=tel],.section-signup input[type=text],.section-signup input[type=time],.section-signup input[type=url],.section-signup input[type=week],.section-signup select:focus,.section-signup textarea{font-size:16px;}.section-signin .widget{max-width:400px;margin:0 auto;}.section-signin input[type=color],.section-signin input[type=date],.section-signin input[type=datetime],.section-signin input[type=datetime-local],.section-signin input[type=email],.section-signin input[type=month],.section-signin input[type=number],.section-signin input[type=password],.section-signin input[type=search],.section-signin input[type=tel],.section-signin input[type=text],.section-signin input[type=time],.section-signin input[type=url],.section-signin input[type=week],.section-signin select:focus,.section-signin textarea{font-size:16px;}.btnSendingOTPCode{text-align:center;font-size:12px;padding:1px;line-height:1.2;}.btnSendingOTPCode span:last-child{font-size:10px;}.my-account-wrap{display:flex;flex-wrap:wrap;flex-direction:row;}.my-account-wrap .content-left{width:280px;}.my-account-wrap .content-right{flex:1;padding-left:25px;padding-right:25px;}@media(max-width:991px){.my-account-wrap .content-left{width:100%;margin-bottom:25px;}.my-account-wrap .content-right{flex:1;padding:0;}}.report-summary .badge{line-height:1.5;}.report-summary .list-group .list-group-item:not(:first-child){font-size:12px;}.report-summary .list-group .list-group-item:first-child{background-color:#3a3a3a;color:#fff;}.report-summary .list-group .list-group-item{background-color:#242424;}.report-summary .list-group .list-group-item span{font-size:13px;}.product-page .product{display:flex;align-items:center;margin-bottom:25px;}.product-page .product .prod-title{text-transform:uppercase;margin:0 0 10px 0;font-size:20px;}.product-page .product .prod-content{flex:1;}.product-page .product .prod-img{text-align:center;}.product-page .product .prod-img img{max-width:450px;width:100%;}@media(max-width:991px){.product-page .product{flex-direction:column;margin-bottom:30px;}.product-page .product .prod-title{text-align:center;}.product-page .product .prod-content{order:2;flex-basis:100%;}.product-page .product .prod-img{order:1;margin:0 0 15px 0 !important;}}.commission-page{background-color:transparent !important;position:relative;color:#dedede;}.commission-page::after{content:"";background:url("/Content/images/commission/backgound_1.jpg") no-repeat center center fixed;opacity:.4;top:0;left:0;bottom:0;right:0;position:absolute;z-index:-1;}.commission-page .step-commission-wrap{display:flex;padding-left:25px;}.commission-page .step-commission-wrap .step-commission{margin-bottom:25px;color:#fff;}.commission-page .step-commission-wrap .step-commission img{max-width:52px;margin-right:15px;}@media(max-width:767px){.commission-page .step-commission-wrap{flex-direction:column;margin-bottom:25px;}.commission-page .step-commission-wrap .img-laptop{display:none;}}
