 .container {  
          /*border-color: black;  
          border-width: .10em;  
          border-style: inset; */
         /* padding: 10px;*/
          max-width: 100%;
          margin: 0 auto;
          display: flex;
           /*width: 150px;*/

          
         
         /* border-radius: 15px ;  */
        }
   /*     form {
  width: 300px;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}*/

.container-inner{
  padding: 5px;
  line-height: 1.8;
}
textarea {
  resize: none;
}

/*table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}*/



/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
}

/* Style the header links */

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: #ddd;
  color: black;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}


/*for tooltip */
/* Tooltip container */
.Tooltip!important {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.Tooltip .tooltiptext!important {
  visibility: hidden;
  width:400px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  left:0;
}

/* Show the tooltip text when you mouse over the tooltip container */
.Tooltip:hover .tooltiptext!important {
  visibility: visible;
   left:0;
}


.Tooltip {
    
    position:relative;
    
}


.Tooltip .bottom {
    background: #EEEEEE;
    padding: 6px 10px;
    color: #666666;
    font-weight: normal;
    font-size: 13px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    z-index: 99999999;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
     box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
    display: none;
}

.Tooltip:hover .bottom {
    display:block;
}



.Tooltip .bottom i {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-left: 10px;
    width: 20px;
    height: 10px;
    overflow: hidden;
}

.Tooltip .bottom i::after {
    content:'';
    position:absolute;
    width:10px;
    height:10px;
    left:50%;
    transform:translate(-50%,50%) rotate(45deg);
    background-color:#EEEEEE;
    box-shadow:0 1px 8px rgba(0,0,0,0.2);
}

.error{
  color: red;
  display: block;
}


