

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    /* .navbar a {
        float: none;
        width: 100%;
    } */
}

/**********************************/
.app {
    position: fixed;    /* to disable elastic bounce */

    width: 100%;
    height: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

section {
    width: 100%;
    height: calc(100% - 50px);
    height: -moz-calc(100% - 50px);
    height: -webkit-calc(100% - 50px);

    overflow-y: auto;

    text-align: center;
    font-size: 18px;
}

article {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 27px;
    text-align: center;
}

/* select box */
select {
    display: inline-block;
    border-radius: 3px;
    border: 1px solid darkgray;
    background-color: white;
    width: calc(90% - 13px);
    height: 30px;
    font-size: 16px;
    color:#333;
    padding: 0 5px 0 5px;
    margin: 0px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
select::placeholder{
    color:  rgb(123, 131, 167);
    font-style: italic;
}
select::-webkit-input-placeholder {
    color: rgb(123, 131, 167);
    font-style: italic;
}
select:-ms-input-placeholder {
    color: rgb(123, 131, 167);
    font-style: italic;
}

.selectAutoWidth{
    width: auto;
}

/**********************************/
/* Style the top navigation bar */
.navbar {
    display: block;
    width: 100%;
    overflow: hidden; /* Hide overflow */
    background-color: white;

    border-bottom: 1px solid rgba(128, 128, 128, 0.121);

}

/* Style the navigation bar links */
.logoArea {
    float: left; /* Make sure that the links stay side-by-side */
    display: block; /* Change the display to block, for responsive reasons (see below) */
    color: black;
    text-align: center; /* Center the text */
    padding: 18px 15px; /* Add some padding */
    text-decoration: none; /* Remove underline */
}

.logoImage {
    height: 20px;

    vertical-align: middle;
}

.rightNavArea {
    float: right;
    margin: 15px 10px 15px 0px;
    padding: 0 5px 0 5px;

    /* border-radius: 5px;
    border: 1px solid rgb(131, 125, 125); */
}


/**********************************/
.content {
    display: block;
    width: 100%;
    height: calc(100% - 58px);
    margin: 0 0 0 0;
    padding: 0 0 0 0;

    overflow-y: overlay;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
}

.content::-webkit-scrollbar {
    display: none;
    width: 10px;
}
.content::-webkit-scrollbar-thumb {
    background-color: grey;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}
.content::-webkit-scrollbar-track {
    display: none;
}

/* information block */
.rowArea {
    display: flex;

    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    vertical-align: middle;
    text-align: center;

    padding: 50px 5px 50px 5px;
    color: rgb(70, 65, 65);

    /* border:1px solid blue; */
    /* background-image: url("../common/images/hpMainBg.png"); */
}
.rowArea1{
    background-color: #fffcfa;
}
.rowArea2{
    background-color: #f2f2f2;
}
.rowArea3{
    background-color: #bbcff09b;
}
.rowArea4{
    background-color: rgba(206, 205, 205, 0.13);
}
.rowArea5{
    background-color: rgba(169, 167, 238, 0.07);
}
.rowAreaReverse{
    flex-direction: column-reverse;
}

.textArea {
    display:block;
    margin: auto 15px auto 15px;
    padding: 0;

    /* border: 1px solid red; */
}
.textAreaLeft {
    text-align: left;
}
.textAreaCenter {
    text-align: center;
}
.textAreaBorder {
    width:45%;
    background-color: #fffcfa;
    padding:10px;
    margin-bottom: 15px;

    /* border: 1px solid red; */
}
.textAreaFullWidth {
    width:100%;
    margin:0 auto 20px auto;
}
.textAreaWideScreen {
    width:70%;
    margin:0 auto 20px auto;
}

.imageArea {
    display:block;
    margin: 0 15px 0 15px;

    /* border: 1px solid red; */
}


.mainTitle {
    display:block;
    color:#2f0e02de;
    font-size: 70px;
    font-weight: bolder;
    white-space: pre-line;
}

.mainTitleDescription {
    margin-top: 5px;
    color:#2f0e02de;
    font-size: 55px;
    font-weight: bolder;
    white-space: pre-line;
}

.mainDescription {
    margin-top: 10px;
    font-size: 20px;
    white-space: pre-line;
}

.mainTitleImage {

    height: 500px;

    border-radius: 10px;
}

.sectionTitle {
    width:100%;
    text-align: left;
    display:block;
    color:#2f0e02de;
    font-size: 50px;
    font-weight: bolder;
    white-space: pre-line;

    /* border: 1px solid red; */
}

.sectionRowContentArea{
    width: 100%;
    margin-top: 30px;
    text-align: center;

    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

    /* border: 1px solid blue; */
}

.sectionRowContentAreaStart{
    justify-content: start;
    /* margin-top:10px; */
    /* border: 1px solid blue; */
}

.sectionRowTitle {
    font-size: 22px;
    font-weight: bolder;
    color:#2f0e02de;
    white-space: pre-line;

    /* border: #000 1px solid; */
}

.sectionRowDescription {
    width:300px;
    margin-top: 15px;
    font-size: 20px;
    color:#2f0e02de;
    white-space: pre-line;
}

.sectionRowDescriptionFullWidth {
    width:100%;
    /* border: 1px red solid; */
}

.useCaseImageArea {
    display:block;
    margin: 10px 0 0 0;
    text-align: center;

    /* border: 1px solid red; */
}

.useCaseImage {
    width: 300px;

    border-radius: 10px;
}

.numberBoxImage {
    width: 35px;
    vertical-align: bottom;

    padding:0;
    margin:0;
}

/**********************************/
.footer {
    padding: 20px; /* Some padding */
    text-align: center; /* Center text*/
    background: white;
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
}

.footer span {
    color: black;
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline */
}

/* Change color on hover/mouse-over */
.footer span:hover {
    color: darkgray;
    cursor: pointer;
}

/**********
* Install App    *
***********/
.installAppAreaContainer {
    display: block;

    width: 100%;

    overflow-y: auto;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */

    /* border:1px solid blue; */
}
.installAppAreaContainer::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.installAppListArea {
    display: flex;

    width:100%;

    justify-content: space-evenly;
    flex-wrap: wrap;

    /* border:1px solid red; */
}

.eachInstallAppArea {
    /* border: 1px solid blue; */

    display: block;
    overflow: hidden;

    width: 80px;
    height: 80px;

    text-align: center;

    margin: 0 0 15px 1px;
    padding: 3px 0 0 0;

    border-radius: 15px;
}

.eachInstallAppImage {
    /* border: 1px solid red; */

    max-width: 100%;
    max-height: 300px;
    margin: 0px 0px 0px 0px;
    padding: 0 0 0 0;
}

.eachInstallAppImage:active {
    opacity: .7;
}

.eachInstallAppTitle {
    /* border: 1px solid red; */

    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;

    padding: 0 0 0 0;
    margin: 0px 0px 0px 0px;

    font-size: 17px;
    font-weight: 100;
}

.installAppGuideArea {
    /* border: 1px solid blue; */

    display: block;
    overflow: hidden;

    text-align: center;

    margin: 0 0 15px 1px;
    padding: 3px 0 0 0;
}

.installAppGuideImage {
    border: 1px solid gray;
    max-width: 98%;
    margin: 0px 0px 0px 0px;
    padding: 0 0 0 0;
}

.installAppGuideImage:active {
    opacity: .7;
}


/**********
* Modal Area    *
***********/
/* The Modal (background) */
.modal {
    display: block; /* Hidden by Vue.js component */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4);

    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-duration: 0.5s;
}

@-webkit-keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}


