@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/
*:focus,
textarea:focus,
input:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
}

.formWrap .formItem .inputItem .inputstyle {
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
}

.roboto {
    font-family: "Roboto", sans-serif;
}

.nunito {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
}

body {
    background: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    font-family: "Roboto", sans-serif;
}

body.iphone {
    padding-top: 40px;
}

body.fixed {
    overflow: hidden;
}

.inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 30px;
}

/*VALIDATE CONTACT*/
.error {
    display: block;
    font-size: 12px;
    color: red;
}

/* HEADER */

#fixH {
    height: 95px;
}

#header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 50px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.09);
    z-index: 99;
    width: 100%;
}

#header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, .38);
    opacity: 0;
    transition: ease-in-out 0.8s;
}

body.fixed #header:before {
    opacity: 1;    
    z-index: 1;
    width: 100%;

}

#header .logo a {
    display: block;
    width: 183px;
}


#header .hdList {
    display: flex;
    flex-wrap: wrap;
}

#header .hdList li:first-child {
    position: relative;
    margin-right: 51px;
}

#header .hdList li:first-child:before {
    content: "";
    position: absolute;
    top: -1px;
    right: -26px;
    width: 1px;
    height: 100%;
    background-color: #29378B;
}

#header .hdList li a {
    position: relative;
    color: #29378B;
    padding-left: 27px;
    letter-spacing: 0.4px;
}

#header .hdList li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #29378B;
    transition: all .3s;
}

#header .hdList li a.login:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: url(/assets/frontend/images/common/icon-login.png)no-repeat;
    background-size: 100%;
}

#header .hdList li a.register:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 20px;
    height: 18px;
    background: url(/assets/frontend/images/common/icon-register.png)no-repeat;
    background-size: 100%;
}

#header .hdFrame {
    display: flex;
    align-items: center;
}

#header .hdMenu .hamburger {
    position: relative;
    width: 65px;
    height: 65px;
    background: #29378B;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 5px;
    padding: 0 15px;
    cursor: pointer;
    z-index: 99;
    margin-left: 30px;
    transition: all 0.8s;
}

#header .hdMenu .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    /* transition: .25s ease-in-out; */
    transition: all 0.3s;
    border-radius: 50px;
}

#header .hdMenu .hamburger span:nth-child(1) {
    margin-bottom: 9px;
}

#header .hdMenu .hamburger span:nth-child(2) {
    opacity: 1
}

#header .hdMenu .hamburger span:nth-child(3) {
    margin-top: 9px;
}

#header .hdMenu .hamburger.open {
    background: #fff;
    padding: 0 10px;
}

#header .hdMenu .hamburger.open span {
    background: #29378B;
}

#header .hdMenu .hamburger.open span:nth-child(1) {
    margin-bottom: -2px;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(45deg);
    transform: rotate(30deg);
}

#header .hdMenu .hamburger.open span:nth-child(2) {
    opacity: 0;
}

#header .hdMenu .hamburger.open span:nth-child(3) {
    margin-top: -2px;
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-30deg);
}

#header .hdMenu .mainMenu {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100vh;
    padding: 150px 50px;
    background: url(/assets/frontend/images/common/bcr-menu.jpg) no-repeat center center/cover;
    width: 50vw;
    min-width: 500px;
    max-width: 683px;
    overflow-y: auto;
    transition: all 0.8s;
    z-index: 9;
}

#header .hdMenu .mainMenu.show {
    right: 0;
}

#header .hdMenu .mainMenu .menuLogo {
    border-bottom: 1px solid #fff;
    padding-right: 49px;
    padding-bottom: 49px;
    margin-bottom: 59px;
}

#header .hdMenu .mainMenu .menuLogo img {
    width: 100%;
}

#header .hdMenu .mainMenu .menu {}

#header .hdMenu .mainMenu .menu li+li {
    margin-top: 37.5px;
}

#header .hdMenu .mainMenu .menu li a {
    position: relative;
    font-size: 20px;
    color: #fff;
}

#header .hdMenu .mainMenu .menu li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: all .3s;
}

/* CONTENT */
#content {
    width: 100%;
}

