body {
  background: #F8F8F8; /* fallback for old browsers */
/*  background: -webkit-linear-gradient(right, #76b852, #8DC26F);
  background: -moz-linear-gradient(right, #76b852, #8DC26F);
  background: -o-linear-gradient(right, #76b852, #8DC26F);
  background: linear-gradient(to left, #76b852, #8DC26F);*/
  font-family:Lato-Regular;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;    
  -moz-font-smoothing: grayscale;
  -webkit-transition: opacity .3s cubic-bezier(0.28, 0.12, 0.22, 1);
  -moz-transition: opacity .3s cubic-bezier(0.28, 0.12, 0.22, 1);
  -ms-transition: opacity .3s cubic-bezier(0.28, 0.12, 0.22, 1);
  -o-transition: opacity .3s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: opacity .3s cubic-bezier(0.28, 0.12, 0.22, 1);
   margin: 0px;
     font-size: 10px;
    padding: 0px;  
}

/*white dispable color

*/
.disabledIndicator{
  background-color: rgba(255,255,255,0.5) !important;
}
body.fullscreen {
    padding: 10px;
}
div#all {
    width: 1080px;
    margin: auto;
}
div.worksheetbg {
    background-image: url(/static/images/bg.png);
    background-repeat: no-repeat;
    background-position: center top;
}
div.clear {
    clear: both;
}
.disabled {
    cursor: default !important;
    opacity: 0.7;
}
 
.swal2-container {
  z-index: 999999999 !important;
}

#div-firebase-init-message_box{ 
  max-width: 660px;
  background: mediumturquoise;
  margin: 100px auto 16px;
  padding: 55px; 
  border-radius: 3px;
 
}
.subtitle_sitename{
  background: #29AB87;
    font-size: medium;
    padding: 5px;
      font-family: Lato-Regular;
          color: whitesmoke;
    text-transform: uppercase;
}

#divLoginheaderMesssage{
 
  background: red;
  color: white;
  margin: 0px 0px 15px 0px;
  padding: 10px;
  font-size: small;
  font-family: Lato-Regular;
}
#paddingWhiteSpace{
  background: transparent;
  height: 25px;
  width: 100%;
}
#div-firebase-init-message h2 {
  color: #ffa100;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 8px;
}
.companyhyperlink{

  text-decoration:none;
  color: white;
}
#div-firebase-init-message h1 {
/*  font-size: 22px;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
  margin: 0 0 16px;*/

  font-size: 50px;
  font-style: bold;
    margin: 0 0 16px;
  font-family: Lato-Regular;
  text-transform:"uppercase"; 
  letter-spacing: 5px;
}

#div-firebase-init-message p {
  line-height: 140%;
  margin: 16px 0 24px;
  font-size: 14px;
}

#div-firebase-init-message a {
  display: block;
  text-align: center;
  background: #039be5;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  padding: 16px;
  border-radius: 4px;
}

#div-firebase-init-message, #div-firebase-init-message a {
 /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);*/
}

#load {
  color: rgba(0,0,0,0.4);
  text-align: center;
  font-size: 13px;
}

.login-page ,
#divLoginScreen {
  width: 100%;
  height: 100%;
  padding: 4% 0 0;
  margin: auto;
}

#loginresponsemessage,
#createuser_responsemessage{

  padding: 10px;
  background: #f2f4f6;
  color: #191919;
  font-size: 14px;
  margin-top: 5px;
  vertical-align: middle;
  font-style: bold;
  font-family:Lato-Regular;
  text-transform:"uppercase"; 

}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.loader {
  margin: 0px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0,128,0, 0.2);
  border-right: 1.1em solid rgba(0,128,0, 0.2);
  border-bottom: 1.1em solid rgba(0,128,0, 0.2);
  border-left: 1.1em solid #008000;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 660px;
  margin: 0 auto 15px;
  padding: 55px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input{
  font-family:Lato-Regular;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form label{
  font-size: 13px;      /* up to you, I matched the <input> style */
font-weight: normal;  /* up to you, not required */
left: 10px;           /* determines space to left of label */
top: 15px; 
margin-bottom: 6px;           /* determines space above label */
pointer-events: none; /* enables click through on label */

transition: 0.2s ease all;        /* determines animation during */
-moz-transition: 0.2s ease all;      /* user interaction */
-webkit-transition:0.2s ease all;
}
input:focus ~ label, input:valid ~ label {
top: -20px;        /* where the label goes upon interaction */
font-size: 14px;   /* font-size change on interaction */
}
.form button {
   font-family:Lato-Regular;
  text-transform:uppercase; 
  outline: 0;
  background: #4CAF50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  background: #43A047;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #4CAF50;
  text-decoration: none;
}
.form .register-form {
  display: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #EF3B3A;
}
#ProductLineBy2t{
  float: right;

}
#bottomLine{
  padding: 0px;
  max-width: 460px;
    margin: 0 auto 30px;
}
#bottomLine a{
   color: #FFFFFF;
  text-decoration: none;
}
.hmiqlogintitle{
  font-size: 50px;
  font-style: bold;
  font-family: Lato-Regular;

  /*"Roboto", sans-serif;
"Segoe UI","Helvetica Neue",Helvetica,Verdana,"san-serif";
  "Segoe UI","Helvetica Neue",Helvetica,Verdana,"san-serif"
*/
  /*'OpenSansCondensedBold','HelveticaNeue-CondensedBold',Helvetica,'Arial Narrow',Calibri,Arial,'Lucida Grande',sans-serif
  */
  text-transform:"uppercase"; 
  letter-spacing: 5px;
}


.mat-div {
  padding: 1px 0 0 0;
  position: relative;
}

.mat-div:after, .mat-div:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e2e2e2; 
  bottom: 0;
  margin-bottom: 15px;
  left: 0;
  transition: all 0.5s;
}

.mat-div::after {
  background-color: #e67e22;
  transform: scaleX(0);
}

.mat-label {
  display: block;
  font-size: 14px;
  transform: translateY(0px);
  color: green;
  text-align: left;
  transition: all 0.5s;
}

.mat-input {
  position: relative;
  background: transparent;
  width: 100%;
  border: none;
  outline: none;
  padding: 8px 0;
  font-size: 16px;
}

.is-active::after {
  transform: scaleX(1);
}

.is-active .mat-label {
  color: #8E8DBE;
}

.is-completed .mat-label {
  font-size: 12px;
  transform: translateY(0);
}


 
.copyright_footer {
  margin: 0 0 0px;
  padding: 0;
  font-size: 13px; 
  color: #fff;
  text-align: right;
   font-family: "Roboto", sans-serif;
}

.version_footer{
  margin: 0 0 0px;
  padding: 0;
  font-size: 13px; 
  color: #fff;
  text-align: left;
   font-family: "Roboto", sans-serif;
}

.div-left{
    float:left;
    padding-left:10px;
}
.div-right{
    float:right;
    padding-right:10px;
}
 
 .submit-btn {
    float: right;
    padding: 7px 35px;
    border-radius: 0px;
    display: inline-block;
    background-color: #4b8cfb;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.06),
              0 2px 10px 0 rgba(0,0,0,0.07);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.submit-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.10),
              0 1px 1px 0 rgba(0,0,0,0.09);
}

.makeTopVisible{
    position: fixed;  
    z-index: 9999999; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: mediumturquoise;
}

h1 {
  text-align: center;
  color: #e67e22;
  font-weight: 200;
  margin: 0 0 40px;
}

/* ------------------------- PAGE HEADER -------------------------------- */

