/*Core Style Starts*/

* {
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch; /* lets it scroll lazy */
}
html, body {
        height: 100%;
        margin: 0px;
    }
body {
    font-size: 100%;
    font-family: "Microsoft JhengHei", Tahoma, Verdana, Arial, sans-serif;
    color: #726161;
}

a {
    text-decoration: none;
}
a:focus, a:hover{
      text-decoration: none;
}
p {
    font-size: 1.875em;
    
}
*:focus {
  border: 0 !imponton;
    outline-width: 0;
}
.red-text {
    color: #ef300a;
}

.block {
    padding: 1em 2em;
   
}

.blue-text {
    color: #1490e6;
    line-height: 1.5em;
    font-size: 1.875em;
}


.outer-wrapper {
    background: #f5f2ed;
    overflow:scroll;
    height: 100%;
}

.header {
    background: #e60000;
    display: block;
    justify-content: space-between;
    padding: 0.3em 0.5em;
    align-items: center;
    height: 2.38em;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    z-index: 20;
    font-size: 225%;
}

    .header a {
        display: inline-block;
    }

    .header img {
        display: block;
        width: 7em;
        height: 1.8em;
        
    }

    .header .left a, .header .right a {
        
        height: 1.5em;
        width: 1.5em;
        display:inline-block;
        margin: 0 auto;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        margin-top: 0.15em;
    }


    .header a.menu-btn {
        background-image: url(../../images/css/menu-button.svg);
    }

    .header a.back-btn {
        background-image: url(../../images/css/back-button.png);
    }

    .header a.close-btn {
        background-image: url(../../images/css/close-button.png);
    }

    .header a.home-btn {
        background-image: url(../../images/css/home-button.svg);
    }

    .header a.logout-btn {
        background-image: url(../../images/css/icon-logout.svg);
    }
    .header a.login-btn {
        background-image: url(../../images/css/icon-login.svg);
    }
    .header a.done-btn {
        background-image: url(../../images/css/done-button.png);
    }
