
body {
  padding: 0;
  margin: 0;
  background-color: #fff;
  font-family: Muli, sans-serif;
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  overscroll-behavior-y: none;
  color: #222;

  -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.C_app {
  min-height: 100vh;
}

@media only screen and (min-width: 720px) {
  .C_body {
    width: 720px;
    margin: auto;
  }
}


.C_menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  transform:  translateX(-300px);
  height: 100vh;
  background-color: #fff;
  transition: 0.25s;
  box-shadow: 2px 0px 1px #d3d3d3;
  color: #323232;
  z-index: 2 !important;
  display: inline-block;
}

.C_menu-container {
  position: relative;
  display: inline-block;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

.C_menu-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  transition: 0.5s;
  background-color: rgba(0,0,0 ,0.4);
  /*filter: blur(2px);*/
  z-index: 1 !important;
}

.C_menu-smac {
  width: calc(100% - 10px);
  padding: 20px 5px;
  text-align: center;
}

.C_menu-smac img {
  margin: auto;
  width: 70px;
  height: 15px;
}

.C_menu-title {
  width: calc(100% - 10px);
  padding: 5px 5px;
  text-align: left;
  background-color: #c0c0c0;
  font-size: 90%;
}

/*.C_menu-widget {
  width: calc(100% - 20px);
  height: 10px;
  padding: 20px 10px;
  text-align: left;
  color: #222;
}

.C_menu-widget img {
  width: 25px;
  height: 25px;
  position: relative;
  float: left;
  bottom: 5px;
  right: 5px;
}

.C_menu-widget div {
  float: left;
  margin-left: 5px;
}

.C_menu-widget:hover {
  background-color: #f0f0f0;
}*/

.C_menu-bottom {
  position: fixed;
  width: calc(100% - 10px ) ;
  bottom: 0; left: 0;
  padding-left: 10px;
  padding-bottom: 10px;
  font-size: 13px;
  background-color: #fff;
}


.C_menu-widget {
  width: 130px;
  height: 120px;
  float: left;
  cursor: pointer;
}

.C_menu-widget-box {
  position: relative;
  margin: auto;
  width: 60px;
  height: 60px;
  border: 1px solid #d0d0d0;
  border-radius: 15px;
}

.C_menu-widget-box:hover {
  background-color: #f0f0f0;
}

.C_menu-widget-img {
  position: relative;
  width: 30px;
  height: 30px;
  margin: auto;
  left: 15px;
  top: 13px;
}

.C_menu-widget-text {
  text-align: center;
  font-size: 13px;
  color: #323232;
  padding-top: 8px;
  min-height: 25px;
  text-transform: capitalize;
}

.C_loader {
  color: black;
  background-color: rgba(255,255,255,1);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 10 !important;
}

.C_loader img {
  position: absolute;
  height: 75px; width: 75px;
  left: calc(50% - 37px);
  top: calc(50% - 87px);
  z-index: 4;
}

.C_loader p {
  text-align: center;
  margin-top: 50vh;
  /*transform: translateY(-10px);*/
}
#id_loader_anim1 {
  width:0px;
  height:0px;
  position:absolute;
  left:50%;
  top: calc(50% - 50px);
  border-radius:50%;
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: one 1.5s infinite;
  -o-animation: one 1.5s infinite;
  -webkit-animation: one 1.5s infinite;
  -ms-animation: one 1.5s infinite;
  -moz-animation: one 1.5s infinite;
  animation-delay:0s;
  animation-timing-function: ease-in-out;
  /*border: 2px solid  #036944;*/
  background-color: #67bf70;
}

#id_loader_anim2 {
width:0px;
  height:0px;
  position:absolute;
  left:50%;
  top: calc(50% - 50px);
  border-radius:50%;
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: two 1.5s infinite;
  -o-animation: two 1.5s infinite;
  -moz-animation: two 1.5s infinite;
  -webkit-animation: two 1.5s infinite;
  -ms-animation: two 1.5s infinite;
  animation-delay:0s;
  animation-timing-function: ease-in-out;
  /*border: 3px solid  #036944;*/
  background-color: #67bf70;
}


@keyframes one {
  0% {
    width: 0px;
    height: 0px;
    opacity:1;
  }
  
  
  100% {
    width: 100px;
    height: 100px;
    opacity:0;
  }
}

@keyframes two {
  0% {
    width: 0px;
    height: 0px;
    opacity:1;
  }
  
  50% {
    width: 0px;
    height: 0px;
    opacity:1;
  }
  
  100% {
    width: 100px;
    height: 100px;
    opacity:0;
  }
}


.C_main {
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
  height: auto;
  overflow: auto;
  z-index: 0 !important;

}



.C_header {
  /*background-color: green;*/
  width: 100%;
  height: 50px;
  padding: 0px 0px;
  position: relative;
  display: inline-block;
  color: #222;
}

.C_header * {
  float: left;
}