div#pageheader {
    height: 100px;
    width: 1080px;
    position: relative;
    margin-bottom: 10px;
}
div#pageheader #logo {
    font-size: 36px;
    margin: 0px;
    padding: 20px 20px 5px 20px;
    width: 200px;
    float: left;
    cursor: pointer;
}
div#pageheader #frame_sharing {
    font-size: 14px;
}
div#pageheader #headerhelp {
    margin: 0px;
    padding: 10px;
    float: left;
    font-size: 12px;
}
div#pageheader #headtwitter {
    margin-right: 10px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
}
div#pageheader #headtwitter #fblike {
    position: absolute;
    bottom: 4px;
    left: 16px;
}
div#pageheader #headmenu {
    padding: 10px 0 0 10px;
    position: absolute;
    left: 484px;
}
div#pageheader #headmenu p {
    display: inline-block;
    font-size: 13px;
    margin-bottom: 4px;
    background-color: #FFFFFF;
    padding: 4px 8px 4px 8px;
    -moz-border-radius: 4px 4px 4px 4px;
    border-bottom-left-radius: 4px 4px;
    border-bottom-right-radius: 4px 4px;
    border-top-left-radius: 4px 4px;
    border-top-right-radius: 4px 4px;
}
div#pageheader #headmenu a, div.popup a {
    vertical-align: middle;
    color: #1C94C4;
    text-decoration: none;
}
div#pageheader #headmenu a:hover, div#pageheader #headmenu a.activeitem,
div.popup a:hover {
    color: #E6820E;
}
div#pageheader #headerhelp p {
    font-weight: bold;
    font-size: 12px;
    margin: 0px;
    padding: 0px;
}
div#pageheader #headerhelp ol {
    margin: 8px 0;
    list-style: decimal;
}
div#pageheader #headerhelp ol li {
    font-size: 12px;
    list-style-position: inside;
}
div#pageheader #logo sup {
    font-size: 16px;
    font-weight: bold;
    color: #E6820E;
    vertical-align: super;
}
div#pageheader .headerbuttons {
    position: absolute;
    top: 80px;
    left: 20px;
    display: inline-block;
    text-transform: uppercase;
}
div#pageheader .headerbuttons div {
    padding: 4px 8px;
    margin: 0 5px 0 0;
    display: inline-block;
    border: 1px solid rgb(204, 204, 204);
    background-color: #FFFFFF;
    -moz-border-radius: 4px 4px 4px 4px;
    border-bottom-left-radius: 4px 4px;
    border-bottom-right-radius: 4px 4px;
    border-top-left-radius: 4px 4px;
    border-top-right-radius: 4px 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    font-size: 13px;
}
.fullscreen-close {
    font-size: 40px;
    position: fixed;
    top: 0;
    right: 15px;
}
.fullscreen-close:hover {
    cursor: pointer;
    text-decoration: underline;
}
div#pageheader .headerbutton a {
    text-transform: uppercase;
    text-decoration: none;
    font-size:13px;
    color: #484848;
}
div#signupbutton {
    display: inline-block;
    background-color: #FFFFFF;
    color: #1C94C4;
    padding: 4px 8px 4px 8px;
    -moz-border-radius: 8px 8px 8px 8px;
    border-bottom-left-radius: 8px 8px;
    border-bottom-right-radius: 8px 8px;
    border-top-left-radius: 8px 8px;
    border-top-right-radius: 8px 8px;
    cursor: pointer;
}
span#hello {
    color: #484848;
}
div#signupbutton span:hover, div#signupbutton #signupbuttoninfo:hover, div#signupbutton tr.activeitem {
    color: #E6820E;
}
div#signupbutton #signupbuttonhead {
    font-size: 20px;
    text-transform: uppercase;
    border-right: 1px solid #777777;
    padding: 2px 8px 0 0;
    vertical-align: middle;
}
div#signupbutton #signupbuttonhead #socialsignup {
    display: inline-block;
    vertical-align: middle;
    padding: 0px;
}
div#signupbutton #signupbuttoninfo {
    font-size: 9px;
    line-height: 10px;
    text-transform: uppercase;
    padding: 0 0 0 8px;
    vertical-align: middle;
}
.rewardlevel {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-image: url(/static/images/rewardlevel.png);
    color: black;
    padding: 8px;
    -moz-border-radius: 8px 8px 8px 8px;
    border-bottom-left-radius: 8px 8px;
    border-bottom-right-radius: 8px 8px;
    border-top-left-radius: 8px 8px;
    border-top-right-radius: 8px 8px;
}
.rewardlevel a {
    color: black;
}
.google-sing-in-up-in-header, .facebook-sing-in-up-in-header, .twitter-sing-in-up-in-header {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(/static/images/icons.png);
}
.google-sing-in-up-in-header {
    background-position: 16px 0px;
}
.twitter-sing-in-up-in-header {
    background-position: 32px 0px;
}
#makeframeprivate {
    display: inline-block;
    cursor: pointer;
    background-image: url(/static/images/icons.png);
    vertical-align: top;
    width: 20px;
    height: 25px;
}
.private-btn-blue {
    background-position: 0px -16px;
}
.private-btn-red {
	background-position: -19px -16px;
}
.modeswitcher {
    text-align: center;
    margin-left: -4px;
    width: auto;
    margin-right: 15px;
    height: 22px;
}
.modeswitcher a {
    font-size: 11px;
    color: #484848;
    line-height: 22px;
    text-transform: uppercase;
    text-decoration: none;
}
.MODE_ON {
    background-image: url(/static/images/modebg.png);
    background-repeat: no-repeat;
}
.MODE_ON a {
    color: #E6820E;
}
#ANIMATION a span.smallnew {
    color: red;
    font-weight: bold;
    font-size: 8px;
    text-transform: none;
}
.resize_btn {
    background-image: url(/static/images/resize-btn.png);
    background-repeat: no-repeat;
}
/*------------------------NOTIFICATIONS------------------------------*/
.notifications {
    margin-top: -10px;
}
.notifications .notification {
    text-align: left;
    padding: 10px 20px 10px 10px;
    margin-bottom: 10px;
    font-size: 14px;
    border: 2px solid #CCCCCC;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 4px;
    border-radius: 4px;
    background-color: #fcfcfc;
    color: rgb(72, 72, 72);
    width: 800px;
}
.notifications button.close {
    position: relative;
    top: -5px;
    right: -11px;
    line-height: 20px;
    padding: 0;
    cursor: pointer;
    background: none repeat scroll 0% 0% transparent;
    border: 0px none;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-shadow: 0px 1px 0px #fff;
    opacity: 0.2;
    vertical-align: middle;
    outline: 0;
}
/* -------------------------- TOOLTIPS ------------------------------*/

.tooltip {
    position: fixed;
    max-width: 250px;
    background: #F8F8C1;
    padding: 5px;
    font-size: 12px;
    color: #000;
    border-radius: 3px;
    border: 1px solid #996;
    z-index: 1000000;
}
.tooltip:before {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border-top: 7px solid #F8F8C1;
    border-top-color: #222;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    position: absolute;
    bottom: -7px;
    right: 19px;
}
.tooltip:after {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid #F8F8C1;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    position: absolute;
    bottom: -6px;
    right: 20px;
}
/* ------------------------- LIGHTBOXES ---------------------------- */

.invite-user-form {
    padding: 15px 60px 15px 20px;
}
.invite-user-form label {
    display: block;
    font-size: 14px;
}
.invite-user-form input {
    display: block;
    margin-top: 5px;
}
.invite-user-form input[type=text] {
    width: 220px;
}
.invite-user-form span {
    display: inline-block;
    font-size: 12px;
    color: #999;
}
.invite-user-success, .invite-user-error {
    display: none;
    font-size: 12px;
    padding: 5px 40px 5px 20px;
}
.invite-user-success {
    font-size: 14px;
}
/* ------------------------- FOOTER -------------------------------- */

.footer {
    margin-top: 10px;
    color: white;
}
.footer a{
    color: white;
    font-size: medium;
    margin-left: 5px;
    text-decoration: none;
}
.footer a:hover{
    color: #E6820E;
}
/* ------------------------- WORK SPACE -------------------------------- */

div#WORKSPACE {
    position: relative;
    top:10px;

}
div#WORKSPACE_FILLER {
    padding-top: 1070px;
}
.panel_border {
    border: 1px solid #d1d1d1;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;


}
.revision_header {
    background-color: #EEEEEE;
}
div#TOOLBAR {
    background-color: #EEEEEE;
    width: 140px;
    position: absolute;
    left: 0px;
    top: 20px; 
    padding: 25px;
    z-index: 9000;
}
div#WORKSHEET {
    background-color: #FFFFFF;
    border: 1px solid #d1d1d1;
    width: 800px;
    height: 1070px;
    position: absolute;
    left: 182px;
    top: 0px;
    overflow: hidden;
}
div#BLOCKED_MSG {
    width: 400px;
    height: 100px;
    position: absolute;
    left: 352px;
    top: 0px;
    padding: 15px;
    overflow: hidden;
    color: #1C94C4;
	font-size: 32px;
    text-align: center;
    border: '1px solid #CCCCCC';
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}
div#PROPERTIES {
    background-color: #EEEEEE;
    width: auto;
    padding: 25px;
    position: absolute;
    left: 900px;
    top: 0px;
    z-index: 8999;
    height: auto;
}
.boxkeepminsize{

    min-width: 300px;
    min-height: 500px;
}
.imagethumbnail {
    height: 75px;
    border: 1px solid #000;
    margin: 10px 5px 0 0;
  }