.header .left,.header .right{
    display: inline-block;
position: absolute;
}
.header .mid{
    position: absolute;
    margin: 0 auto;
    width: calc(100% - 1em);

}
.header .left{
    left:1em;
    z-index: 500;
}
.header .mid{
   margin: 0 auto;
    text-align: center;
}
.header .right{
    right:1em;
    z-index: 500;
}
.main-wrapper {
    max-width: 64.000em;
    background: #fff;
    margin: 0 auto;
    margin-top: 0em;
    overflow: hidden;
    height: auto;
    min-height: 100%;
   
}
.main-wrapper.home-page {
   
    min-height: 84%;
   
}
.navigation {
    background: #89847c;
    position: absolute;
    top: 54px;
    left: 0;
    bottom: 0;
    z-index: 20;
    overflow: auto;
    width: 90%;
    max-width: 43em;
    left: -100%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

    .navigation.target-open {
        left: 0;
    }

    .navigation .user {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1em 2em;
          padding-left: 3.8em;
    }

        .navigation .user .left  {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            color: #fff;
            font-size: 1.5em;
        }

            .navigation .user .left  img {
                margin-right: 1em;
                width: 2.8em;
                height: 2.8em;
            }

        .navigation .user .right a img {
            display: block;
            width: 3.125em;
        }

    .navigation .menu-list {
        overflow: hidden;
        border-bottom: 1px solid #7d7872;
    }

        .navigation .menu-list > ul > li > a {
            padding: 0.5em 2em;
            display: block;
            color: #fff;
            border-top: 1px solid #7d7872;
            font-size: 2em;
            text-decoration: none;
        }
        .navigation .menu-list > ul > li > a:hover {
           background: #a7d8fd;
            color: #fff;
           
        }

        .navigation .menu-list > ul > li > ul li {
            list-style: none;
            color: #fff
        }

            .navigation .menu-list > ul > li > ul li a {
                padding: 0.5em;
                display: block;
                color: #fff;
                border-top: 1px solid #7d7872;
                font-size: 1.5em;
                text-decoration: none;
                padding-left: 4em;
                background-image: url(../../images/css/nav-dot.png);
                background-repeat: no-repeat;
                background-position: 2.9em center;
                background-size: 0.5em;
            }
            .navigation .menu-list > ul > li > ul li a:hover {
                background-color: #a7d8fd;
                background-image: url(../../images/css/nav-dot.png);
                background-repeat: no-repeat;
                background-position: 2.9em center;
                background-size: 0.5em;
            }


                .navigation .menu-list > ul > li > ul li a i {
                    font-family: 'Comic Sans MS';
                }

    .navigation .social-links {
        display: flex;
        justify-content: flex-end;
    }

        .navigation .social-links a {
            margin: 1em;
            width: 3.563em;
            height: 3.563em;
            display: inline-block;
        }

            .navigation .social-links a img {
                display: block;
                max-width: 100%;
            }

.footer {
    background: #c5bcaf;
    padding: 1em;
    text-align: center;
    font-size: 0.65em;
    z-index: 500;
}

    .footer p {
        margin-bottom: 0em;
        color: #fff;
    }

/*Core Style Ends*/
/*----------------------------------------------------------*/

/*Content Style Starts*/
h1 {
    position: relative;
    padding: 1.1em 2em;
    padding-right: 1.1em;
    color: #544545;
    background: #f9f7f4;
    font-size: 2.250em;
    margin-top: 0;
    margin-bottom: 0;
}

    h1:before {
        position: absolute;
    left: 1em;
    top: 1.6em;
    content: "";
    background: #ff8d30;
    height: 0.25em;
    width: 0.25em;
    border-radius: 0.25em;
    margin-top: -0.1em;
    }

h2 {
    background: #efebe4;
    font-size: 2.250em;
    padding: 0.7em 1em;
    margin-top: 0px;
    margin-bottom: 0px;
}



.home-navigation {
    background: #fcfcfc;
    overflow: hidden;
}

    .home-navigation a {
        background: #fff;
        color: #726161;
        font-size: 1.5em;
        display: flex;
        justify-content: flex-start;
        padding: 0.5em 1em;
        border: 1px solid #cdcdcd;
        border-radius: 0.5em;
        margin: 1em;
        align-items: center;
        line-height: 3em;
        text-decoration: none;
    }
    .home-navigation a:hover {
        background: #a8d8fe;
        color: #fff;
        
    }

        .home-navigation a i {
            width: 3em;
            height: 3em;
            display: inline-block;
            background-repeat: no-repeat;
            background-position: center;
            margin-right: 1em;
            background-size: contain;
        }

            .home-navigation a i.home-1 {
                background-image: url(../../images/css/home-1.png);
            }

            .home-navigation a i.home-2 {
                background-image: url(../../images/css/home-2.png);
            }

            .home-navigation a i.home-3 {
                background-image: url(../../images/css/home-3.png);
            }

            .home-navigation a i.home-4 {
                background-image: url(../../images/css/home-4.png);
            }

            .home-navigation a i.home-5 {
                background-image: url(../../images/css/home-5.png);
            }

            .home-navigation a i.home-6 {
                background-image: url(../../images/css/home-6.png);
            }

            .home-navigation a i.home-7 {
                background-image: url(../../images/css/home-7.png);
            }

            .home-navigation a i.dolar-eye {
                background-image: url(../../images/css/dolar-eye.png);
            }

            .home-navigation a:hover i.home-1 {
                background-image: url(../../images/css/home-1_off.png);
            }

            .home-navigation a:hover i.home-2 {
                background-image: url(../../images/css/home-2_off.png);
            }

            .home-navigation a:hover i.home-3 {
                background-image: url(../../images/css/home-3_off.png);
            }

            .home-navigation a:hover i.home-4 {
                background-image: url(../../images/css/home-4_off.png);
            }

            .home-navigation a:hover i.home-5 {
                background-image: url(../../images/css/home-5_off.png);
            }

            .home-navigation a:hover i.home-6 {
                background-image: url(../../images/css/home-6_off.png);
            }

            .home-navigation a:hover i.home-7 {
                background-image: url(../../images/css/home-7_off.png);
            }

            .home-navigation a:hover i.dolar-eye {
                background-image: url(../../images/css/dolar-eye_off.png);
            }
          
.home-navigation a span{
    font-size: 1.3em;
}

.accordion-container {
    overflow: hidden;
    
}

    .accordion-container .item h3 {
        font-size: 2.250em;
    }

    .accordion-container .item h4 {
        font-size: 2.250em;
    }

    .accordion-container .item {
        overflow: hidden;
        border-bottom: 1px solid #d8d7d5;
    }
    .accordion-container .item:last-child {
    
        border-bottom: 0;
    }
    .accordion-container .item.accordion {
        border-top: 1px solid #d8d7d5;
        border-bottom: 1px solid #d8d7d5;
    }
    .item.accordion h3{
        margin-top: 15px;
    margin-bottom: 15px;
    }
    .accordion-container.infolist .item{
        padding-bottom: 1.5em;
    }
    .accordion-container .item span.info{
        font-size: 1.5em;
        display: block;
        padding: 0.2em 1.6em;
    }
    

    .accordion-container .item-sub h3 {
        font-size: 2.250em;
    }

    .accordion-container .item-sub h4 {
        font-size: 2.250em;
    }

    .accordion-container .item-sub {
        overflow: hidden;
        border-bottom: 1px solid #d8d7d5;
    }
    .accordion-container .item-sub:first-child{
        border-top: 1px solid #a7d8fd;
    }
    .accordion-container .item-sub:last-child{
        border-bottom: 1px solid #a7d8fd;
    }
    .accordion-container.infolist .item-sub{
        padding-bottom: 1.5em;
    }
    .accordion-container .item-sub span.info{
        font-size: 1.5em;
        display: block;
        padding: 0.2em 1.6em;
    }

    .accordion-container .item.shadow {
        background: rgba(0, 0, 0, 0.1);
        color:#000000;
        z-index: 99999;
    }
    .item.accordion.trigger-open{
        border-bottom: 0;
    }
/*
        .accordion-container .item:last-child {
            border-bottom: none;
        }
*/
        .accordion-container .item .item-title {
            padding:  0;
            font-weight: normal;
        }

            .accordion-container .item .item-title a {
                color: #726161;
                display: inline-block;
                justify-content: space-between;
                align-items: center;
                position: relative;
                padding: 0 1em;
                width: 98%;
               
               
            }
            .accordion-container .item .item-title span {
              
                padding: 0 1em;
            }
                .accordion-container .item .item-title a i {
                    display: inline-block;
                    position:relative;
                    height: 1.33em;
                    width: 1.33em;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-image: url(../../images/css/blue-arrow-link.png);
                    background-size: contain;
                    float: right;
                }

        .accordion-container .item.accordion > .item-title > a i {
            background-image: url(../../images/css/acordion-close.png);
        }

        .accordion-container .item.accordion.trigger-open > .item-title > a i {
            background-image: url(../../images/css/acordion-open.png);
        }

        .accordion-container .item .curency {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1em 2.25em;
            padding-top: 0;
        }

            .accordion-container .item .curency span {
                font-size: 1.625em;
               
                vertical-align: bottom;
         
            }

            .accordion-container .item .curency strong {
                font-size: 3em;
                font-family: Helvetica;
                font-weight: normal;
                float:right;
            }

.item-actions {
    justify-content: flex-end;
    display: block;
    padding: 0.5em 2.25em;
    text-align: right;
    
}

    .item-actions a {
        margin-left: 0.5em;
        font-size: 1.875em;
        line-height: 2.55em;
        color: #726161;
        padding-left: 1.5em;
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 1.5em auto;
        height: 2.5em;
        display: inline-block;
    }

        .item-actions a.dolar-arrow {
            background-image: url(../../images/css/dolar-arrow.png);
        }

        .item-actions a.dolar-cycle {
            background-image: url(../../images/css/dolar-recycle.png);
        }

        .item-actions a.dolar-give {
            background-image: url(../../images/css/dolar-give.png);
        }

        .item-actions a.dolar-hand {
            background-image: url(../../images/css/dolar-hand.png);
        }

        .item-actions a.dolar-info {
            background-image: url(../../images/css/info-icon.png);
        }


        .item-actions a.edit {
            background-image: url(../../images/css/edit-button.png);
        }

        .item-actions a.delete {
            background-image: url(../../images/css/delete-button.png);
        }

        .item-actions a.update {
            background-image: url(../../images/css/update-button.png);
        }

.accordion-container .item .accordion-content {
    background: #f6f3ef;
    display: none;
}

.accordion-container .item.trigger-open .accordion-content {
    display: block;
    border-top: 1px solid #d8d7d5;
}

.accordion-container .accordion-note {
    padding: 1em;
    background: #f5f2ed;
    font-size: 1em;
}
.accordion-container .item.trigger-open .accordion-content .item-title a{
    padding-left: 2em;
}
.accordion-container .item.trigger-open .accordion-content  span{
    padding-left: 1.3em;
}
.banner {
    overflow: hidden;
    margin-bottom: 1em;
}

    .banner a, .banner a img {
        display: block;
        width: 100%;
    }

.note {
  
    padding: 1em 1.2em;
    margin-top: 1em;
}

    .note ol {
        margin-left: 2em;
        margin-top: 1em;
    }

        .note > ol > li {
            list-style: cjk-ideographic;
            margin-bottom: 0.5em;
            font-size: 1.5rem;
        }
        
        .note li > ol > li {
            list-style-type: decimal;
            margin-bottom: 0.5em;
            font-size: 1.5rem;
        }

    .note p {
        font-size: 1.875em;
    }

.input-container {
    position: relative;
    margin-bottom: 2em;
}

    .input-container .input {
        position: relative;
    }

    .input-container .label-container {
        font-size: 2.250em;
        margin-bottom: 0em;
    }

    .input-container input[type="text"],.input-container input[type="password"],
    .input-container select {
        width: 100%;
        background: none;
        color: #8b7c7c;
        border: none;
        padding: 0.5em;
        padding-bottom: 0.3em;
        border-bottom: 2px solid #d8d7d5;
        font-size: 1.625em;
        box-sizing: border-box;
        z-index: 10;
        position: relative;
        display: block;
    }

    .input-container .input textarea {
        width: 100%;
        resize: none;
        min-height: 10em;
        box-sizing: border-box;
        border: 2px solid #d8d7d5;
        display: block;
        font-size: 1.625em;
        padding: 1em;
        color: inherit;
    }

    .input-container .input-flex {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        white-space: nowrap;
        margin-bottom: 2em;
    }

        .input-container .input-flex span {
            display: inline-block;
            vertical-align: middle;
            font-size: 1.875em;
            width: auto;
            margin: 0 0.5em;
        }

        .input-container .input-flex > * {
            width: 100%;
        }

        .input-container .input-flex .input {
            width: 100%;
        }

    .input-container .calendar {
        background: url(../../images/css/cal-icon.png) no-repeat left center;
        padding-left: 1.5em;
        background-size: auto 80%;
    }

    .input-container .input:after {
        content: "";
        left: 0;
        right: 0;
        bottom: 0;
        height: 1em;
        border-left: 2px solid #d8d7d5;
        border-right: 2px solid #d8d7d5;
        position: absolute;
        -webkit-appearance: none;
        z-index: 0;
    }

    .input-container.select:after {
        background: url(img/gray-arrow-down.png) no-repeat right bottom;
        border-right: 0;
    }

.input-link {
    margin-bottom: 1em;
}

    .input-link a {
        color: #726161;
        margin-bottom: 1em;
        font-size: 1.875em;
    }

fieldset.radios-container {
    border: 0;
}

    fieldset.radios-container legend {
        font-size: 2.250em;
        margin-bottom: 0.5em;
        display: block;
        box-sizing: border-box;
        width: 100%;
    }

    fieldset.radios-container .radios {
        display: flex;
        flex-wrap: wrap;
    }

        fieldset.radios-container .radios .radio {
            padding-right: 1em;
            margin-right: 1em;
            margin-bottom: 1em;
            font-size: 1.875em;
            min-width: 5em;
        }

            fieldset.radios-container .radios .radio:last-child {
                border-right: 0;
            }


            fieldset.radios-container .radios .radio input {
                height: 1em;
                width: 1em;
                margin-right: 0.5em;
            }

            fieldset.radios-container .radios .radio .radio-description {
                display: block;
                color: #1490e6;
            }

                fieldset.radios-container .radios .radio .radio-description strong {
                    display: block;
                }

                fieldset.radios-container .radios .radio .radio-description .curency {
                    font-size: 0.6em;
                    margin-right: 1em;
                }


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #8b7c7c;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #8b7c7c;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #8b7c7c;
}

