/*==============================================HTML==============================================*/
html {
    font-family: "Noto Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    height: 100%;
    letter-spacing: 0.3px;

    /*overflow: hidden;*/
}

body {
    height: 100%;
    margin: 0px!important;

    transform: scale(1);
    transform-origin: 0 0;

    /*overflow: hidden;

    overscroll-behavior-y: contain; // prevents pull down page to refresh*/
}

#pageContent {
    height: 100%;
}

.page-container {
    height: 100%;
}

.disable-text-highlight {
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*============================================== LOGO ==============================================*/

.in-app-logo {
    float: left;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    width: 164px;
    height: 56px;
    left: 2vh;
    top: 92vh;
    padding-left: 10px;
    padding-bottom: 10px;
}

/*============================================== ICONS ==============================================*/

@font-face {
   font-family: 'Material Icons';
   font-style: normal;
   font-weight: 400;
   src: url(../res/iconfont/MaterialIcons-Regular.eot); /* For IE6-8 */
   src: local('Material Icons'),
        local('MaterialIcons-Regular'),
        url(../res/iconfont/MaterialIcons-Regular.woff2) format('woff2'),
        url(../res/iconfont/MaterialIcons-Regular.woff) format('woff'),
        url(../res/iconfont/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/*==============================================FONT==============================================*/

.title {
    font-weight: 700;
    font-size: 30px;
}

.subtitle {
    font-weight: 400;
    font-size: 18px;
}

.subtitle-CN {
    letter-spacing: 1px;
}

.title-container {
    height: 5rem;
    line-height: 5rem;
/*    font-size: 20px;*/
}

.font-device {
    color: rgba(28, 32, 35, .7);
    font-size: 14px;
}

.font-connection-status {
    color: rgba(26, 66, 98, 1);
    font-size: 16px;
}

.font-device-disconnected {
    color: rgba(208, 2, 27, 1);
    font-size: 16px;
}

.font-connection-title {
    font-weight: 500;
    font-size: 16px;
}

.font-connection-connected {
    font-weight: 500;
    color: rgba(51,151,191,1);
}

.font-connection-disconnected {
    font-weight: 500;
    color: rgba(224,32,32,1)
}

.main-content-title {
    font-size: 20px;
    font-weight: 500;
    color: rgba(28, 32, 35, 1);
    padding-bottom: 0.5rem;
}

/*==============================================LAYOUT==============================================*/

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.row-align-around {
    justify-content: space-around;
}

.row-align-between {
    justify-content: space-between;
}

.row-align-evenly {
    justify-content: space-evenly;
}

.row-align-start{
    justify-content: flex-start;
}

.row-align-end{
    justify-content: flex-end;
}

.row-align-center{
    justify-content: center;
}

.row-center {
    align-items: center;
    align-self: center;
}

.row-top {
    align-items: flex-start;
    align-self: flex-start;
}

.row-bottom {
    align-items: flex-end;
    align-self: flex-end;
}

.row-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Column Offsets */
.col-offset-1 {
    margin-left: 8.333%;
}

.col-offset-2 {
    margin-left: 16.666%;
}

.col-offset-3 {
    margin-left: 25%;
}

.col-offset-4 {
    margin-left: 33.3333%;
}

.col-offset-5 {
    margin-left: 41.666%;
}

.col-offset-6 {
    margin-left: 50%;
}

.col-offset-7 {
    margin-left: 58.333%;
}

.col-offset-8 {
    margin-left: 66.6666%;
}

.col-offset-9 {
    margin-left: 75%;
}

.col-offset-10 {
    margin-left: 83.333%;
}

.col-offset-11 {
    margin-left: 91.666%;
}

.col-offset-12 {
    margin-left: 100%;
}


/*Column*/
.col-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 8.333%;
    -ms-flex: 0 0 8.333%;
    flex: 0 0 8.333%;
    max-width: 8.333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 16.666%;
    -ms-flex: 0 0 16.666%;
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 33.3333%;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 41.666%;
    -ms-flex: 0 0 41.666%;
    flex: 0 0 41.666%;
    max-width: 41.666%;
}

.col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 58.333%;
    -ms-flex: 0 0 58.333%;
    flex: 0 0 58.333%;
    max-width: 58.333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.6666%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 66.6666%;
    -ms-flex: 0 0 66.6666%;
    flex: 0 0 66.6666%;
    max-width: 66.6666%;
}

.col-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 83.333%;
    -ms-flex: 0 0 83.333%;
    flex: 0 0 83.333%;
    max-width: 83.333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 91.666%;
    -ms-flex: 0 0 91.666%;
    flex: 0 0 91.666%;
    max-width: 91.666%;
}

