body {
    font-family: Arial;
    margin: 0;
    padding: 0;
}

.main-container {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
}

.inner-container {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.accordion {
    position: absolute;
    z-index: 2;
    height: 50px;
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.note {
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    z-index: 2;
    color: #564646;
    font-family: Source Sans Pro, sans-serif;

    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.note > div {
    width: 30%;
    margin: auto;
}

@media(max-width: 1000px) {
    .note > div {
        width: 50%;
    }
}

@media(max-width: 500px) {
    .note > div {
        width: 70%;
    }
}

.text-center {
    text-align: center;
}

.vertical-center {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.bg-watch {
    height: 400px;
    background-image: url(../lib/img/smart_watch2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: center;
}


.wrapper {
    margin: 20px auto;
    width: 180px;
}

.text-info {
    font-size: 16px;
    margin: 10px auto;
}


#div_start {
    float: right;
}

#headline {
    text-decoration: none
}

.watch-screen {
    margin-right: 12px;
    position: relative;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    height: 145px;
    background-color: white;
    border-radius: 10px;
}

.text-box {
    overflow-y: auto;
    height: 95px;
    border: 1px solid #dbd8d8;
    border-radius: 5px;
    padding: 5px;
}

/* Scroll bar */
::-webkit-scrollbar {
    width: 9px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #66728b;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

.highlight {
    background-color: #00a4ff;
    color: white;
}

.select-language {
    position: absolute;
    bottom: 10px;
    left: 5px;
}

#start_button {
    border: 0;
    background-color:transparent;
    padding: 0;
    outline: none;
}

.mic {
    position: absolute;
    bottom: 3px;
    right: 0;
}

.mic > button {
    cursor: pointer;
}

.mic-img {
    width: 60%;
    border-radius: 100%;
    border: 1px solid #aeaeae;
}

.select-language > select {
    width: 50%;
    font-size: 12px;
    border: 1px solid #aeaeae;
    border-radius: 3px;
    color: #3a3a3a;
    outline: none;
    cursor: pointer;
}

.select-btn {
    position: absolute;
    bottom: 10px;
    left: 15px;
}

.select-btn > button {
    font-size: 12px;
    border: 1px solid #aeaeae;
    border-radius: 3px;
    color: #3a3a3a;
    background-color: #f3f3f3;
    outline: none;
    cursor: pointer;
}

.interim {
    color: gray;
}

.final {
    color: black;
    padding-right: 3px;
}

.button {
    display: none;
}

#buttons {
    margin: 10px 0;
    position: relative;
    top: -50px;
}

#copy {
    margin-top: 20px;
}

#copy > div {
    display: none;
    margin: 0 70px;
}

a.c1 {
    font-weight: normal;
}