:-moz-placeholder { /* Firefox 18- */
    color: #8b7c7c;
}

.steps p {
    font-size: 1.875em;
}

.question-box {
    padding: 2em 0;
    display: flex;
    align-items: center;
    clear: both;
}

    .question-box a {
        border: 1px solid #c5c5c5;
        border-radius: 0.25em;
        padding: 0.37em;
        color: #726161;
        margin: 0 1em;
        width: 100%;
        text-align: center;
        font-size: 1.875em;
        text-decoration: none;
    }

        .question-box a:hover {
            background: #d8d7d5;
            color: #fff;
        }

        .question-box a.positive {
            border-bottom: 4px solid #90c5ee;
        }

        .question-box a.negative {
            border-bottom: 4px solid #ecb5bb;
        }



.tabs {
    display: flex;
    margin: 2em;
    justify-content: center;
    align-items: center;
    background: #a7d8fd;
    border-radius: 3em;
}

    .tabs a {
        padding: 0.5em;
        font-size: 2.125em;
        width: 100%;
        text-align: center;
        border-radius: 3em;
        color: #fff;
    }

        .tabs a:hover, .tabs a.active {
            background: #5baae5;
        }




        


.box-links-wrapper {
    overflow: auto;
    background: #fff;
    width: 100%;
    z-index: 999!important;
}
.box-links {
    display: inline-flex;
    border: 2px solid #ece8e3;
    margin: 1em 0;
    overflow: auto;
    flex-wrap: nowrap;
    width: 100%;

}

    .box-links a {
        padding: 0.5em 1em;
        font-size: 2.000em;
        text-align: center;
        /*width: 100%;*/
        border-right: 2px solid #ece8e3;
        
        color: #544545;
        white-space: nowrap;
        display: inline-block;
        overflow: hidden;
        min-width: 65%;
    }

   
  .box-links a:hover ,.box-links a.active{
        
        background:  #90c5ee;
      color:white;
    }

        .box-links a:last-child {
            border: none;
        }