.buttonimagethumbnail {
    height: 115px;
    width: 150px; 
    margin: 1px 1px 0 0;
    min-height: 115px;
    min-width: 150px;
  }
  .buttonimagethumbnail_dual {
    height: 70px;
    width: 70px;  
    margin: 1px 1px 0 0;
    min-height: 70px;
    min-width: 70px;
  }
   .buttonimagethumbnail_dual_container {
    height: 70px;
    width: 70px;
    border: 1px solid #000;
    margin: 1px 1px 0 0;
    min-height: 70px;
    min-width: 70px;
  }
div#REVISIONS {
    background-color: #EEEEEE;
    width: 140px;
    position: absolute;
    left: 0px;
    top: 450px;
    z-index: 8999;
}
div#FRAMEPROPERTIESTOOLS {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 916px;
    top: -25px;
}
.SELECTING_AREA {
    position: absolute;
    width: 0px;
    height: 0px;
    border: 2px dotted #E6820E;
}
.UNSELECTABLETEXT {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}
.moreactionbuttons {
  padding: 5px !important;
    text-align: center;
    line-height: 1 !important;
}
div#PROPERTIES label {
    text-transform: uppercase;
    display: block;
    font-size: 9px;
    padding: 1px;
    text-align: center;
    margin-bottom: 2px;
}
div#PROPERTIES div.inline label {
    text-transform: uppercase;
    display: inline;
    font-size: 9px;
    padding: 1px;
    text-align: center;
    margin-bottom: 2px;
}
div#PROPERTIES textarea {
    border: 1px solid white;
    font-size: 10px;
    width: 126px;
    padding: 2px;
    height: 50px;
    margin-bottom: 4px;
    resize: none;
}
div#PROPERTIES input[type=text] {
    border: 1px solid #b4b4b4;
    font-size: 14px;
    width: 150px;
    padding: 2px;
    height: 25px;
    margin-bottom: 4px;
}
 
 .width117px{
  width: 117px !important;
 }
  .width150px{
    width: 150px !important;
    margin-bottom: 3px !important;
    font-size: small !important;
 }
.ele_dropdown_select:before{
  content: "\25be  or  \25bc  ?  ";
    float:right;
    color:gray;
}
.ele_dropdown_select:after{
  content: "";
    margin:0 0.5em;
    display:inline-block;
    border: 7px solid transparent;
    border-top:8px solid gray;
    border-bottom:0 none;
}
.ele_dropdown_select {
    display:inline-block;
    padding:0.5em;
    border:solid 1px gray;
    border-radius:0.25em;
    box-shadow:0 0 2px 1px gray;
}
#tooltype_ipcamera{
  border: 1px solid gray !important;
}
div#PROPERTIES input[type=text]#id_days_to_live {
    width: 20px;
    color: gray;
}

div#PROPERTIES input[type=text]#id_days_to_live.fixed {
    color: black;
}

div#expire_container.highlight {
    background-color: #fdefa4;
}
.resize_input {
    border: 1px solid white;
    font-size: 10px;
    width: 126px;
    padding: 2px;
    margin-bottom: 4px;
}
div#PROPERTIES input[type=checkbox] {
    margin-bottom: 4px;
}
div#PROPERTIES select {
    font-size: small;
    width: 150px;
    margin-bottom: 4px;
    height: 25px;
}
div#PROPERTIES p.frame_title {
    padding-left: 4px;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #E6820E;
}
div#PROPERTIES p.frame_description {
    padding-left: 4px;
    font-size: 10px;
    text-align: left;
    line-height: 12px;
}
div#PROPERTIES #gotoproject {
    font-size: 11px;
    margin-bottom: 8px;
}
div#UNIT_PROPERTIES {
    position: absolute;
    display: none;
    z-index: 1002;
}
textarea#UNIT_TEXT {
    border: 1px solid green;
    padding: 2px;
    font-size: 14px;
    line-height: 18px;
    font-family: Lato-Regular;
    width: 100%;
    height: 100%;
}
input#UNIT_LINK, input#UNIT_TEXT {
    border: 1px solid green;
    padding: 2px;
    font-size: 14px;
    line-height: 18px;
    font-family: Lato-Regular;
    width: 200px;
}
a#REMOVE_FRAME_BACKGROUND, a#SET_FRAME_BACKGROUND, a#NEW_FRAME_FROM_COPY, a#HIDE_BACKGROUND, a#DOWNLOAD_HTML_FRAME {
    margin-bottom: 4px;
}
#SAVE_FRAME span {
    color: #E6820E;
    width: 60px;
}
#INVITE_USER {
    margin-top: 4px;
}
#SAVE_FRAME_FORM #background_file {
    position: relative;
    overflow: hidden;
}
#SAVE_FRAME_FORM input[name=background_image] {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    filter: alpha(opacity=0);
}
div#sharebuttons {
    margin-top: 4px;
}
table.unitactionsbuttons {
    /*margin-bottom: 4px;*/
}
table.unitactionsbuttons td {
    padding: 0 2px 2px 0;
}
table.unitactionsbuttons td a {
    width: 60px;
}
p.propertiesheader {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    margin: 10px 0px 10px 0px;
    text-transform: uppercase;
}
.centerdivscreensize {
  vertical-align: middle;
    font-size: 12px;
    font-weight: bold;
    margin: 10px 0px 10px 0px;
    text-transform: uppercase;
}
#tblResizeScreenSize td {
  padding: 0px 5px 5px 5px;
}
.sidebarbox {
    padding: 10px;
}
.toolbarswitch {
    text-align: center;
    padding: 10px 0;
}
.toolbarswitch select, .toolbarswitch input {
    border: 0;
    background: transparent;
    outline: 0;
    font-size: 13px;
    font-weight: normal;
    color: #484848;
    text-transform: uppercase;
 }
.eac-enabled {
    opacity: .35;
}
.toolcover {
    width: 100px;
    text-align: left;
    font-size: 12px;
    padding:10px;
    color: white;
    background: rgb(28, 148, 196);
    margin-bottom: 5px;
    float: left;
    outline: 0;
}
.toolcover div.toolmargin {
    padding-left: 4px;
}
.toolcover:hover {
    color: #E6820E;
}
.toolcover p {
    margin: 0px;
    padding: 0px;
    width: 100px !important;
    font-size: small !important;
}
.glass {
    background-image: url(/static/images/glass.png);
    top: 0px;
    left: 0px;
    position: absolute;
}
.message {
    font-size: 16px;
    text-align: center;
}
.page404 {
    font-family: Lato-Regular;
    font-size: 22px;
    font-weight: normal;
    line-height: 26px;
    padding: 160px 0px 200px 0px;
    text-align: center;
}

#selectedUnitDetailDivSection input{
  font-size: medium;
   font-family: Lato-Regular;
   color: #191919;
}

/* ------------------------- CONTACT FORM ------------------------------ */
.popup table th, .popup table td {
    vertical-align: middle;
    padding: 4px;
    text-align: left;
}
.popup label {
    font-size: 10px;
    text-transform: uppercase;
}
.popup input[type=text], .popup textarea {
    border: 1px solid #999999;
}
.popup h3, .popup h1 {
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    margin: 15px 25px 15px 25px;
}
.popup h1 {
    margin: 20px 0 15px 0;
}
.popup p {
    font-size: 12px;
    text-align: center;
    margin: 15px;
}
.helppopup p {
    text-align: left;
}
.bold {
 font-weight: bold;
}
.underline {
 text-decoration: underline;
}
.italic {
 font-style: italic;
}

.textalign-center {
 text-align: center;
}
.textalign-left {
 text-align: left;
}
.textalign-right {
 text-align: right;
}