/* Modal Content */
.modal-content {
    display: block;

    line-height: 50px;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 100%;
    max-height: 100%;
    overflow-y: auto; /* Enable scroll if needed */
    text-align: center;

    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);

    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.modal-content-top {
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation-name: animatetop;
    animation-name: animatetop;
}

.modal-content-bottom {
    position: fixed;
    bottom: 0;
    top:auto;

    -webkit-animation-name: animatebottom;
    animation-name: animatebottom;
}

.modal-content-left {
    position: fixed;
    height: 100%;
    width: 80%;

    -webkit-animation-name: animateleft;
    animation-name: animateleft;
}

.modal-content-full {
    position: fixed;
    width: 100%;
    height: 100%;

    padding: 0;
    margin: 0;
    border: 0;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@-webkit-keyframes animatebottom {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
  }

@keyframes animatebottom {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@-webkit-keyframes animateleft {
    from {left: -300px; opacity: 0}
    to {left: 0; opacity: 1}
  }

@keyframes animateleft {
    from {left: -300px; opacity: 0}
    to {left: 0; opacity: 1}
}

.modal-header {
    position: relative;
    display:block;
    padding: 0px 16px;
    text-align: center;

    /* border:1px solid red; */
}

.modal-body {
    /* border: 1px soild red; */

    position: relative;
    display: block;

    padding: 2px 16px;

    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-body-full {
    width: 100%;
    height: 100%;

    overflow-y: hidden;
    padding: 0;
    margin: 0;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* The Close Button */
.close {
    display:flex;
    align-items: center;
    justify-content: end;

    width:30px;
    height: 30px;
    color: rgb(119, 112, 112);
    float: right;
    font-size: 25px;
    font-weight: bold;

    border: 1ps solid red;
}
.close:active,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.closeButtonIcon {
    width: 25px;
    height: 25px;
}

/**********
* Main    *
***********/
.title{
    display:block;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0px;
}

.titleDescription{
    display: block;
    font-size: 17px;
    text-align: center;
    line-height: 25px;
    white-space: pre-line;
}

.middleTitleDescription{
    font-size: 17px;
    text-align: left;
}

/******************
/* Terms of Service Area */
.termsServiceArea{
    /* border:1px solid red; */

    display: inline-block;
    width: 90%;
    text-align: left;
    margin-top: 5px;
    padding:0px;
    line-height: 25px;
    color: black;
}

.termsServiceTitle{
    font-weight: bold;
    font-size: 15px;
}

.termsServiceAgreeAll{
    /* border:1px solid blue;  */

    display: inline-flexbox;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 5px;
    padding: 0px;
    text-align: left;
    font-weight: bold;
    font-size: 17px;
}

.termsServiceAgreeDetail{
    border: 1px solid darkgray;

    display: inline-block;

    padding: 15px 18px 13px 18px;
}

.termsServiceAgreeDetailItem{
    /* border:1px solid red;  */

    display: inline-block;

    text-align: left;
    font-size: 15px;
}

.termsServiceAgreeDetailItemArrow{
    border:1px solid blue;

    display:inline-flex;
    width: 100%;
    text-align: right;
}

.termsIframe{
    border: 0px;
    width:100%;
    height: 420px;
}

.termsContent{
    white-space: pre-line;
    color: #666;
    line-height: 1.5;

    overflow-x: hidden;
    overflow-y: auto;

    padding: 12px 16px 10px 16px;
    font-size: 15px;
    max-height: 400px;
    vertical-align: top;
}

/**********
* Form Objects    *
***********/
.input-container {
    display: block;
    width: 100%;
    margin: 0px 0 8px 0;
    line-height: 5px;

    /* border:1px solid red; */
}

.buttonVerticalSpace {
    display: block;
    margin: 0px;
    padding: 0px;
    height: 30px;
    width: 100%;
}

.hrSpace {
    display: block;
    margin: 10px 0 10px 0;
    padding: 0px;
    width: 90%;

    border:0.5px gray solid;
}

/**********
* Buttons    *
***********/
/* Action Button Area */
@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */
    .actionButtonArea{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;

        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;

        /* border: 1px solid red; */
    }

    .actionButtonAreaForBottom{ /* For main and appList */
        position:absolute;
        width: 100%;
        bottom: 0px;
        left:0px;
        text-align: center;
        margin-bottom: 15px;
    }
}

@supports not (-webkit-touch-callout: none) {
    /* CSS for other than iOS devices */
    .actionButtonArea{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;

        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;

        /* border: 1px solid red; */
    }

    .actionButtonAreaForBottom{ /* For main and appList */
        position:absolute;
        width: 100%;
        bottom: 0px;
        left:0px;
        text-align: center;
        margin-bottom: 10px;
    }
}

.actionButton {
    display: inline-block;
    /* width: 30%; */
    height: 45px;

    color: rgb(56, 54, 54);
    text-align: center;
    text-decoration: none;
    background-color: white;
    font-size: 16px;

    border-radius: 10px;
    border: 1px solid rgb(131, 125, 125);

    margin-bottom: 10px;
    /* margin-right: 10px; */
}

.actionButton:active {
    outline: none;
    color: white;
    background-color:  rgb(131, 125, 125);
}

.actionButton:focus {
    outline: none;
    color: rgb(56, 54, 54);
    background-color:white;
}

.actionButtonIcon {
    width: 18px;
    height: 18px;

    vertical-align: middle;
}

/**********
* Message Alert    *
***********/
.messageContentArea{
    width:100%;
    height: 100%;
    max-height: 300px;
    overflow: auto;
}

.messageContent{
    font-size: 17px;
    text-align: center;
    line-height: 23px;
    white-space: pre-line;
}

/**********
* Image Viewer    *
***********/
.imagesContainer {
    display: inline-block;

    width: 100%;
    max-height: 450px;

    text-align: center;
    overflow-y: auto;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */

    line-height: 25px;

    /* border: 1px solid red; */
}
.imagesContainer::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.eachImageArea {
    display: inline-block;

    text-align: center;

    margin: 0 0 15px 1px;
    padding: 3px 0 0 0;

    /* border: 1px solid blue; */
}

.eachImage {
    display: inline-block;

    max-width: 100%;

    margin: 0;
    padding: 0;
}

.eachImage:active {
    opacity: .7;
}

.eachImageTitle {
    /* border: 1px solid red; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;

    padding: 0 0 0 0;
    margin: 0px 0px 0px 0px;

    font-size: 17px;
    font-weight: 100;
}

.eachImageDescription {
    max-height: 200px;
    overflow-y: auto;
    white-space: pre-line;

    padding: 0 10px 0 10px;
    margin: 0px 0px 0px 0px;

    font-size: 15px;
    font-weight: 100;
}

/**********
* Count    *
***********/
.countUl{
    display: flex;
    width: 100%;
    padding: 0;
    color: #666;
    justify-content: center;
    margin: auto;

    /* border:1px solid red; */

}
@media (min-width:800px) {    /* PC */
    .countUl {
        width: 100%;
    }
}

.countLi{
    width: 33%;
    list-style: none;

    /* border:1px solid blue; */
}

.countLi:first-child {
    border-left: 0;
}

.count{
    margin-bottom: 10px;
    color: rgb(87, 9, 9);
    overflow-y: auto;
    font-size: 40px;
}
@media (min-width:800px) {    /* PC */
    .count {
        font-size: 70px;
    }
}

.countTitle{
    font-size: 22px;
    font-weight: bold;
}
@media (min-width:800px) {    /* PC */
    .countTitle {
        font-size: 25px;
    }
}