.scroll-box {
    overflow: auto;
    margin-bottom: 1em;
}

    .scroll-box table {
        width: 100%;
        color: #fff;
        font-size: 1.875em;
        border: 0;
        border-collapse: collapse;
        box-sizing: border-box;
    }

        .scroll-box table th {
            background: #5999da;
            padding: 0.5em;
            text-align: center;
            border: 2px solid #fff;
            white-space:nowrap;
            width: 40%;
        }

        .scroll-box table td {
            background: #84b2e1;
            padding: 0.5em;
            text-align: left;
            border: 2px solid #fff;
            
        }
        .scroll-box.rwd-table table td {
            
            text-align:center;
        }
        .scroll-box table td.fr {
           
            text-align: right;
            
        }
        .scroll-box table td.fc {
           
            text-align: center;
            
        }

            .scroll-box table td img {
                display: inline-block;
                margin-right: 0.5em;
            }

            .scroll-box table td:first-child,
            .scroll-box table th:first-child {
                border-left: none;
                border-right: none;
            }

            .scroll-box table td:last-child,
            .scroll-box table th:last-child {
                border-left: none;
                border-right: none;
            }

.box-listing {
    overflow: hidden;
}

    .box-listing .item {
        border-bottom: 2px solid #d8d7d5;
        padding: 1em;
        position: relative;
        background: #fff;
        position: relative;
        z-index: 10;
    }

        .box-listing .item.shadow {
            z-index: 20;
        }

        .box-listing .item h3 {
            font-size: 1.9em;
            margin-bottom: 0.3em;
        }

        .box-listing .item p {
            font-size: 1.875em;
            margin-bottom: 0.5em;
        }

        .box-listing .item a.link {
            height: 4.2em;
            width: 4.2em;
            overflow: hidden;
            display: block;
            text-indent: -999999px;
            background: url(img/extend-button.png) no-repeat center;
            background-size: contain;
            position: absolute;
            top: 1em;
            right: 1em;
        }