.frameBcr {
    position: relative;
    padding: 90px 0 80px;
    background: url(/assets/frontend/images/common/content-bg.png)no-repeat top left/cover;
}

.frameBcr.bcrImage {
    padding: 80px 0;
    background: url(/assets/frontend/images/common/bcr-image.jpg)no-repeat top left / cover;
}

.frameBcr.frameCenter {
    position: relative;
    display: flex;
    align-items: center;
}

/* .frameBcr.frameCenter .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.titlePage {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    color: #29378B;
    text-align: center;
    margin-bottom: 85px;
    letter-spacing: 0.3px;
}

.areaBox .titlePage:before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background-color: #FFEA2D;
}

/* FORM */
.formWrap .formBt {
    margin-bottom: 32px;
}

.formWrap .formItem {
    border: 1px solid #29378B;
    border-radius: 6px;
    padding: 9px 17px;
    margin-bottom: 35px;
    background: #F8F8F8;
}

.formWrap .formItem:last-child {
    margin-bottom: 0;
}

.formWrap .formItem .formName {
    font-size: 16px;
    color: #29378B;
    margin-bottom: 1px;
}

.formWrap .formItem .formName small {
    display: inline-block;
    color: #E92D2E;
    transform: translate(4px, 1px);
    font-size: 16px;
}

.formWrap .formItem .inputItem {
    margin-left: -7px;
    width: calc(100% + 14px);
}

.formWrap .formItem .formName span {
    display: inline-block;
    width: 16px;
    transform: translate(1px, 3px);
    margin-right: 6px;
}

.formWrap .formItem .formName span img {
    width: 100%;
}

.formWrap .formItem.password .formName span {
    transform: translate(-1px, 2px);
    margin-right: 2px;
}

.formWrap .formItem.password .inputItem {
    position: relative;
}

.formWrap .formItem.password .inputItem span {
    content: "";
    position: absolute;
    top: 7px;
    right: 9px;
    cursor: pointer;
}

.formWrap .formItem.password .inputItem span.show .off {
    display: none;
}

.formWrap .formItem.password .inputItem span .on {
    display: none;
}

.formWrap .formItem.password .inputItem span.show .on {
    display: block;
}

.formWrap .formItem .inputItem .inputstyle {
    font-size: 20px;
    border: 0;
    height: 30px;
    width: 100%;
    padding: 0 9px;
    background: #F8F8F8;
    font-family: "Roboto", sans-serif;
}

.formWrap .formItem .inputItem .inputstyle::-webkit-outer-spin-button,
.formWrap .formItem .inputItem .inputstyle::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.formWrap .formItem .inputItem .inputstyle[type=number] {
    -moz-appearance: textfield;
}

.formWrap .formItem .inputItem .inputstyle.selectstyle {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #F8F8F8 url(/assets/frontend/images/logIn/arrow-select.svg) no-repeat right 4px center/15px;
    color: #000;
}

.formWrap .formItem .inputItem .inputstyle.selectstyle option {
    color: #000;
}

.formWrap .formItem .inputItem .inputstyle.selectstyle:required:invalid {
    color: #CCCCCC;
}

.formWrap .formItem .inputItem.textarea .inputstyle {
    height: 105px;
    padding: 3px 9px;
}

.formWrap .formItem .inputItem .inputstyle::placeholder {
    color: #CCCCCC;
}

.formWrap .imageMoney {
    margin-bottom: 30px;
}

.formWrap .imageMoney .moneyName {
    font-size: 18px;
    color: #29378B;
    margin-bottom: 25px;
}

.formWrap .imageMoney .moneyName small {
    font-size: 18px;
    color: #E92D2E;
    margin-left: 5px;
}

.formWrap .imageMoney .imageBill {
    display: flex;
}

.formWrap .imageMoney .imageBill .uploadBill .selectFile {
    display: inline-block;
    width: 135px;
    background: #29378B url(/assets/frontend/images/common/icon-upload.svg) no-repeat right 10px center;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    padding: 7px 0 6px 10px;
    letter-spacing: -0.1px;
    cursor: pointer;
}

.formWrap .imageMoney .imageBill .uploadBill input {
    display: none;
}