.col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.text-center {
    text-align: center!important;
    justify-content: center!important;
    -webkit-justify-content: center!important;
}

.text-left {
    text-align: left!important;
    justify-content: flex-start!important;
    -webkit-justify-content: flex-start!important;
}

.text-right {
    text-align: right!important;
    justify-content: flex-end!important;
    -webkit-justify-content: flex-end!important;
}

/*==============================================MODAL==============================================*/
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 8; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 10vh;
}

.task-end-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 6; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 40vh;
}

.task-end-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 1rem 1rem;
    /* border: 1px solid #888; */
    width: 587px;
    height: 180px;
    box-shadow: 0 2px 4px 0 rgba(206, 206, 206, 1);
    animation-name: animatetop;
    animation-duration: 0.2s;
}

/* Modal Header */
.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Modal Body */
.modal-body {padding: 2px 16px;}

.modal-body-header {
    height: 2rem;
    line-height: 2rem;
    padding-bottom: 1rem;
    font-size: 18px;
    font-weight: 500;
}

.modal-light-text {
    font-size: 16px;
    color: rgba(28,32,35,.7);
}

.modal-subtitle {
    padding-top: 2rem;
    font-weight: 500;

}

.modal-input-item {
    height: 2rem;
    line-height: 2rem;
    padding: 0.5rem 0rem;
}

.modal-input-item-title {
    font-size: 16px;
    color: rgba(28,32,35,1)
}

.modal-input {

}

.modal-paragraph {
    margin-top: 0.5rem;
}

.modal-button-panel {
    margin-top: 1rem;
}

.modal-status-panel {
    margin-top: 2rem;
}

.modal-input-field {
    height: 2rem;
    line-height: 2rem;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(51, 151, 195, 1);
    width: 70%;
    font-size: 16px;
    padding: 0rem 0.5rem;

}

.modal-input-dropdown-s {
    height: 2rem;
    line-height: 2rem;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(51, 151, 195, 1);
    width: 15%;
    font-size: 16px;
    padding: 0rem 0.5rem;

}

.modal-input-dropdown-m {
    height: 2rem;
    line-height: 2rem;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(51, 151, 195, 1);
    width: 25%;
    font-size: 16px;
    padding: 0rem 0.5rem;
}


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

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 1rem 1rem;
    /* border: 1px solid #888; */
    width: 587px;
    height: 595px;
    border: 5px solid rgba(51, 151, 195, 1);
    box-shadow: 0 2px 4px 0 rgba(206, 206, 206, 1);
    animation-name: animatetop;
    animation-duration: 0.2s;
}

.modal-image-container {
    padding: 1rem 0rem;

}

.modal-image {
    //width: 150px;
    height: 300px;//250px;
    //border: 1px solid rgba(51, 151, 195, 1);
}

.modal-item {
    padding: 1rem 0rem;
}

.modal-item-separator {
    padding: 0rem 0rem;
}

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

.modal-cancel-button-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.modal-cancel-icon {
    font-size: 32px;
    font-weight: 700;
    color: rgba(28, 32, 35, .7);
    padding: 1rem 1rem;
}

/* The Close Button */
.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/** New Patient Modal **/
.new-patient-info-container {
    padding: 2rem 0rem;
}

.new-patient-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 1rem 1rem;
    /* border: 1px solid #888; */
    width: 587px;
    height: 595px;
    box-shadow: 0 2px 4px 0 rgba(206, 206, 206, 1);
    animation-name: animatetop;
    animation-duration: 0.2s;
}

.new-placeholder-popup-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 1rem 1rem;
    border: 5px solid #3397C3;
    width: 587px;
    height: 595px;
    box-shadow: 0 2px 4px 0 rgba(206, 206, 206, 1);
    animation-name: animatetop;
    animation-duration: 0.2s;
    background: #FFFFFF;
}

.new-popup-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 1rem 1rem;
    border: 5px solid #3397C3;
    width: 1000px;
    height: 800px;
    box-shadow: 0 2px 4px 0 rgba(206, 206, 206, 1);
    animation-name: animatetop;
    animation-duration: 0.2s;
    background: #FFFFFF;
}


/** Device Disconnect Modal **/
.device-disconnected-modal {
    padding-top: 25vh;
}

.device-disconnected-title {
    padding-bottom: 1rem;
}

.device-disconnected-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: rgba(28, 32, 35, 1);
    font-size: 16px;
}