/*Content Style Ends*/



.homepage-slider{
    width: 100%;
    display: block;
    overflow: hidden;
}
.homepage-slider a{
    width: 100%;
    display:inline-block;
    float: left;
}
.homepage-slider a img{
    width: 100%;
    
}




    .main-wrapper .input-text, .main-wrapper .input-select ,.main-wrapper .input-textarea{
        border-bottom: 2px solid #d8d7d5;
        margin: 0.5em 0;
        margin-bottom: 0;
    }
.main-wrapper .input-textarea,.main-wrapper .input-checkbox{
    border-bottom: 0px;
}
        .main-wrapper .input-textarea textarea{
            resize : none;
            overflow: hidden;
            width: 100%;
            text-align: left;
            padding: 1em;
        }

.main-wrapper .input-text, .main-wrapper .input-select {
        border-bottom: 2px solid #d8d7d5;
        margin: 0.5em 0;
        margin-bottom: 0;
        position: relative;
    }

        .main-wrapper .input-text:after {
            position: absolute;
            bottom: -1px;
            height: 9px;
            content: "";
            width: 2px;
            background: #d8d7d5;
            right: 0;
            z-index: 11;
        }

        .main-wrapper .input-text:before {
            position: absolute;
            bottom: -1px;
            height: 9px;
            content: "";
            width: 2px;
            background: #d8d7d5;
            z-index: 11;
        }
        .main-wrapper .input-select:after {
            bottom: -1px;
                content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0 9px 9px;
            border-color: transparent transparent #d8d7d5 transparent;
            position: absolute;
            right: 0;
                z-index: 11;
        }

        .main-wrapper .input-select:before {
            position: absolute;
            bottom: -1px;
            height: 9px;
            content: "";
            width: 2px;
            background: #d8d7d5;
                z-index: 11;
        }
       

        .main-wrapper .input-text input {
            border: 0;
            padding: 0.4em 0.8em;
            width: 100%;
             background: #ffffff;
            color: #a9a5a5;
            font-size: 2em;
            min-height: 40px;
        }
        .main-wrapper .input-select select {
             min-height: 40px;
        }






    .main-wrapper select::-ms-expand {
        display: none;
    }

    .main-wrapper select {
        -webkit-appearance: none;
        -moz-appearance: none;
        text-indent: 0.01px;
        text-overflow: ' ';
        width: 100%;
        border: 0;
            padding: 0.4em 0.8em;
        width: 100%;
        background: #ffffff;
        font-size: 2em;
    }
.none-border{
    border:0;
}
.radios span,.row span{
    font-size: 2em;
    display: inline-block;
    margin-top: 1em;
   
}
.row.input-box{
       margin-top: 1.58em;
}
fieldset.radios-container .radios.radios-vertical{
    display: block;
}
.tr{
    text-align: right;
}
.scroll-box table th.tl{
    text-align: left;
}
.c-details{
    min-width: 15em;
}
.article ol{
    margin-left: 2em;
}
.checkbox label, .radio label{
    padding-left: 0em;
    font-size: 2em;
}
input[type=checkbox], input[type=radio]{
    margin-top: 0.2em;
}
.scroll-box table td a{
    color: #fff;
    text-decoration: underline;
}
.scroll-box table td a:hovr{
    color: #fff;
}
.input-container > .row{
    margin-top: 0.8em;
    margin-bottom: 0.8em;
}
.input-radio {
    font-size: 2em;
}
input[type=checkbox] + span, input[type=radio]+ span{
    padding-right: 1em;
}
.scroll-box table td a.detail{
    float: right;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    display: inline-block;
    background: #ffffff;
    color:#544545;
    padding: 0 0.5em;
    text-decoration: none;
    font-size: 1em;
    border:#5999da 1px solid;
    margin-left: 1em;
    
}

.personal{
    background: #fcfcfc;
}

.personal-list .personal-item a{
    display: block;
    border: 1px #c5c5c5 solid;
    font-size: 1.8em;
    padding: 1em 1.5em;
    padding-right: 3em;
    text-align: left;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 0.5em 0;
    background: #fff;
    width: 100%;
    position: relative;
    color: #544545;
    text-decoration: none;
}
.personal-list .personal-item a:hover{
    border: 1px #a7d8fd solid;
    background: #a7d8fd;
    color:#fff;
}
.personal-list .personal-item span.personal-value{
    float: right;
    
}
.personal-list .personal-item i{
    display: inline-block;
    position:absolute;
    height: 1.5em;
    width: 1.5em;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../images/css/personal-icon-off.png);
    background-size: contain;
    right: 1em;
}
.personal-list .personal-item:hover i{
     background-image: url(../../images/css/personal-icon-on.png);
}
.personal-img {
    width: 100%;
    text-align: center;
    padding: 3em;
    padding-left: 6em;
}
.personal-img > img{
    width: 35%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 3px #d1ceca solid;
}
.personal-img > a{
   
    text-decoration: none;
    position: relative;
    top: 3em;
    left: -3em;
    z-index:7;
}
.personal-img > a >img {
    width: 15%;
}
.input-checkbox > table td{
    vertical-align: top;
    padding: 0.3em;
}
.input-checkbox > table td input{
   
    margin-top:0.6em;
}
.input-checkbox > table td span {
    vertical-align: top;
    margin-top: 0em;;
}
.mb{
    margin-bottom: 2em;
}
.radio input[type=radio]{
    margin-left: 0;
    vertical-align: middle;
    height: 2em;
    display: inline-block;
    margin-top: 0;
   
}