.C_header-text {
  /*background-color: blue;*/
  text-align: center;
  padding-top: 20px;
  width: calc(100% - 150px);
}

.C_device_container {
  /*background-color: red;*/
  overflow: auto;
  height: auto !important;
  overscroll-behavior-y: none;
}

.C_device {
  background-color: #ffffff;
  border-radius: 10px;
  padding:5px 10px;
  margin: 5px;
  width: calc(100% - 30px);
  height: auto !important;
  overflow: auto;
  box-shadow: 0px 0px 2px #a0a0a0;
  color: #323232;
}

.C_device-header {
  display: inline-block;
}

.C_device-header-text {
  font-size: 15px;
  padding: 15px 0px 5px;
  float: left;
}

.C_device-header-button {
  float: right;
}

.C_topic {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding:5px 10px;
  margin: 5px;
  width: calc(100% - 30px);
  height: auto !important;
  overflow: auto;
  box-shadow: 0px 0px 2px #a0a0a0;
}


.C_property {
 float: left;
 width: 100%;
 height: auto !important;
 display: block;
 margin-bottom: 5px;
}

.C_property-header {
  font-size: 12px;
  padding: 10px 0px;
  width: 100%;
  text-align: left;
}

.C_property-header-text {
  outline: none;
  border: none !important;
  padding: 10px 0px !important;
  width: auto !important;
  margin: 0px !important;
  font-size: 12px;
  background-color: red;
}

.C_property-content {
  width: 100%;
  padding: 0px;
  min-height: 50px !important;
  height: auto;
}

.C_property-content .C_button_img {
  float: left;
  min-height: 50px !important;
}

.C_property-body {
  float: right;
}

.C_property-body div {
  padding-top: 12px;
}


.C_container {
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: auto;
  height: auto !important;
}

.C_login_container {
  width: 100%;
  max-width: 320px;
  position: relative;
  display: block;
  overflow: auto;
  height: auto !important;
  margin: auto;
  /*background-color: #fff;
  padding: 20px 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 2px #b0b0b0;
  margin-bottom: 5px;*/
}

.C_login_container  input {
  background-color: transparent;
  border-bottom: 1px solid #a0a0a0;
}

.C_login-input-block {
  padding: 0 5px;
  background-color: #fff;
  border-bottom: 1px solid #a0a0a0;
}

.C_topic_container {
  width: 100%;
  max-height: 500px;
  overflow-y: auto;
}

.C_link_container {
  position: relative;
  display: inline-block;
  clear: both;
}

.C_link_container .C_button_link  {
float: left;
clear: both;
margin-bottom: 10px;
}

.C_login_header {
  margin-top: 80px;
  margin-bottom: 20px;
  text-align: center;
}

.C_smac_logo {
  width: 100%;
  display: block;
  margin-top: 0px;
  float: left;
}

.C_smac_logo img {
  width: 70px;
  height: 15px;
  margin-left: 50%;
  margin-top: 20px;
  transform: translateX(-35px);
}

.C_topic_block {
  width: 100%;
  position: relative;
  display: inline-block;
  background-color: #f0f0f0;
  border-radius: 5px;
  /*border-bottom: 1px solid #d0d0d0;*/
}

.C_topic_block div {
  float: left;
}

.C_topic_block .C_button_img {
  float: right;
}

.C_topic_block-text {
  padding: 15px 10px;
  color: #121212;
}


.C_text_warn {
  color: tomato;
  font-size: 85%;
  padding: 0 5px;
  letter-spacing: .5px;
}

.C_text_info {
  color: #464646;
  font-size: 85%;
  padding: 0 5px;
  letter-spacing: .5px;
}

.C_widget_block {
  width: 100%;
  min-height: 60px;
  height: auto !important;
}

.C_widget_block-header {
  width: calc(100% - 20px);
  font-size: 75%;
  color: #000;
  padding: 5px 10px;
  letter-spacing: .5px;
}

.C_widget_block-body {
  width: 100%;
  background-color: white;
  box-shadow: 0px 1px 2px #c0c0c0;
}

.C_widget_block-switch {
  width: calc(100% - 20px);
  font-size: 75%;
  color: #000;
  padding: 5px 10px;
  letter-spacing: .5px;
  height: 50px;
  display: inline-block;
  background-color: white;
  box-shadow: 0px 1px 2px #c0c0c0;
  margin-bottom: 1px;
}

.C_widget_block-switch-content {
  float: right;
}

.C_widget_block2 {
  width: 100%;
  min-height: 60px;
  height: auto !important;
  margin-bottom: 5px; border: 1px solid #ddd; border-radius: 10px;
}

.C_widget_block2-active {
  border: 2px solid #3ec275;
}

.C_widget_block2-head {
  padding: 10px;
}

.C_widget_block2-text {
  font-size: 13px; color: #777;
}