/* ------------------------- CUSTOMER AREA ----------------------------- */
#customerarea {
    padding-left: 20px;
    margin-bottom: 50px;
}
#customerarea #leftside {
    float: left;
    width: 200px;
    padding-right: 30px;
}
#customerarea #areacontent {
    float: left;
}
#customerarea #leftside ul {
    margin-top: 20px;
}
#customerarea #leftside .leftsideheader {
    margin: 12px 0 8px 0;
}
#customerarea #leftside .leftsideheader p {
    font-size: 18px;
    font-weight: bold;
    padding: 0 0 4px 0;
    border-bottom: 1px dotted #CCCCCC;
}
#customerarea #leftside .leftsideitem {
    margin: 4px 0 4px 10px;
}
#customerarea #leftside .activeitem {
    color: #E6820E;
}
#areacontent {
    width: 820px;
    min-height: 600px;
}
#areacontent h1 {
    font-size: 32px;
    color: #E6820E;
    margin: 20px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #CCCCCC;
    font-weight: normal;
}
a.whitebutton {
    display: inline-block;
    font-size: 13px;
    background-color: #FFFFFF;
    text-decoration: none;
    color: #1C94C4;
    padding: 4px 8px 4px 8px;
    -moz-border-radius: 4px 4px 4px 4px;
    border-bottom-left-radius: 4px 4px;
    border-bottom-right-radius: 4px 4px;
    border-top-left-radius: 4px 4px;
    border-top-right-radius: 4px 4px;
}
a.allcomponents {
    display: inline-block;
    font-size: 14px;
    /*background-color: #FFFFFF;*/
    text-decoration: none;
    color: #1C94C4;
    padding:10px;
    -moz-border-radius: 4px 4px 4px 4px;
    border-bottom-left-radius: 4px 4px;
    border-bottom-right-radius: 4px 4px;
    border-top-left-radius: 4px 4px;
    border-top-right-radius: 4px 4px;
}
a.allcomponents:hover {
    color: #E6820E;
}
a.whitebutton:hover {
    color: #E6820E;
}
#areacontent form {
    margin: 15px 0 50px 0;
}
#areacontent form th {
    font-size: 20px;
    text-align: left;
    padding-right: 10px;
    vertical-align: middle;
    padding-bottom: 10px;
}
#areacontent form td {
    vertical-align: middle;
    padding-bottom: 10px;
}
#areacontent form input[type=text], #areacontent form input[type=password], #areacontent form textarea {
    border: 1px solid #CCCCCC;
    font-size: 20px;
}
#areacontent form input[type=text], #areacontent form input[type=password] {
    height: 24px;
}
#areacontent form input[type=submit], #areacontent form input[type=button] {
    font-size: 20px;
}
#areacontent form #profileeamil {
    background-color: #EEEEEE;
    border: 1px solid #EEEEEE;
}
#areacontent form.signinup {
    margin-left: 230px;
}
#areacontent p {
    font-size: 12px;
    line-height: 14px;
}
#areacontent p.alert {
    display: inline-block;
    padding: 8px 16px 8px 16px;
    background-color: #ffffe1;
}
.errorlist li {
    color: red;
    font-size: 12px;
}
#areacontent h3 {
    font-size: 24px;
    margin: 20px 0 20px 0;
    font-weight: normal;
}
#areacontent .project_description {
    margin: 20px 0 10px 0;
    line-height: 20px;
    font-size: 18px;
}
#areacontent .frames {
    font-size: 12px;
    line-height: 14px;
    width: 100%;
    margin-bottom: 20px;
}
#areacontent .frames th {
    white-space: nowrap;
}
#areacontent .frames td, #areacontent .frames th {
    padding: 7px 7px 7px 3px;
    border-top: 1px dotted #CCCCCC;
    text-align: left;
    vertical-align: middle;
}
#areacontent .frames tr.frametr:hover {
    color: #000000;
    background-color: #E5E5E5;
}
.plan {
    margin: 20px;
    padding: 20px;
    background-color: #FFFFFF;
    text-decoration: none;
    -moz-border-radius: 4px 4px 4px 4px;
    border-bottom-left-radius: 4px 4px;
    border-bottom-right-radius: 4px 4px;
    border-top-left-radius: 4px 4px;
    border-top-right-radius: 4px 4px;
}
.plan h1 {
    font-size: 32px;
    color: #E6820E;
    margin: 0 0 20px 0;
}
.plan h3 {
    font-size: 14px;
    margin: 0 0 10px 0;
}
.plan p {
    font-size: 14px;
    margin: 0 0 10px 0;
}
.plan li {
    list-style-type: square;
    margin-left: 32px;
    font-size: 12px;
}
.plan a {
    display: inline-block;
    /*margin-top: 2em;
    float: left;*/
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    color: #1C94C4;
    font-weight: bold;
}

#fade-out-message,
.django-message
{
    position: fixed;
    top: 29%;
    left: 30%;
    width: 300px;
    background-color: white;
    color: green;
    text-align: center;
    padding: 20px;
    z-index: 99999999;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    font-size: large;
    font-weight: bold;
    border: 1px solid #555555;
    margin-top: -10%; /* Changes with height. */
    margin-left: -10%; /* Your width divided by 2. */
    display: none;
    -webkit-animation: fadeOut 2s forwards;
    animation: fadeOut 2s forwards;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
       
}
@-webkit-keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}
.django-message {
    padding-left: 15px;
    top: 25px;
    display: block;
}

.django-message a {
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
    text-align:right;
    cursor: pointer;
}

.sidebar-second-box {
    margin-top: 5px;
}


.hidden {
    display: none;
}

.defaulted {
    opacity: 0.2;
}

.defaulted:hover {
    opacity: 0.8;
}

.muted {
    color: #999;
}


#expire_note {
    margin-bottom: 10px;
    margin-top: -3px;
}


.notifications .notification div{
    letter-spacing: 0.5px;
}

.ui-button.activated {
    color: #EB8F00;
    border-color: #FBD850;
}

#BACKGROUND_WRAPPER.transparent {
    opacity: 0.15;
}

#prevention_of_deletion_box {
    background-color: #ff0000;
    color: #000000;
}

p#prevention_of_deletion {
    font-weight: bold;
    line-height: 1.5;
    font-size: large;
}



#toolbar{
  position: absolute;
background-color: #1B4057;
width: 100%;
overflow: visible;
color: #8C8682;
font-size: 12pt;
}

 

#divEditorScreen .Lasdogo
{
  margin-left:  20px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 200px;
  height: 200px;
}
#toolbar {
  position: absolute;
  background-color: #2A91BA;
  width: 100%;
  overflow: visible;
  color: #8C8682;
  font-size: 11pt;
}

.toolbar a, .toolbar a:visited, .toolbar a:hover {
  color: #8C8682;
  text-decoration: none;
  margin: 0 6px;
}

.toolbar .logo {
  width: 200px;
  position: absolute;
  left: 0;
  padding-left: 5px;
  padding-top: 7px;
}

.toolbar .actions {
  position: absolute;
  right: 0;
  text-align: right;
  font-size: 13px;
  height: 100%;
}

.toolbar .actions .actions_group {
  height: 100%;
  display: inline-block;
}

.toolbar .separator {
  width: 1px;
  height: 38px;
  margin-top: 6px;
  background-color: #546C7B;
  float: left; 
}

.toolbar .actions .actions_group .header_action {
  float: left;
  cursor: pointer;
  height: 100%;
  text-align: center;
  padding-left: 25px;
  padding-right: 25px;
}

.centertext{
  text-align: center;
}

.toolbar .actions .actions_group .header_action .action_icon {
  width: 100%;
  height: 20px;
  margin: 0 auto;
  /*Center inside div*/
  background-repeat: no-repeat;
  margin-top: 6px;
  background-position: center 0;
  color: white;
}

.toolbar .header_action .action_text {
  color: #FFFFFF;
  margin: 0 auto;
  padding-top: 4px;
}

.toolbar .header_action:hover {
  background-color: #224F6C;
}

.toolbar .header_action.selected {
  background-color: red;
}

.toolbar .header_action:active {
  background-color: #2E5D7B;
}

.toolbar .header_action.inactive:hover {
  background-color: transparent;
}

.toolbar .separator.hover {
  height: 100%;
  margin: 0;
}

.toolbar .header_action.inactive .action_icon {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.toolbar .header_action.inactive .action_text {
  color: #AAA;
}

.toolbar .preview_action .action_icon {
  position: relative;
}
.toolbar .preview_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .preview-enabled .action_icon {
  position: relative;
}
.toolbar .preview-enabled .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .header_action.inactive {
  cursor: default !important;
}

.toolbar .undo_action .action_icon {
  position: relative;
}
.toolbar .undo_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .export_action .action_icon {
  position: relative;
}
.toolbar .export_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .redo_action .action_icon {
  position: relative;
}
.toolbar .redo_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .save_action .action_icon {
  position: relative;
}
.toolbar .save_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .links_action {
  width: 40px;
}

.toolbar .links_action .action_icon {
 /* background-image: url('');*/
}

.toolbar .comments_action .action_icon {
  position: relative;
}
.toolbar .comments_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .share_action .action_icon {
  position: relative;
}
.toolbar .share_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .collaborate_action .action_icon {
  position: relative;
}
.toolbar .collaborate_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .comments_action .action_icon {
  position: relative;
}
.toolbar .comments_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .myprojects_action .action_icon {
  position: relative;
}
.toolbar .myprojects_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .logout_action .action_icon {
  position: relative;
}
.toolbar .logout_action .action_icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}