@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) 
{ @media {
  .radio input[type=radio]{
    margin-top: 0.4em;
  }

}}
.radio input[type=radio]+label{
    margin-left: 1em;
   
}
.input.range{
    width: 42%;
    float: left;
}
span.range{
    margin: 0.3em 1em;
    float: left;
    display: inline-block;
}
.input.range.input-right{
    float:right;
}
.switch-item {
    display: none;
}
a.but_add{
    -webkit-border-radius: 2em;
    -moz-border-radius:  2em;
    border-radius:  2em;
    height: 3.8em;
    background: url(../../images/css/icon-add.png) no-repeat  #90c5ee;
    background-size: 3.8em ;
    display: inline-block;
    color:white;
    margin: 1em 0 0 0;
    line-height: 4em;
    vertical-align: middle;
    text-align: left;
    
}
a.but_add span{
    font-size:2em;
    display: block;
    font-weight: bold;
    padding: 0em 1.5em 0em 2.4em;
}
a.but_delete {
    display: inline-block;
    height: 1.5em;
    width: 1.5em;
    background: url(../../images/css/icon-delete.png) no-repeat right bottom;
    background-size: contain;
    margin: 0 0.5em;
}
a.but_edit {
    display: inline-block;
    height: 1.5em;
    width: 1.5em;
    background: url(../../images/css/icon-edit.png) no-repeat right bottom;
    background-size: contain;
    margin: 0 0.5em;
}
.scroll-box th a {
    color: white;
    text-decoration: underline;
}
.scroll-box th a:hover {
    
    text-decoration: none;
}
.radio {
    margin-top: 2em;
    margin-bottom: 2em;
        vertical-align: top;
}
.mail_info {
    word-break: break-all;
}
.result_table_title {
    text-align: center;
}
.radio-datepicker{
    display: inline-block;
}
table tr td a.more{
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../images/css/personal-icon-on.png);
    background-size: 1.25em;
    display: inline-block;
    width: 2em;
    height: 2em;
    
}
.scroll-box table td a.detail.more{
    float: right;
    border: 0;
    padding: 0;
    text-decoration: none;
    font-size: 1em;
    margin-left: 1em;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../images/css/personal-icon-on.png);
    background-size: 1.25em;
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
}
a.btn.table-btn{
    display: inline-block;
    padding: 0.3em 1em;
    font-size: 2em;
    text-align: center;
    color: #fff;
    background: #a7d8fd;
    border-radius: 2.5em;
    margin-top: 0.3em;

}

h3.table-header{
    font-size: 2em;
    padding: 0.7em 1em;

    margin-top: 0px;
    margin-bottom: 0px;
}
.vip ul{
    margin-left: 2em;
    font-size:1.75em;
}
.vip ul li{
    padding-top: 0.5em ;
    padding-bottom:0.5em;

}
.vip a{
    color:#ed301c;
    text-decoration: underline;

}
.btn-vip,.btn-vip:hover{
    float:right;
    display: inline-block;
    border: 0px;
    border-radius: 0.25em;
    padding: 0.5em 1em 0.5em 2em;
    color: #726161;
    text-align: center;
    font-size: 0.8em;
    text-decoration: none;
    background: #98d1fc;
    background-image: url(../../images/css/PublicVip.png);
    background-position: 0.2em 0.1em;
    background-repeat: no-repeat;
    color:#fff;
    margin-top: -0.4em;

}

div.success,div.error{
    text-align: center;
    border: 0;
}
div.success img,div.error img{
    margin: 2em auto;
    display: block;
    width: 8em;
}
div.success.big img{
  
    width: 9em;
}
div.success span,div.error span{
    font-size: 3em;
}


table td.success,table td.fail{
    background-image: url(../../images/css/success.png);
    background-position: 10px 2px;
    background-repeat: no-repeat;
    background-size: 2em;
    padding-left: 2.5em;
}
table td.fail{
    background-image: url(../../images/css/fail.png);
}
span.disabled{
    color:#cccccc;
}
.row.input-info span{
    margin-top:0em;
    font-size: 1.5em;
    padding-left: 1.25em;
}
.input-container > .switch_box > .row.input-info{
        margin-top: 0.8em;
    margin-bottom: 0.8em;
}
.pop-info .glyphicon {
    position: relative;
    top: -2.4em;
    right: 1em;
    float: right;
    font-size: 2.5em;
    color:#a9a5a5;
}
.switch_button {
    display: none;
}

.loading{
    text-align: center;
}

.row.input-info span.red-text{
        padding-left: 0em;
}
.accordion-container .item .item-title.nolink{
    padding: 0 1em;

}
.accordion-container .item .item-title span.line2{
    width: 88%;
    display: inherit;
    padding-left: 0;
    
}

/*Responsive*/