.C_help_note {
  margin-top: 50px; width: 75%; margin-left: auto; margin-right: auto;
  padding: 5px; font-size: 14px; color: #323232; text-align: center;
}

.C_block1 {
  width: 100%;
  background-color: white;
  box-shadow: 0px 1px 2px #c0c0c0;
  padding: 5px;
  display: inline-block;
}

.C_block1-top {
  font-size: 90%;
}

.C_block1-bottom {
  color: #666666;
}

.C_device_offline {
  opacity: 0.5;
}

.C_disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

/* modal css */

.C_modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* 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 */
}


.C_modalInfo {
    z-index: 10;
}

.C_modalConfig .C_modalInfo-content {
    min-height: 200px !important;
    height: auto !important;
    padding-bottom: 50px;
}

.C_modalConfirm, .C_modalInput {
    display: block;
}

.C_modalInfo-content, .C_modalConfirm-content, .C_modal-content, .C_modalInput-content, .C_modalInput-content {
    position: relative;
    background-color: #fefefe;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50vh;
    transform: translateY(-150px);
    padding: 20px 0 0 0;
    /*border: 2px 5px 10px solid #888;*/
    border-radius: 10px;
    max-width: 300px;
    width: 80%;
    height: auto;
    padding: 10px 10px;
    min-height: 130px;
}

.C_device_offline {
    opacity: 0.5;
}

.C_modalInfo-content p, .C_modalConfirm-content p, .C_modalInput-content p {
    color: #424242;
    text-align: center;
    height: auto;
    font-size: 90%;
    padding: 0px 20px;
    padding-top: 30px;
}

.C_modalInfo-content-cancel, .C_modalConfirm-content-buttons, .C_modalInput-content-buttons, .C_modalContent-approve {
    width: 100%;
    border-top: 1px solid #d0d0d0;
    text-align: center;
    color: #67bf70;
    padding: 10px 0px;
    position: absolute;
    left: 0;
    bottom: 0;
    cursor: pointer;
    line-height: 1.25;
    letter-spacing: .5px;
}

.C_modalInfo-content-cancel:hover, .C_modalInfo-content-cancel:active {
    opacity: 0.5;
}

.C_modalConfirm-content-buttons, .C_modalInput-content-buttons {
    display: inline-block;
}

.C_modalConfirm-content-buttons div, .C_modalInput-content-buttons div {
    float: left;
    width: 50%;
}

.C_modalConfirm-content-buttons-no, .C_modalInput-content-buttons-no {
    color: tomato;
}

.C_modalConfirm-content-buttons-no:after, .C_modalInput-content-buttons-no:after {
    content: "";
    position: absolute;
    right: 50%;
    top: 0;
    width: 1px;
    height: 40px;
    background-color: #d0d0d0;
}

.C_modalConfirm-content-buttons-yes:hover, .C_modalConfirm-content-buttons-yes:active, .C_modalConfirm-content-buttons-no:hover, .C_modalConfirm-content-buttons-no:active {
    opacity: 0.5;
}

.C_modalInput-content-buttons-yes:hover, .C_modalInput-content-buttons-yes:active, .C_modalInput-content-buttons-no:hover, .C_modalInput-content-buttons-no:active {
    opacity: 0.5;
}


.C_modalContent-header, .C_modalInput-header{
    text-align: center;
    font-size: 95%;
    color: #323232;
    margin: 0;
}


.C_modalSelSnapshot .C_modalContent-header {
    padding: 10px 10px;
}

.C_modalSelSnapshot .C_modalInfo-content {
    height: 300px;
    transform: translateY(-200px);
    padding-bottom: 0px !important;
    overflow-x: hidden;
}

.C_modalSelSnapshot label {
    position: relative;
    color: #424242;
    font-size: 15px;
    padding: 10px 0px;
    text-align: left;
}

.C_modalSelSnapshot .C_radio:hover {
    background-color: #f0f0f0;
}

.C_modalSelSnapshot .C_snapshot_container {
    height: auto;
   /* max-height: 200px;*/
    /*overflow-y: auto;*/

}

.C_modalSelSnapshot .C_modalConfirm-content-buttons {
    position: relative;
    top: 0px;
}

.C_ripple::before {
  position: absolute;
  background: #aaa;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 0px; height: 0px;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  animation: animate .8s ease-in-out 5;
  overflow: hidden;
}

@keyframes animate {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}

.C_ripple1 {
  position: absolute;
  width: 100px;
  height: 100px;
  transform: scale(0);
  pointer-events: none;
  border-radius: 50%;
  animation: animate1 .6s ease-in-out 1;
  overflow: hidden;
  background-color: rgba(0,0,0,0.25);
}

@keyframes animate1 {
  
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.C_tutorial_bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 5;
}

.C_tutorial_btn {
  position: absolute;
  top: 0;
  z-index: 6;
  background-color: #fff;
  border-radius: 50%;
}