.toolbar .logout_action input {
  background: none;
  border: none;
  color: white;
}

.toolbar .register-button {
  width: 145px;
  line-height: 17px;
  padding-top: 6px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  margin-top: 2px;
  height: 45px;
}

.toolbar .preview_action {
  /* constant width so that buttons don't jump when text changes */
  width: 59px;
}

.toolbar .actions .edit_actions .header_action {
  position: relative;
  width: 26px;
}

.toolbar .count-down {
  cursor: pointer;
  position: absolute;
  right: 650px;
  color: white;
  margin-top: 14px;
  font-size: 13px;
  line-height: 20px;
}
.toolbar .count-down .count-content {
  padding: 0 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: green;
  height: 20px;
}

.toolbar .actions .logout_action {
  width: 44px;
  margin-right: 16px;
}

.toolbar .menuicons{
  width: 23px;
  height: 23px;

}

.toolbar .actions .indicator {
  width: 20px;
  display: inline-block;
  text-align: center;
}

.toolbar .project {
  position: absolute;
  left: 20%;
  color: white;
  font-size: 18px;
}

.toolbar .project span {
  cursor: pointer;
  display: block;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
  max-width: 300px;
}

.toolbar .project span input {
  min-width: 200px;
}

.toolbar .action_save_background {
  background-color: #0094FF;
  position: absolute;
  height: 0;
  left: 13px;
  bottom: 25px;
  width: 15px;
  z-index: 1;
}

.toolbar .action_save_content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}


#container {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom:  0px;
  background: #e1e6e8;
  /*#cecece;*/
}


#toolbox {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#left_sidebar {
  overflow: hidden;
}

#right_sidebar {
  overflow: hidden;
}

#left_sidebar_content, #right_sidebar_content {
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}


#left_sidebar {
  overflow: hidden;
}

#right_sidebar {
  overflow: hidden;
}

#left_sidebar_content, #right_sidebar_content {
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.right-sidebar-header {
  position: relative;
  height: 28px;
  width: 100%;
}
.right-sidebar-header::before {
  position: absolute;
  top: 6px;
  right: inherit;
  bottom: inherit;
  left: 5px;
  margin: inherit inherit;
  content: '';
}

#propertyDesignerContainer {
  width: 100%;
  position: relative;
  margin-top: 10px;
}

#propertyDesigner {
  /*In case a drop down is the last element and we have a scroller*/
  padding-bottom: 100px;
  width: 235px;
}

#propertyDesigner, #propertyDesigner a {
  color: #4D4D4D;
}

#propertyDesigner .dk_container {
  float: right;
}

#templatePropertyDesigner {
  width: 241px;
}

#templatePropertyDesigner .add-property {
  float: right;
  color: #4d4d4d;
  margin-right: 9px;
  text-decoration: none;
}

#templatePropertyDesigner .add-property:hover {
  text-decoration: underline;
}

#templatePropertyDesigner .property-content-container {
  margin-bottom: 0;
}

.property-template-state {
  width: 100%;
  margin-top: 2px;
  position: relative;
}

.property-template-state .state-name {
  height: 20px;
  font-size: 16px;
  background-color: #f9f9f9;
}

.property-template-state .state-name.selected {
  background-color: #afafaf;
}

.property-template-state .state-delete {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  bottom: 0;
  background-image: url('//az632987.vo.msecnd.net/cdn/1.53.23891.0/img/delete_state.png');
  background-position: center center;
  background-repeat: no-repeat;
}

.property-template-state .state-delete:hover {
  background-color: #afafaf;
}

.property-template-state .state-header:hover {
  background-color: #d4d4d4;
  cursor: pointer;
}

.state-control-name {
  margin-left: 10pt;
}

.state-control-property-name {
  margin-left: 15pt;
}

.template-editor-close {
  color: #363030;
  text-decoration: underline;
  font-size: 12px;
  float: right;
}

.property-search {
  margin-left: 8px;
  margin-bottom: 8px;
  margin-top: 8px;
  width: 225px;
}

.property-content select {
  width: 99px;
}

.property-content input[type=text] {
  height: 17px;
  text-align: center;
  padding: 0 3px;
}

.property-group-label {
  clear: both;
  padding-left: 15px;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
}

.property-group-label span:hover {
  outline: none;
}

.properties-in-group {
  margin-top: 10px;
}

.property-content-container {
  overflow: visible;
  margin-bottom: 10px;
}

.property-content {
  overflow: visible;
}

.property-group-header-expanded {
  position: relative;
}
.property-group-header-expanded::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}
.property-group-header-expanded::before {
  left: 6px;
  right: inherit;
  background-repeat: no-repeat;
}

.property-group-header-collapsed {
  position: relative;
}
.property-group-header-collapsed::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  content: '';
}
.property-group-header-collapsed::before {
  left: 7px;
  right: inherit;
  background-repeat: no-repeat;
}

.property {
  margin-top: 2px;
  height: 17px;
  clear: both;
}

.property-name {
  width: 115px;
  padding-left: 17px;
  height: 100%;
  float: left;
  line-height: 100%;
}

.property-name label {
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.property-disabled {
  text-decoration: line-through;
}

.property-editor {
  position: relative;
  font-size: 12px;
  height: 100%;
  float: left;
  width: 101px;
}

.property-actions {
  float: left;
  margin-top: 2px;
  margin-left: 130px;
  width: 103px;
}

.property-actions > div {
  width: 100%;
}

.property-actions .action-group {
  float: right;
}

.property-actions .action {
  margin: 0 0 0 2px;
}

.shape-selector input{
    margin:0;padding:0;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
}
/*
Image Selection RadioBox*/
/*
Pure CSS Fancy Checkbox/Radio 
https://codepen.io/raubaca/pen/ONzBxP
*/
/*#divBtnShapeArrowSelection
input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
#divBtnShapeArrowSelection label {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding-left: 30px;
  padding-right: 10px;
  line-height: 36px;
  cursor: pointer;
}
#divBtnShapeArrowSelection label::before {
  content: " ";
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid #8e44ad;
  border-radius: 4px;
  z-index: -1;
}
#divBtnShapeArrowSelection input[type="radio"] + label::before {
  border-radius: 18px;
}
// Checked  
#divBtnShapeArrowSelection  input[type="checkbox"]:checked + label,
input[type="radio"]:checked + label {
  padding-left: 10px;
  color: #fff;
}
#divBtnShapeArrowSelection  input[type="checkbox"]:checked + label::before,
input[type="radio"]:checked + label::before {
  top: 0;
  width: 100%;
  height: 100%;
  background: #8e44ad;
}
// Transition 
#divBtnShapeArrowSelection label, label::before {
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}*/

.shape-selector {
    margin-bottom: 5px;
}

.radio-option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 13.33333px;
  right: 0;
  bottom: 13.33333px;
  left: 0;
  height: 30px;
  width: 30px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.radio-option-input:hover {
  background: #9faab7;
}
.radio-option-input:checked {
  background: #2A91BA;
}
.radio-option-input:checked::before {
  height: 30px;
  width: 30px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 20.66667px;
  text-align: center;
  line-height: 30px;
}
.radio-option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.radio-option-input.radio {
  border-radius: 50%;
  color: white !important;
  margin-right: 2px;
}
.radio-option-input.radio::after {
  border-radius: 50%;
}


.arrowLeft{
  background-image:url(images/icon_arrow_full_left.png) !important;
 }
.arrowRight{
  background-image:url(images/icon_arrow_full_left.png);
}
.arrowUp{
  background-image:url(images/icon_arrow_full_left.png);
}
.arrowDown{
  background-image:url(images/icon_arrow_full_left.png);
} 

.shape-selector input:active +.drinkcard-cc{opacity: .9;}
.shape-selector input:checked +.drinkcard-cc{
    -webkit-filter: none;
       -moz-filter: none;
            filter: none;
}
.drinkcard-cc{
    cursor:pointer;
    background-size:contain;
    background-repeat:no-repeat;
    display:inline-block;
    width:100px;height:70px;
    -webkit-transition: all 100ms ease-in;
       -moz-transition: all 100ms ease-in;
            transition: all 100ms ease-in;
    -webkit-filter: brightness(1.8) grayscale(1) opacity(.7);
       -moz-filter: brightness(1.8) grayscale(1) opacity(.7);
            filter: brightness(1.8) grayscale(1) opacity(.7);
}
.drinkcard-cc:hover{
    -webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
       -moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
            filter: brightness(1.2) grayscale(.5) opacity(.9);
}

/* facncy drop down menu*/

/* #F93 */
/* #C60 */
 #cssmenu {
     border: none;
     border: 0px;
     margin: 0px;
     padding: 0px;
     font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
     font-size: 14px;
     font-weight: bold;
     width: auto;
}
 #cssmenu ul {
     /*background: #ff9933;*/
     height: 50px;
     list-style: none;
     margin: 0;
     padding: 0;
     -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
     border-radius: 15px;
  /*   -webkit-box-shadow: inset 0px 16px 0px 0px rgba(255, 255, 255, 0.1);
     -moz-box-shadow: inset 0px 16px 0px 0px rgba(255, 255, 255, 0.1);
     box-shadow: inset 0px 16px 0px 0px rgba(255, 255, 255, 0.1);*/
}
 #cssmenu li {
     float: left;
     padding: 0px 0px 0px 15px;
}
 #cssmenu li a {
     color: #000;
     display: block;
     font-weight: normal;
     line-height: 50px;
     margin: 0px;
     padding: 0px 25px;
     text-align: center;
     text-decoration: none;
}
 #cssmenu li a:hover {
     
     color: #FFFFFF;
     text-decoration: none;
     /*background: #cc6600;
     -webkit-box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
     box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, 0.3);*/
}
 #cssmenu ul li:hover a {
     background: #369;
       -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     border-radius: 5px;
      -webkit-box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.1);
     -moz-box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.1);
     box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.1);
     color: #FFFFFF;
     text-decoration: none;
}
 #cssmenu li ul {
     display: none;
     height: auto;
     padding: 0px;
     margin: 0px;
     border: 0px;
     position: absolute;
     width: auto;
     z-index: 99999999;
}
 #cssmenu li:hover ul {
     display: block;
}
 #cssmenu li li {
     display: block;
     float: none;
     margin: 0px;
     padding: 0px;
     width: 200px;
     background: #ff9933;
    /*this is where the rounded corners for the dropdown disappears*/
}
 #cssmenu li:hover li a {
     background: none;
}
 #cssmenu li ul a {
     display: block;
     height: 50px;
     font-size: 12px;
     font-style: normal;
     margin: 0px;
     padding: 0px 10px 0px 15px;
     text-align: left;
}
 #cssmenu li ul a:hover, #cssmenu li ul li:hover a {
     border: 0px;
     color: #FFFFFF;
     text-decoration: none;
     background: #cc6600;
     -webkit-box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
     box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
}
 