.formWrap .imageMoney .imageBill .showImage {
    position: relative;
    background: url(/assets/frontend/images/common/not-image.jpg) no-repeat center center/cover;
    width: 320px;
    margin-left: 35px;
    padding: 0 60px;
    min-height: 365px;
}

.formWrap .imageMoney .imageBill .showImage.upload {
    background: #EFEFEF;
}

.formWrap .imageMoney .imageBill .showImage .iconClose {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    cursor: pointer;
}

.formWrap .imageMoney .imageBill .showImage.upload .iconClose {
    display: block;
}

.formWrap .formBtn {
    width: 100%;
    max-width: 250px;
    margin: 55px auto 0;
}

.formWrap .formBtn input {
    border: 0;
    border-radius: 50px;
    background: #29378B;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    width: 100%;
    padding: 16px 0 12px;
    text-transform: uppercase;
    font-family: "Nunito", sans-serif;
}

.formWrap .forgotPassword {
    text-align: center;
    margin-top: 25px;
}

.formWrap .forgotPassword a {
    color: #E92D2E;
    font-size: 18px;
    text-underline-offset: 1px;
}

.formWrap .terms {
    margin-top: 20px;
}

.formWrap .terms input {
    display: none;
}

.receptionist .selectPayment .payment label,
.receptionist .selectPayment .payment span .formWrap .terms span,
.formWrap .terms label {
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
}

.formWrap .terms span {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.68;
    padding-left: 41px;
    cursor: pointer;
}

.formWrap .terms span a {
    color: #E92D2E;
    text-underline-offset: 1px;
}

.formWrap .terms span:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    background-color: #F8F8F8;
    border: 1px solid #29378B;
}

.formWrap .terms input:checked~span:before {
    background-color: #29378B;
}

.formWrap .terms span:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 9px;
    width: 7px;
    height: 13px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
}

.formWrap .terms input:checked~span:after {
    opacity: 1;
}


.masthead {
    position: relative;
    display: flex;
    align-items: center;
    transform: translate(-3px, 1px);
    padding-right: 23px;
    cursor: pointer;
}

.masthead:before {
    content: "";
    position: absolute;
    top: 40%;
    transform: rotate(60deg) translateY(-50%);
    right: 0;
    background: url(/assets/frontend/images/common/icon-arrow.svg) no-repeat center center/100%;
    width: 13px;
    height: 11px;
    transition: all .3s;
}

.masthead.show:before {
    transform: rotate(120deg) translateY(-50%);
}

.masthead .mastheadPhoto {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.masthead .mastheadPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.masthead .mastheadName {
    position: relative;
    font-size: 16px;
    color: #29378B;
    margin-top: -6px;
}

.masthead .mastheadName:before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #E92D2E;
}

.masthead .state {
    position: absolute;
    top: 60px;
    right: -3px;
    width: 96.6%;
    display: none;
    background: #29378B;
    padding: 19px 20px 14px;
    z-index: 9;
}

.masthead .state li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 14px;
}

.masthead .state li:last-child {
    margin-bottom: 0;
}

.masthead .state li a {
    color: #fff;
}

.masthead .state li span {
    position: relative;
    display: inline-block;
    margin-right: 6px;
    transform: translateY(3px);
}

.masthead .state li span img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

/* FOOTER */
#footer {
    width: 100%;
}

#copyright {
    background-color: #002A7A;
    text-align: center;
    color: #fff;
    padding: 15px 5px 13px;
}

.sp {
    display: none;
}

.hoverLink {
    text-decoration: underline;
}

.text-danger {
    color: #E92D2E;
    font-size: 12px;
}


.areaBox {
    width: 100%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
    padding: 53px 50px 60px;
    margin: 0 auto;
}

/* tabBar */
.tabBar {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 99;
}

.tabBar::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: url(/assets/frontend/images/common/content-bg.png) no-repeat top left / cover;
}

.tabBar .listTabBar {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: #29378B;
    border-radius: 13px;
    padding: 13px 9px 8px;
}

.tabBar .listTabBar li {
    width: 110px;
}

.tabBar .listTabBar li a {
    text-align: center;
    display: block;
}