.box-listing-dragdrop .item {
           
            height: 59px !important;
      
        }
       .box-listing-dragdrop  .shadows{
    z-index: 99999;
    height: 90px !important;
    border: 0;
}
    .banner a.dragdrop-button img{
            display: none;
    }
    .banner a.dragdrop-button img.bat-dragdrop{
            display: block;
    }

    .box-listing-dragdrop .item h3 {
        margin-top: 16px;
        margin-bottom: -10px;
    }
    .row span.inline{
        display: inline;
    }

.pop-info h3{
    font-size: 1.8em;
    font-weight: bold;
    clear:both;
}
.pop-info p{
    font-size: 0.8em;
clear:both;
}
.pop-info ul{
    clear:both;
    margin: 0;
    padding: 0;
}
.pop-info ul li{
    float:left;
    list-style: none;
    margin-right: 1em;
    width: 4em;
}
.col-xs-6.tr .tabs{
    margin: 1em  0; 
}
.col-xs-6.tr .tabs a{
    font-size: 1.8em;
}
.row.input-info span.datepicker{
    padding-left: 0em;
}
.menu-list ul {
    margin-bottom: 0;
}
.scroll-box.td-white-space th,.scroll-box.td-white-space td{
    white-space:nowrap;
}
input{
    border-radius: 0 !important;

}
.question-box.login-bat{
    padding: 0;
}
.question-box.login-bat a,.question-box.login-bat a:hover{
    border: 0;
    background: #ffffff;
    margin: 0 auot;
    text-align: center;
}
.login-bat img{
    height: 2em;
}
.rad > input,
.ckb > input{ /* HIDE ORG RADIO & CHECKBOX */
  visibility: hidden;
  position: absolute;
}

.rad > i{
    width:  1em;
    height: 1em;
}
.ckb > i{
    width:  1em;
    height: 1em;
}
.ckb > i {
  width: 25px;
  border-radius: 3px;
}
.rad > input:checked + i{ /* (RADIO CHECKED) <i> STYLE */
  
}


.rad > input + i:after{
   content: url('../../images/css/radio_off.png');
    display: block;

   
}
.rad > input:checked + i:after{
     content: url('../../images/css/radio_on.png');
     
}
/* CHECKBOX */
.ckb > i {

    background-repeat: no-repeat;
    margin-top: 3px;
    
}

.input-checkbox > .ckb > i {

    margin-top: -13px;
    
}
.input-checkbox > .ckb {
    margin-right: 0.8em;
}
.rad > input:checked + i{ 
  background-image: url(../../images/css/check_on.png);
}
.ckb > input + i:after{
   content: url('../../images/css/check_off.png');
    display: block;

   
}
.ckb > input:checked + i:after{
     content: url('../../images/css/check_on.png');
     
}




.back-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 99999;
    opacity: 0.8;
    filter: alpha(opacity=80);
    text-align: center;
}
.barcode-box {
    text-align: center;
}
.barcode-box img{
    margin: 2rem;
}
.barcode-box p{
    color: #ef300a;
    font-weight: bold;
}
div.success.block-underline{
        border-bottom: 1px solid #d8d7d5
}
div.success.block-underline p {
    margin: 5px 0;
}
.input-img {
    padding: 1.4em 0;
}
.input-img img {
    width: 60%;

}
.input-checkbox.confirm > .ckb{
    vertical-align: top;
    margin-top: 0.4em;
}
.input-checkbox.confirm span.title{
    width: 80%;margin-top: 0;
}
@media only screen and (max-width: 1024px) {
    body {
       
        font-family: "Microsoft JhengHei", Tahoma, Verdana, Arial, sans-serif;
        color: #726161;
    }
    
    .item-actions {
        flex-wrap: wrap;
    }

       

    .input-flex {
        flex-wrap: wrap;
        position: relative;
    }

    .input-container .input-flex span {
        margin: 0;
    }

        .input-container .input-flex span.flex-small:last-child {
            text-align: right;
            display: block;
            width: 100%;
            position: absolute;
            right: 0.5em;
            top: 1.5em;
        }
}