.fancydropdown ul {
  text-align: center;
}

.fancydropdown ul li {
  font: 13px Verdana, 'Lucida Grande';
  cursor: pointer;
  -webkit-transition: padding .05s linear;
  -moz-transition: padding .05s linear;
  -ms-transition: padding .05s linear;
  -o-transition: padding .05s linear;
  transition: padding .05s linear;
}
.fancydropdown ul li.drop {
  position: relative;
}
.fancydropdown  ul > li {
  display: inline-block;
}
.fancydropdown ul li a {
  line-height: 80px;
  padding: 0 20px;
  height: 80px;
  color: #777;
  -webkit-transition: all .1s ease-out;
  -moz-transition: all .1s ease-out;
  -ms-transition: all .1s ease-out;
  -o-transition: all .1s ease-out;
  transition: all .1s ease-out;
}
.fancydropdown ul li a:hover {
  color: #eee;
}
.dropOut .triangle {
  width: 0;
  height: 0;
  position: absolute;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
  top: -8px;
  left: 50%;
  margin-left: -8px;
}
.dropdownContain {
  width: 160px;
  position: absolute;
  z-index: 2;
  left: 50%;
  margin-left: -80px; /* half of width */
  top: -400px;
}
.dropOut {
  width: 160px;
  background: white;
  float: left;
  position: relative;
  margin-top: 0px;
  opacity: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 6px rgba(0,0,0,.15);
  -moz-box-shadow: 0 1px 6px rgba(0,0,0,.15);
  box-shadow: 0 1px 6px rgba(0,0,0,.15);
  -webkit-transition: all .1s ease-out;
  -moz-transition: all .1s ease-out;
  -ms-transition: all .1s ease-out;
  -o-transition: all .1s ease-out;
  transition: all .1s ease-out;
}

.dropOut ul {
  float: left;
  padding: 10px 0;
}
.dropOut ul li {
  text-align: left;
  float: left;
  width: 125px;
  padding: 12px 0 10px 15px;
  margin: 0px 10px;
  color: #777;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background .1s ease-out;
  -moz-transition: background .1s ease-out;
  -ms-transition: background .1s ease-out;
  -o-transition: background .1s ease-out;
  transition: background .1s ease-out;
}

.dropOut ul li:hover {
  background: #f6f6f6;
}

/* Extras *//*
a:visited{color:#888}
a{color:#444;text-decoration:none;}
p{margin-bottom:.3em;}*/
/*
content split into 3 sections*/

/*#container * {
    box-sizing: border-box;
    padding: 0px;

}*/

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    padding: 10px;
    height: 100%; /* Should be removed. Only for demonstration */
    margin-left: 10px;

}

.toolbox {
    float: left;
    width: 25.00%;
    padding: 10px;
    height: 100%; /* Should be removed. Only for demonstration */
}
.screenarea {
    float: left;
    width: 45.00%;
    padding: 10px;
    height: 100%;  

    border-left:solid #191919 1px;
    border-right:solid #191919 1px;/*
    border-top:solid blue 4px;
    border-bottom:solid green 4px; */
   
}

.gridLines{
   background-color: transparent;
    background-image:       linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent);
  height:100%;
  background-size:50px 50px; 
}

.rightpanel {
    float: left;
    width: 20.00%;
    padding: 10px;
    height: 100%; /* Should be removed. Only for demonstration */
}

#componentsListLayout{
   width: 20.00%;
    padding: 10px;
    height: 900px;  
}
#screenDesignLayout{
   width: 50.00%;
    padding: 10px;
    height: 900px;  
}
#elementPropertiesLayout{
   width: 18.00%;
    padding: 10px;
    height: 900px;  
}

.componentItem {
    position: absolute;
    z-index: 9;
    background-color: #f1f1f1;
    text-align: center; 
    border: 1px solid #d3d3d3;
}

.componentItemheader {
    padding: 10px;
    cursor: move;
    z-index: 10;
    background-color: #2196F3;
    color: #fff;
      width: 200px;
     height: 50px;
}
/*accordion*/
.accordion {
    background-color: transparent;
    color: white;
    cursor: pointer;
    padding: 10px 0px;
    /* width: 100%; */
    border: none;
    /* text-align: left; */
    outline: none;
    font-size: 12px;
    transition: 0.4s;
}

.active, .accordion:hover {
    /*background-color: #ccc;*/
}
/*https://www.w3schools.com/cssref/css_entities.asp
https://brajeshwar.github.io/entities/
*/
.accordion:after {
   /* content: '\002B';*/
    content: '\25BC';
    color: #FFFFFF; 
    font-weight: bold;
    float: right;
    margin-left: 35px; 
}

.active:after {
  /*  content: "\2212";*/
  content: "\25B2";
}

.panel {
    padding: 0 0px;
  /*  border-left:5px solid white;
    border-top:5px solid white; */
    background-color: white;
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
.topright {
   position: absolute;
   top: 2px;
   right: 4px;
   font-size: 10px;
   display: none;
}

.hideview {
   
   display: none;
}

/* DivTable.com */
div.blueTable {
/*  border: 1px solid #1C6EA4;*/
  background-color: #EEEEEE;
  margin: 10px;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.divTable.blueTable .divTableCell, .divTable.blueTable .divTableHead {
  border: 1px solid #d1d1d1;
  padding: 3px 2px;
}
.divTable.blueTable .divTableBody .divTableCell {
  font-size: 13px;
}
.divTable.blueTable .divTableRow:nth-child(even) {
  /*background: #D0E4F5;*/
}
.blueTable .tableFootStyle {
  font-size: 14px;
}
.blueTable .tableFootStyle .links {
   text-align: right;
}
.blueTable .tableFootStyle .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}
.blueTable.outerTableFooter {
  border-top: none;
}
.blueTable.outerTableFooter .tableFootStyle {
  padding: 3px 5px; 
}

.divTable{ display: table; }
.divTableRow { display: table-row; }
.divTableHeading { display: table-header-group;}
.divTableCell, .divTableHead { display: table-cell;}
.divTableHeading { display: table-header-group;}
.divTableFoot { display: table-footer-group;}
.divTableBody { display: table-row-group;}
 

 .textbold{
    font-style: bold;

 }

  #selectedUnitDetailDivSection {
   /* display: table;*/
      width: 420px;
    }

  #selectedUnitDetailDivSection .row  {
    display: table-row;
    }

  #selectedUnitDetailDivSection .left {
    display: table-cell;
    padding: 0px;
    text-align: left;

    } 
  #selectedUnitDetailDivSection .right, 
  #selectedUnitDetailDivSection .middle {
    display: table-cell;
    padding: 15px;
    }