.device-disconnected-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 1rem 2rem;
    width: 587px;
    height: 289px;
    box-shadow: 0 2px 4px 0 rgba(206, 206, 206, 1);
    animation-name: animatetop;
    animation-duration: 0.2s;
}

.device-disconnected-modal-body {
    padding-bottom: 1rem;
}

.ignore-button {
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(206, 206, 206, 1);
    width: 137px;
    text-align: center;
    padding: 1rem 0rem;
    margin-left: 1rem;
}

.try-again-button {
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    background: rgba(246, 152, 50, 1);
    width: 164px;
    text-align: center;
    padding: 1rem 0rem;
    margin-right: 1rem;
}

/*==============================================INPUT==============================================*/

input {
    font-family: "Noto Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.search-input {
    border-radius: 24.5px;
    border: 1px solid rgba(51, 151, 195, 1);
/*    width: 624px;*/
    width: 90%;
    height: 40px;
    padding-left: 30px;
    font-size: 18px;
}

.search-input-secondary {
    border-radius: 24.5px;
    border: 1px solid rgba(51, 151, 195, 1);
/*    width: 624px;*/
    width: 90%;
    height: 36px;
    padding-left: 30px;
    font-size: 16px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(155,155,155,1);
    opacity: 1; /* Firefox */

}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(155,155,155,1);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(155,155,155,1);
}

.textarea {
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(51, 151, 195, 1);
    width: 100%;
    height: 110px;
}

.select-input {
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(51, 151, 195, 1);
    border-radius: 2px;
    width: 94px;
    height: 35px;
}

.general-text-input {
    background: rgba(255,255,255,1);
    border: 1px solid rgba(51, 151, 195, 1);
    width: 100%;
}

/*==============================================SCROLL BOX==============================================*/
.scroll-box {
    height: auto;
    overflow: auto;
}

/*==============================================TAB==============================================*/
.tab-item {
    background-color: rgba(238, 238, 238, 1);
    font-size: 14px;
    padding-top: 5px;
    height: 35px;
    line-height: 35px;
    border: 1px solid rgba(151, 151, 151, 1);
    cursor: pointer;
}

/*
.tab-active {
    background-color: rgba(247, 248, 244, 1)!important;
    padding-top: 0px!important;
    height: 40px;
    line-height: 40px;
    border: 0px!important;
}
*/