.tabBar .listTabBar li a .menuPhoto {
    position: relative;
    display: inline-block;
}

.tabBar .listTabBar li a .menuPhoto img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.tabBar .listTabBar li a .nameMenu {
    color: #fff;
}

.tabBar .listTabBar li a.active .menuPhoto img:last-child {
    display: block;
}

.tabBar .listTabBar li a.active .nameMenu {
    color: #ffea2d;
}

.menuDetail {
    background: url(/assets/frontend/images/common/bcr-blue.jpg) no-repeat center center/cover;
    width: 100%;
    overflow-y: auto;
    min-height: 100vh;
}

.menuDetail.show {
    right: 0;
}

.menuDetail .close {
    position: absolute;
    top: 30px;
    right: 30px;
}

.menuDetail .menuPhoto {
    width: 44.7%;
    max-width: 200px;
    margin: 0 auto;
    padding: 50px 0 30px;
}

.menuDetail .menuPhoto img {
    width: 100%;
}

.menuDetail .listMenu {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
    padding: 50px 0;
    min-height: calc(100vh - 190px);
}

.menuDetail .listMenu li+li {
    margin-top: 34.4px;
}

.menuDetail .listMenu li a {
    color: #fff;
    font-size: 20px;
}

.menuDetail .version {
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 16px 0 16px;
}

@media(min-width:801px) {
    #header .hdList li a:hover:after {
        width: 100%;
        right: auto;
        left: 0;
    }

    .hoverLink:hover {
        text-decoration: none;
    }

    .formWrap .formBtn input:hover {
        background-color: #FFEA2D;
        color: #29378B;
    }

    .masthead .state li a:hover {
        color: #ffea2d;
    }

    .masthead .state li a:hover img:last-child {
        display: block;
    }

    .formWrap .imageMoney .imageBill .uploadBill .selectFile:hover {
        background-color: #FFEA2D;
        background-image: url(/assets/frontend/images/common/icon-upload-hv.svg);
        color: #29378B;
    }

    #header .hdMenu .mainMenu .menu li a:hover::before {
        right: auto;
        left: 0;
        width: 100%;
    }

}

/* STYLE MOBILE */
@media (max-width: 800px) {
    body a {
        -webkit-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: transparent;
        box-shadow: none;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .inner {
        width: 100%;
        padding: 0 4%;
    }

    #fixH {
        height: 85px;
    }

    #header {
        padding: 20px;
        justify-content: flex-end;
    }

    #header .back {
        position: absolute;
        top: 22px;
        left: 4%;
    }

    #header .titlePage {
        display: inline-block;
        width: 100%;
        font-size: 30px;
        font-weight: bold;
        color: #29378B;
        text-align: center;
        margin-bottom: 0;
    }

    #header .hdPrev {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background: url(/assets/frontend/images/common/icon-prev.png)no-repeat;
        background-size: 100%;
    }

    #header .hdPrev a {
        display: block;
    }

    .titlePage {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .frameBcr {
        min-height: calc(100vh - 85px);
        padding: 50px 0;
    }

    .boxLogo {
        text-align: center;
        margin-bottom: 20px;
    }

    .boxLogo a {
        display: inline-block;
    }

    /* FORM */

    .formWrap {
        padding: 0 4%;
    }

    .formWrap .formItem {
        padding: 5px 7px 7px;
        border-radius: 3px;
        margin-bottom: 20px;
        background: #fff;
    }

    .formWrap.formGrey .formItem {
        background-color: #f8f8f8;
    }

    .formWrap .formItem .inputItem .inputstyle {
        background-color: #fff !important;
    }

    .formWrap .formItem .inputItem .inputstyle::focus-visible {
        background-color: #fff;
    }

    .formWrap.formGrey .formItem .inputItem .inputstyle {
        background-color: #f8f8f8 !important;
    }

    .formWrap .formGrey.formItem .inputItem .inputstyle::focus-visible {
        background-color: #f8f8f8;
    }

    .formWrap .formItem .inputItem .inputstyle.selectstyle {
        background-position: right 14px center;
    }

    .formWrap .formItem.password .inputItem span {
        top: 3px;
        right: 9px;
    }

    .formWrap .imageMoney .moneyName small {
        font-size: 14px;
        margin-left: 4px;
    }

    .formWrap .formBtn {
        max-width: 295px;
        margin-top: 30px;
    }

    #header .hdList,
    #header .masthead {
        display: none;
    }

    .areaBox {
        padding: 53px 30px 60px;
    }

    .frameBcr.frameCenter {
        padding-bottom: 60px;
    }
}