#selectedUnitDetailDivSection h3{
   font-size: 1.2em;
   line-height: 0.6em;
   font-weight: normal;
   text-transform: uppercase;
   font-family: Lato-Regular;
 }   
 #selectedUnitDetailDivSection h4{
    font-size: 1em;
   line-height: 2em;
   font-weight: normal;
   text-transform: uppercase;
   font-family: Lato-Regular;
 }   
.propertiesLabel{
  padding-left: 10px !important;
  width: 200px;
  font-family: Lato-Regular;
}
 #selectedUnitDetailDivSection .pixelValues
 {
  width:22px;
  display: inline-block;
  font-size: small;
 }

.PropertiesRootHeaderLine{
   text-align: left;
    margin-left: 8px;
    background-color: #2A91BA;
    padding: 10px;
    color: white;
    margin-right: 10px;
}
.PropertiesRootHeaderLine.active,
.PropertiesRootHeaderLine:hover {
    background:#369;
    /* Type */
    
    text-decoration:none;
} 

.button-with-imageicon{
  
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(images/icon_arrow_full_left.png);
}

/*Toggle Button
*/
.toggleButton_container {
  width: 150px;
  height: 36px;
  margin: auto;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}

.toggleButton_inner_container {
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: .2em;
}

.toggleButton_inner_container:first-child {
  background: #c2c2c2;
  color: #000000;
}

.toggleButton_inner_container:nth-child(2) {
  background: dodgerblue;
  color: white;
  clip-path: inset(0 50% 0 0);
  transition: .3s cubic-bezier(0,0,0,1);
}

.toggle {
  width: 50%;
  position: absolute;
  height: inherit;
  display: flex;
  box-sizing: border-box;
}

.toggle p {
  margin: auto;
  font-family: Lato-Regular
}

.toggle:nth-child(1) {
  right: 0;
}
/*
CHeckbox*/
.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator { 
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: white;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}
.control input:checked ~ .control__indicator {
  background: #2aa1c0;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #0e647d;
}
.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
/*
JQUERY UI MODIFICATIONS*/

.ui-tooltip {
    width: 200px;
    
    background:#2A91BA;
    color:white;
}

/*
 Accordion CSS BEGIN*/
/*----- Accordion -----*/
.accordion,
.accordion * {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}
.accordion {
overflow:hidden;
/*box-shadow:0px 1px 3px rgba(0,0,0,0.25);
border-radius:3px;
background:#f7f7f7;*/
}
/*----- Section Titles -----*/
.accordion-section-title {
  width:400px;
  padding:10px;
  text-align: left;
  display:inline-block;
  border-bottom:0px solid #1a1a1a;
  background:#2A91BA;
  transition:all linear 0.15s;
  /* Type */
  font-size:1.200em;
  /*text-shadow:0px 1px 0px #1a1a1a;*/
  color:#fff;
  text-decoration: none;
  margin-bottom: 4px;
}
.accordion-section-title.active,
.accordion-section-title:hover {
background:#369;
/* Type */
text-decoration:none;
}
.accordion-section:last-child .accordion-section-title {
border-bottom:none;
}
/*----- Section Content -----*/
.accordion-section-content {
  padding:10px;
  color: black;
  display:none;
  text-align: left;
}
/*
 Accordion CSS END*/
/*
https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_image_overlay_opacity
how_css_image_overlay_opacity*/
.imagecontainer {
    position: relative;
    width: 50%;
}

.imagecontainerimage {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.imagemiddle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.imagecontainer:hover .imagecontainerimage {
  opacity: 0.3;
}

.imagecontainer:hover .imagemiddle {
  opacity: 1;
}

.imagecontainertext {
  background-color: red;
  color: white !important;
  font-size: 13px;
  padding: 10px;
}


 /*The object-fit Property
https://www.w3schools.com/css/tryit.asp?filename=trycss3_object-fit_all*/
.fill {object-fit: fill;}
.contain {object-fit: contain;}
.cover {object-fit: cover;}
.scale-down {object-fit: scale-down;}
.none {object-fit: none;}

/*
 Facebook like wave animation:
 https://github.com/tobiasahlin/SpinKit/blob/master/examples/3-wave.html*/
 .sk-wave {
  margin: 40px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;

}
.sk-wave .sk-rect {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
            animation: sk-waveStretchDelay 1.2s infinite ease-in-out; 
}

 .sk-wave-small-titlebar {
  margin: 0px auto;
  width: 50px;
  height: 20px;
  text-align: center;
  font-size: 10px;

}
.sk-wave-small-titlebar .sk-rect {
    background-color: #FFFFFF;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
            animation: sk-waveStretchDelay 1.2s infinite ease-in-out; 
}

  .sk-wave .sk-rect1 {
    -webkit-animation-delay: -1.2s;
            animation-delay: -1.2s; }
  .sk-wave .sk-rect2 {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s; }
  .sk-wave .sk-rect3 {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; }
  .sk-wave .sk-rect4 {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s; }
  .sk-wave .sk-rect5 {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; }


@-webkit-keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }
@keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }

.center-on-page {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

#divMenuOptionsSelectLayout{ 

  z-index: 9999;
  position: absolute;
  padding: 15px;
  width: 250px;
  height: 250px;
  font-family: Lato-Regular;
  font-size: small;

}
#divArrowPickerLayout{

  z-index: 9999;
  background-color: #336699;
  position: absolute;
  padding: 15px;
  width: 215px;
  height: 250px;
  font-family: Lato-Regular;
  font-size: small;

}
#divMenuOptionsSelect{

  z-index: 9999;
  background-color: #336699;
  position: absolute;
  padding: 15px;
  width: 200px;
  height: 250px;
  font-family: Lato-Regular;
  font-size: small;

}

#divNewUserWelcomePopupLayout{

  z-index: 9999;
  background-color: #336699;
  position: absolute;
  padding: 15px;
  width: 450px;
  height: 450px;
  font-family: Lato-Regular;
  font-size: small; 
  top: 100px;
  left: 20%; 

}
#overlay {
    display:none;
    opacity:0.5;
    background-color:black;
    position:fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index: 999;
}
#popupBox {
    display:none;  
    position: relative;
    margin-left:auto;
    margin-right:auto;
    margin-top:100px;
    width:600px;
    height: 500px;
    color: #000000;
    border:5px solid #4E93A2;
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    background-color:#FFFFFF;
    z-index: 1000;
   
}
#popupContent {
    display:none;
        font-family:Arial, Helvetica, sans-serif;
    color: #4E93A2;
    margin-top:30px;
    margin-left:30px;
    margin-right:30px;
}

.deleteMeetingButton{
    clear:both;
  cursor:pointer;
  width:90px;
  height:30px;
  border-radius: 4px;
  background-color: #5CD2D2;
  border:none;
  text-align:center;
  line-height:10px;
  color:#FFFFFF;
  font-size:11px;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:bold;
}


.deleteMeetingCancel{
    clear:both;
  cursor:pointer;
  width:90px;
  height:30px;
  border-radius: 4px;
  background-color: #5CD2D2;
  border:none;
  text-align:center;
  line-height:10px;
  color:#FFFFFF;
  font-size:11px;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:bold;
}

#deleteMeetingConfirmDeleted
{
    display:none;
}

.dashboardmenuicon
{

}

.dashboardmenuicon img:hover
{
  background-color: #369; 
}
 #divMenuOptionsSelect ul {
     /*background: #ff9933;*/
     height: 50px;
     list-style: none;
     margin: 0;
     padding: 0;
     -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
     border-radius: 15px;
  /*   -webkit-box-shadow: inset 0px 16px 0px 0px rgba(255, 255, 255, 0.1);
     -moz-box-shadow: inset 0px 16px 0px 0px rgba(255, 255, 255, 0.1);
     box-shadow: inset 0px 16px 0px 0px rgba(255, 255, 255, 0.1);*/
}
 #divMenuOptionsSelect li {
     float: left;
     padding: 0px 0px 0px 15px;
}

 #divMenuOptionsSelect li:hover {
     
     color: #FFFFFF;
     text-decoration: none;
     /*background: #cc6600;
     -webkit-box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
     box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, 0.3);*/
}