@media only screen and (max-width: 738px) {
    body {
        font-size: 9px;
        min-width: 320px;
    }
    .main-wrapper {
        margin-top: 0em;
    }

    .navigation {
        top: 72px;
    }
    .main-wrapper .input-text input {
            font-size: 2em;
    }
    .main-wrapper select {
        font-size: 2em;
    }
    .row .col-xs-3.col-sm-3 {
  padding-right: 5px;
    padding-left: 5px;
    width: 22%;
    margin-right: 0.45em;
}
.row .col-xs-3.col-sm-3:first-child {
  
    padding-left: 15px;
    width: 25%;
}
.row .col-xs-3.col-sm-3:last-child {
  
    padding-right: 15px;
    width: 25%;
    margin-right: 0em;
}

.main-wrapper .row .col-xs-3.col-sm-3 .input-text:after {

    right: 0px;
}
.main-wrapper .row .col-xs-3.col-sm-3:last-child .input-text:after {

    right: 0px;
}
    .rwd-table > table > thead{
        display: none;
    }
    .rwd-table tr {
        
        display: block;
        margin-bottom: 1em;
    }
    .rwd-table td{
        border: none !important;
        border-bottom: 1px solid #eee !important;
        position: relative;
        padding-left: 46% !important;
        white-space: normal;
        text-align: left !important;
        display: block;
        min-height: 2.5em;
    }
    .rwd-table td.title_none{
        padding-left: 0 !important;
        text-align: center !important;
    }
    .rwd-table td:before {
        content: attr(data-title);
    }
    .rwd-table td:before {
        position: absolute;
        height: 100%;
        top: 0px;
        left: 0px;
        width: 45% !important;
        min-width: 45% !important;
        padding-right: 10px;
        white-space: pre;
        text-align: left;
        font-weight: bold;
        background: #5999da;
        display: block;
        padding: 0.5em;
    }
    
   .rwd-table td.title_none:before {
        position: absolute;
        display: none;
        text-align: center;
       
     
    }
    .rwd-table th{
        display: none;
        font-size: 1.5em;
    }
    .box-listing-dragdrop {
    height: 37rem;
}
a.but_delete {
   
    margin: 0 1em;
}
a.but_edit {

    margin: 0 1em;
}

  
    .app-links {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 640px) {
    
    .rwd-table td{
        border: none !important;
        border-bottom: 2px solid #eee !important;
        position: relative;
        padding-left: 48% !important;
        white-space: normal;
        text-align: left !important;
        display: block;
    }
   .rwd-table td.title_none{
        padding-left: 0 !important;
       text-align: center !important;
    }
    .rwd-table td:before {
        position: absolute;
        height: 100%;
        top: 0px;
        left: 0px;
        width: 45% !important;
        min-width: 45% !important;
        padding-right: 10px;
        white-space: pre;
        text-align: left;
        font-weight: bold;
        background: #5999da;
        display: block;
        padding: 0.5em;
    }
    .rwd-table td.title_none:before {
        position: absolute;
        display: none;
        text-align: center;
    }
    .rwd-table td.title2line{
        height: 4em;
    }
  
}
@media only screen and (max-width: 414px) {
    .main-wrapper.home-page {
      
        min-height: 86.5%;

    }
    
}
@media only screen and (max-width: 375px) {
    .main-wrapper.home-page {
        min-height: 85%;
    }

}
@media only screen and (max-width: 300px) {
     .personal-list .personal-item a{
        overflow: hidden;
    }
    .personal-list .personal-item span{
        display: block;
    }
    .personal-list .personal-item span.personal-value{
        float: left;
        margin: 0.5em 0;
    }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : portrait) { 
    /* iPhone 6 Portrait */ 
}


@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : landscape) { 
    /* iPhone 6 landscape */
}


@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation : portrait) { 
    /* iPhone 6+ Portrait */
}


@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation : landscape) { 
    /* iPhone 6+ landscape */
}

@media only screen and (max-device-width: 640px), only screen and (max-device-width: 667px), only screen and (max-width: 480px){ 
    /* iPhone 6 and iPhone 6+ portrait and landscape */
}

@media only screen and (max-device-width: 640px), only screen and (max-device-width: 667px), only screen and (max-width: 480px) and (orientation : portrait){ 
    /* iPhone 6 and iPhone 6+ portrait */
}

@media only screen and (max-device-width: 640px), only screen and (max-device-width: 667px), only screen and (max-width: 480px) and (orientation : landscape){ 
    /* iPhone 6 and iPhone 6+ landscape */
}


.mobile-apps {
    text-align: center;
    padding: 2rem 0;
    background: #fff;
}

.mobile-apps .app-links {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

.mobile-apps .app-links a {
    margin: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-apps .app-links a img {
    max-width: 100%;
    display: block;
    margin: auto auto;
}

.autoLogOutModalmotp{
   		display: none;
   		position: absolute ;
   		z-index: 10000;
   		padding-top: 60px;
   		left: 0;
   		top: 0;
   		width: 100%;
   		height: 100%;
   		overflow: auto;
   		background-color: rgb(0, 0, 0);
   		background-color: rgba(0, 0, 0, 0.4);
}

.autoLogOutModalContent .question-box .confirm {
    border: 1px solid #c5c5c5;
    border-radius: 0.25em;
    padding: 0.37em;
    margin: 0 1em;
    width: 100%;
    text-align: center;
    font-size: 1.875em;
    text-decoration: none;
    border-bottom: 4px solid #90c5ee;
    background-color: white;
}

.autoLogOutModalContent .question-box .cancel {
    border: 1px solid #c5c5c5;
    border-radius: 0.25em;
    padding: 0.37em;
    margin: 0 1em;
    width: 100%;
    text-align: center;
    font-size: 1.875em;
    text-decoration: none;
    border-bottom: 4px solid #ecb5bb;
    background-color: white;
}

.autoLogOutModalContent .question-box .confirm:hover {
    background: #d8d7d5;
    color: #fff;
}
5em
.autoLogOutModalContent .question-box .cancel:hover {
    background: #d8d7d5;
    color: #fff;
}

.arrowPosit {
    position: fixed;
    left: calc(95% - 80px);
    top: 430px;
    z-index: 999;
}

.scrollDiv {
    max-height: 400px;
    overflow-y: scroll;
    /*padding: 10px;*/
    margin-bottom: 15px;
    border: 1px solid black;
}