@media(max-width: 430px) {
    #fixH {
        height: 60px;
    }

    #header {
        padding: 19px 5.33% 17px;
    }

    #header .hdList li:first-child {
        margin-right: 30px;
    }

    #header .hdList li:first-child:before {
        right: -15px;
    }

    #header .titlePage {
        font-size: 16px;
        letter-spacing: 0.1px;
    }

    .frameBcr.bcrImage,
    .frameBcr {
        padding: 15px 0;
        min-height: calc(100svh - 60px);
    }

    .areaBox {
        padding: 30px 15px 26px;
        border-radius: 10px;
    }

    /* FORM */

    .formWrap .formItem .formName {
        font-size: 12px;
    }

    .formWrap .formItem .formName small {
        transform: translate(3px, 1px);
        font-size: 12px;
    }

    .formWrap .formItem .formName span {
        width: 12px;
    }

    .formWrap .formItem.password .formName span {
        transform: translate(0px, 2px);
        margin-right: 3px;
    }

    .formWrap .formItem .inputItem .inputstyle {
        font-size: 14px;
        height: 22px;
    }

    .formWrap .formItem .inputItem .inputstyle.selectstyle {
        background-size: 10px;
        background-position: right 10px center;
        background-color: #fff;
    }

    .formWrap .formItem .inputItem .inputstyle.selectstyle option {
        color: #000;
    }

    .formWrap .formBtn input {
        font-size: 14px;
        padding: 17px 0 14px;
    }

    .formWrap .forgotPassword {
        margin-top: 18px;
    }

    .formWrap .forgotPassword a {
        font-size: 14px;
        text-underline-offset: 1px;
    }

    .formWrap .terms {
        margin-top: 15px;
    }

    .formWrap .terms span {
        font-size: 14px;
        line-height: 1.6;
        padding-left: 25px;
    }

    .formWrap .terms span a {
        text-underline-offset: 2px;
    }

    .formWrap .terms span:before {
        top: 0;
        width: 18px;
        height: 18px;
    }

    .formWrap .terms span:after {
        top: 1px;
        left: 6px;
        width: 6px;
        height: 12px;
    }

    .formWrap .imageMoney .imageBill .uploadBill .selectFile,
    .formWrap .imageMoney .moneyName {
        font-size: 14px;
    }

    .formWrap .imageMoney .moneyName {
        margin-bottom: 10px;
    }

    .formWrap .imageMoney .imageBill .uploadBill .selectFile {
        width: 105px;
        padding: 5px 0 4px 8px;
        background-position: right 9px center;
    }

    .formWrap .imageMoney .imageBill {
        flex-direction: column;
    }

    .formWrap .imageMoney .imageBill .showImage {
        width: 57%;
        padding: 0;
        margin: 13px 0 0;
        min-height: 205px;
    }

    .formWrap .imageMoney .imageBill .showImage .imageUpload {
        width: 60%;
        height: 100%;
        margin: 0 auto;
    }

    .formWrap .imageMoney .imageBill .showImage .imageUpload img {
        width: 100%;
        height: 100%;
    }

    .formWrap .imageMoney .imageBill .showImage .iconClose {
        top: 5px;
        right: 5px;
        width: 19px;
    }

    /* tabBar */
    .tabBar .listTabBar li {
        width: 65px;
    }

    .tabBar .listTabBar li a .nameMenu {
        font-size: 12px;
    }

    .menuDetail .listMenu {
        padding: 38px 0;
        min-height: calc(100vh - 180px);
    }

    .menuDetail .listMenu li a {
        font-size: 16px;
    }

    .areaHome .homeBox .postContent .dataTxt {
        font-size: 14px;
    }

}