#divCommandDictionaryLayout{
    z-index: 9999;
    background-color: #fefefe;
    position: absolute;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 1130px;
    height: 630px;
    font-family: Lato-Regular;
    font-size: small;
    margin-left: 12%;
    margin-top: 3.5%; 
    color: #369;
}
#divCommandDictionaryLayout .close{
    float: right;
    margin-top: 0px;
    margin-right: -2px;
    height: 36px;
}
#divCommandDictionaryLayout .close:hover{
      /*box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);*/
}
#divCommandDictionaryLayout .close:active{
     background-color: white;
  box-shadow: 0 5px #369;
  transform: translateY(4px);
}
 
div#divCommandDictionaryLayout label{
  text-transform: uppercase;
  display: block;
  font-size: 9px;
  padding: 1px;
  text-align: center;
  margin-bottom: 2px;
}

div#divCommandDictionaryLayout select {
    font-size: small;
    width: 126px;
    margin-bottom: 4px;
    height: 25px;
}
#divCommandDictionaryLayout .headlinetext{
   font-size: small;
    width: 400px;
    float: left;
}
#divCommandDictionaryLayout .section-content-title{
   background: #E8F2FF;
    padding: 5px;
    
}
#divCommandDictionaryLayout .divInnerInput{
    background: #E8F2FF;
    padding: 5px;
} /*
https://tympanus.net/Development/CreativeButtons/
https://tympanus.net/Development/TextInputEffects/*/
#divCommandDictionaryLayout input[type=text]{
     background: #fff;
    border: 0 none;
    color: #807E7E;
    float: left;
    height: 25px;
    line-height: 26px;
    font-size: 14px;
    /* margin: 0 0 0 2px; */
    outline: medium none;
    padding: 6px 6px;
    width: 150px;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0,0,0,0.6);
    font-family: inherit;
}
.buttonWithInput{

    min-width: 76px;
    background: #1ebba3;
    border: none;
    min-height: 33px;
    border-radius: 0px;
    cursor: pointer;
    outline: none;
    transition: all .5s;
    color: #fff;
    line-height: normal;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 12px;
    margin-top: -1px;
}
.buttonWithInput:hover{

    min-width: 76px;
    background: #4CAF50;
    border: none;
    min-height: 33px;
    border-radius: 0px;
    cursor: pointer;
    outline: none;
    transition: all .5s;
    color: #fff;
    line-height: normal;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 12px;
    margin-top: -1px;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.buttonWithInput:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
.float_right{
  float: right;
}
#divCommandDictionaryLayout .section-title{
 
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    text-align: left;
    color: #000;
    font-family: Lato-Regular; 
    /* font-family: 'Google Sans Display',sans-serif; */
    margin-bottom: 15px;
    line-height: 1.5em; 
    
} 

#divCommandDictionaryLayout .section-subtitle{
 
  font-size: 14px;
    color: #333;
    font-weight: normal;
    /* margin-left: 25%; */
    text-overflow: ellipsis;
    float: right;
  /*  max-width: 200px;*/
    background: inherit;
    
} 
#divCommandDictionaryLayout ul{
  
  margin-bottom: 10px;
  margin-top: 10px;
  display: inline-block;
} 
  
#divCommandDictionaryLayout li{
 
    font-size: 14px; 
    text-align: left; 
    font-family: tablet-gothic-narrow,serif; 
    /* font-family: 'Google Sans Display',sans-serif; */
 
    line-height: 1.5em; 
    width: 190px; 
    height: 30px; 
    margin: 0 0 7px 0;
    background: #F7F5F2; 
    color: #333;
    padding: 5px 0 0 20px;
    text-decoration: none;
    
}
#divCommandDictionaryLayout li:hover{
  background-color: #EFEFEF;
    
} 
#divCommandDictionaryLayout li:selected{
  background-color: red;
    
}  
#divCommandDictionaryLayout  .dropdown{
 
        background: #f2f2f2; 
        display: none;
        position: absolute;
        z-index: 999;
        left: 0;
        width: 100px;

}

#divCommandDictionaryLayout ul li:hover .dropdown{

        display: block; /* Display the dropdown */

}

#divCommandDictionaryLayout    ul li ul.dropdown li{

        display: block;

}

 #divCommandDictionaryLayout .searchInput {
    background: #fff !important;
    border: 0 none !important;
    color: #807E7E !important;
    float: left !important;
    height: 20px !important;
    line-height: 26px !important;
    font-size: 14px !important;
    outline: medium none !important;
    padding: 6px 14px !important;
    width: 342px !important;
    border-radius: 2px !important;
    box-shadow: 0 0 1px rgba(0,0,0,0.6) !important;
    font-family: inherit !important;
}
.btncreatecommand{
  margin-left: 5px !important;
  margin-top: -2px !important;
  border-radius: 3px !important;
}
.liCommandCategoryIndicator{
  width: 10px;
  float: left;
  border: solid 1px black;
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 5px;
}
.search-btn {
    color: rgba(0,0,0,.6);
    background: #ebebeb;
    border: none;
    outline: none;
    cursor: pointer;
    float: left;
    height: 38px;
    line-height: 46px;
    width: 44px;
    display: block;
    margin-left: -2px;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 1px rgba(0,0,0,0.7);
}
.search-btn span::before {
    font-size: 25px;
    display: block;
}
.icon-search{

}
.search-btn .icon-search::before {
    content: "\e919";
}
.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 9999999; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}



  #divCreateCommandWithProperties .row  {
    display: table-row;
    }

  #divCreateCommandWithProperties .left {
    display: table-cell;
    padding: 0px;
    text-align: left;

    } 
  #divCreateCommandWithProperties .right, 
  #divCreateCommandWithProperties .middle {
    display: table-cell;
    padding: 15px;
    }

    #divCreateCommandWithProperties h3{
   font-size: 1.2em;
   line-height: 0.6em;
   font-weight: normal;
   text-transform: uppercase;
   font-family: Lato-Regular;
 }   
 #divCreateCommandWithProperties h4{
    font-size: 1em;
   line-height: 2em;
   font-weight: normal;
   text-transform: uppercase;
   font-family: Lato-Regular;
   color: #333;
 }   
 
#divCreateCommandWithProperties .propertiesLabel{
  padding-left: 10px !important;
  width: 200px;
  vertical-align: middle;
  font-family: Lato-Regular;
}

#divCreateCommandWithProperties input{
    border: 1px solid #b4b4b4 !important;
    font-size: 14px !important;
    width: 150px !important;
    padding: 2px !important;
    height: 25px ;
    color: black;
    text-transform: uppercase;
    margin-bottom: 4px !important;
}

.uppercase{
    text-transform: uppercase !important; 
}
#divCreateCommandWithProperties select {
         width: 155px !important;
}
sup {font-size:xx-small; vertical-align:super;}
/* Scrollbar on hover
https://codepen.io/kizu/pen/OyzGXY
*/.scrollbox { 
  overflow: auto;
  visibility: hidden;
}
.scrollbox-content,
.scrollbox:hover,
.scrollbox:focus {
  visibility: visible;
}

.scrollbox_delayed {
  transition: visibility 0.2s;
}
.scrollbox_delayed:hover {
  transition: visibility 0s 0.2s;
}
/*
jQuery UI Autocomplete - Combobox*/
  .ui-autocomplete {
    max-height: 100px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
  }
  /* IE 6 doesn't support max-height
   * we use height instead, but this forces the menu to always be this tall
   */
  * html .ui-autocomplete {
    height: 100px;
  }
.custom-combobox {
    position: relative;
    display: inline-block;
  }
.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
  }
.custom-combobox-input {
    margin: 0;
    padding: 5px 10px;
  }
.dropdown_commandtype{
    width: 70px !important;
    margin-bottom: 4px; 
    height: 25px;
    margin-right: 5px !important;
    font-family: Lato-Regular;
    display: none;
}
.textype_button_command{
   font-size: smaller;
   margin-right: 15px;
    font-family: Lato-Regular;
}

/*https://stackoverflow.com/questions/6370690/media-queries-how-to-target-desktop-tablet-and-mobile*/

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  

}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
   #screenTitleEditorPage
 {
   display: none;
 }
  
    
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
   section#mobile-menu #ulListSummary {
		margin-left: 80px;
		margin-right: 50px;
		background: #F5F5F5;
		padding: 5px; 
		width: 100% !important;
		min-width: 650px;
	}
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
   
  
}