#container abbr
{
    border-style: dotted;
    border-color: #111;
    border-width: 0 0 1px;
    cursor: help;
}

:root{
--my-app-scale: 1.0;
}

.my-modal-scale {

    transform: scale(var(--my-app-scale));
	
}

/*
    TOOLTIP
*/

#tooltip
    {
        font-family: Ubuntu, sans-serif;
        font-size: 0.875em;
        text-align: center;
        text-shadow: 0 1px rgba( 0, 0, 0, .5 );
        line-height: 1.5;
        color: #fff;
        background: #333;
        background: -webkit-gradient( linear, left top, left bottom, from( rgba( 0, 0, 0, .6 ) ), to( rgba( 0, 0, 0, .8 ) ) );
        background: -webkit-linear-gradient( top, rgba( 0, 0, 0, .6 ), rgba( 0, 0, 0, .8 ) );
        background: -moz-linear-gradient( top, rgba( 0, 0, 0, .6 ), rgba( 0, 0, 0, .8 ) );
        background: -ms-radial-gradient( top, rgba( 0, 0, 0, .6 ), rgba( 0, 0, 0, .8 ) );
        background: -o-linear-gradient( top, rgba( 0, 0, 0, .6 ), rgba( 0, 0, 0, .8 ) );
        background: linear-gradient( top, rgba( 0, 0, 0, .6 ), rgba( 0, 0, 0, .8 ) );
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        border-top: 1px solid #fff;
        -webkit-box-shadow: 0 3px 5px rgba( 0, 0, 0, .3 );
        -moz-box-shadow: 0 3px 5px rgba( 0, 0, 0, .3 );
        box-shadow: 0 3px 5px rgba( 0, 0, 0, .3 );
        position: absolute;
        z-index: 100;
        padding: 15px;
    }
        #tooltip:after
        {
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #333;
            border-top-color: rgba( 0, 0, 0, .7 );
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            margin-left: -10px;
        }
            #tooltip.top:after
            {
                border-top-color: transparent;
                border-bottom: 10px solid #333;
                border-bottom-color: rgba( 0, 0, 0, .6 );
                top: -20px;
                bottom: auto;
            }
            #tooltip.left:after
            {
                left: 10px;
                margin: 0;
            }
            #tooltip.right:after
            {
                right: 10px;
                left: auto;
                margin: 0;
            }

/* The Modal (background) */
.my-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  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 */
}

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

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

/* Modal Content */
.my-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Modal Header */
.my-modal-header {
	padding: 2px 16px;
}

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

/* The Close Button */
.my-close {
  color: #aaaaaa;
  float: right;
  font-weight: bold;
}

.my-close:hover,
.my-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.my-div {
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

textarea {
  resize: none;
}

.terminal { border: solid 2px #ff0000; background: #000000; color: #ffffff; white-space: nowrap; padding: 0px; width: 100%; height: 330px; overflow-y: auto; overflow-x: auto; line-height: 0.8; font-size:12pt; font-family:courier;}

p.small {
line-height: 0.7;
margin: 4px;
}