.tab-content {
    height: 91%;
    background-color: rgba(247, 248, 244, 1)!important;
    box-shadow: 0px 2px 4px rgba(144, 144, 144, 1);
    border-right: rgba(144, 144, 144, 1);
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.single-tab-content {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.tab-container {
    height: 5rem;
    line-height: 5rem;
}

/*==============================================BUTTON==============================================*/

button {
    font-family: "Noto Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.primary-button {
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    color: rgba(255,255,255,1);
    background: rgba(246, 152, 50, 1);
    box-shadow: 0 2px 4px 0 rgba(206,206,206,1);
    width: 100%;
    text-align: center;
    padding: 1rem 0rem;
}

.primary-button-disabled {
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    color: rgba(225, 225, 225, 1);
    background: rgba(192, 198, 201, 1);
    box-shadow: 0 2px 4px 0 rgba(206,206,206,1);
    width: 100%;
    text-align: center;
    padding: 1rem 0rem;
}

.secondary-button {
    cursor: pointer;
    background-color: rgba(127, 202, 222, 1);
    border-radius: 4px;
    font-weight: 400;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(212, 212, 212, .5);
    font-size: 18px;
    text-align: center;
    padding: 0.7rem 0rem;
}

.secondary-button-disabled {
    //cursor: pointer;
    background-color: rgba(192, 198, 201, 1);
    border-radius: 4px;
    font-weight: 400;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(212, 212, 212, .5);
    font-size: 18px;
    text-align: center;
    padding: 0.7rem 0rem;
}

.menu-button-panel {
    position: absolute;
    top: 3.0rem;//10px;
    right: 10px;
}

.menu-button {
    height: 65px;
    width: 65px;
    background-color: rgba(51, 151, 195, 1);
    border: 1px solid rgba(151, 151, 151, 1);
    border-radius: 100px;
    box-shadow: 0px 2px 4px rgba(212, 212, 212, 1);
    color: rgba(255, 255, 255, 1);
}

.menu-button i {
    font-size: 35px!important;
    line-height: 65px;
}


.menu-dropdown {
    position: relative;
    display: inline-block;
}

.menu-dropdown-content {
    margin-top: .3rem;
    display: none;
    position: absolute;
    background-color: rgba(51, 151, 195, 1);
    min-width: 180px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, .5);
    padding: 12px 48px 12px 26px;
    z-index: 5;
    right: 0px;
}

.menu-item {
    height: 30px;
    line-height: 30px;
}


.menu-dropdown:hover .menu-dropdown-content {
    display: block;
}

/* Links inside the dropdown */
.menu-dropdown-content > div {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(51, 151, 195, 1);
    padding: 14px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.menu-dropdown-content > div:hover {
    background-color: rgba(31, 131, 175, 1);
}

.device-connection-status-box {
    position: absolute;
    bottom: 0px;
    left: 33.3333%;
    height: 2rem;
    line-height: 2rem;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(151,151,151,1);
    padding: 0rem 1rem;
    font-size: 14px;
    color: rgba(28,32,35,0.70);
}

.floating-center-button-panel {
    position: absolute;
    bottom: 10px;
    left: 40%;
    /* right: 50%; */
}

.floating-left-button-panel {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.floating-right-button-panel {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.fixed-left-button-panel {
    position: fixed;
    bottom: 10px;
    left: 10px;
}

.fixed-right-button-panel {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

/*==============================================NOTIFICATION BOX==============================================*/

.notification-content-left {
    position: fixed;
    bottom: 0px;
    left: 0px;
/*    width: 100%;*/
/*    height: 2rem;*/
    line-height: 1.5rem;
    /* Rectangle 6: */
    background: rgba(255,255,255,1);
    border: 1px solid rgba(151,151,151,1);
    padding: 0rem 1rem;
    font-size: 14px;
    color: rgba(28,32,35,0.70);
}

.notification-content-middle {
    position: absolute;
    bottom: 0px;
    left: 33.3333%;
/*    height: 2rem;*/
    line-height: 1.5rem;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(151,151,151,1);
    padding: 0rem 1rem;
    font-size: 14px;
    color: rgba(28,32,35,0.70);
}

.notification-status {
/*    margin-left: 0.5rem;*/
    font-weight: 600;
    font-size: 16px;
    color: rgba(26,66,98,1) ;
}

.notification-icon {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.notification-status-icon {
    font-size: 24px;
    color: rgba(51,151,195,1);
    padding-top: 0.5rem;
    padding-bottom: 0rem;
}

.notification-error-icon {
    font-size: 24px;
    color: rgba(200,81,81,1);
    padding-top: 0.5rem;
    padding-bottom: 0rem;
}

.notification-text {
    padding: 0.5rem;
}

.bluetooth-content-left {
    position: absolute;
    top: 0%;
    left: 0%;//33.3333%;
    width: 140px;
    height: 2.5rem;
    line-height: 1.5rem;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(151,151,151,1);
    padding: 0rem 1rem;
    font-size: 14px;
    color: rgba(28,32,35,0.70);
}

.bluetooth-content-pop-out {
    position: absolute;
    top: 0%;
    left: 148px;
    height: 2.5rem;
    line-height: 1.5rem;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(151,151,151,1);
    padding: 0rem 1rem;
    font-size: 14px;
    color: rgba(28,32,35,0.70);
}

.bluetooth-content-pop-out-debug {
    position: absolute;
    top: 0%;
    left: 360px;
    height: 2.5rem;
    line-height: 1.5rem;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(151,151,151,1);
    padding: 0rem 1rem;
    font-size: 14px;
    color: rgba(28,32,35,0.70);
}

.bluetooth-content-right {
    position: absolute;
    top: 0%;
    //left: 89.75%;
    right: 0%;
    height: 2.5rem;
    line-height: 1.5rem;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(151,151,151,1);
    padding: 0rem 1rem;
    font-size: 14px;
    color: rgba(28,32,35,0.70);
}


/*====================================== OVERLAY =======================================*/

.status-overlay-box {
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0%);
    height: 2.5rem;
    line-height: 1.5rem;
    padding: 0rem 1rem;
    font-size: 16px;
    font-weight: 400;
    background-color: #666;
    color: #fff;
    text-align: center;
    border-radius: 6px;
}

/*====================================== ALERT =======================================*/
.popup_1,
.popup_2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup_1 .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 5;
  bottom: 0%;
  left: 50%;
  margin-left: 0px;//-80px;
}

.popup_2 .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 5;
  bottom: 80%;
  left: 50%;
  margin-left: 0px;//-80px;
}

/* Toggle this class - hide and show the popup */
.popup_1 .show,
.popup_2 .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

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