* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
  background-color: #ffffff;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

.header {
  background-color: #072bfa;
  color: #ffffff;
  padding: 15px;
}

.image img{
    max-width: 80%;
    height: auto;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #acc4cc;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
  background-color: #4c5ceb;
}

.menu1 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu1 li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #2bcc73;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu1 li:hover {
  background-color: #33b5e5;
}

//topbar menu
.topbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

.topbar li {
  float: left;
}

.topbar li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.topbar li a:hover {
  background-color: #111;
}

//end topbar menu

.aside {
  background-color: #33b5e5;
  padding: 0px;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.footer {
  background-color: #072bfa;
  color: #4c8dee;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

.hidden{
    display: none;
}

.full {
    text-align: justify;
    text-justify: inter-word;
}

.box-shadow {
      font-family: cursive, sans-serif;
      max-width: 250px;
      margin: auto;
      background-color: #0ec9e6;
      color: white;
      padding: 10px;
      border-radius: 4px;
      box-shadow: 2px 2px 5px 5px #acadad;
    }

.right{
            float: right; 
            margin: 10px;
        }

.left{
            float: left;
            margin: 10px;
        }

.center {
    margin: auto;
}

.white {color: white;}

.disabled {
    opacity: 0.65; 
  	cursor: not-allowed;
    
}

button.round {
  background-color: blue;
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 50%;
}

.button:hover {
    background-color: #4287f5;
}

//table styling
.fancy {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.fancy td, .fancy th {
  border: 1px solid #ddd;
  padding: 8px;
}

.fancy tr:nth-child(even){background-color: #f2f2f2;}

.fancy tr:hover {background-color: #ddd;}

.fancy th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}

.fancy table {
    border: 1px solid black; 
    border-radius: 10px;
}


p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}
p.none {border-style: none;}
p.bhidden {border-style: hidden;}
p.mix {border-style: dotted dashed solid double;}
.rounded {border: 2px; border-radius: 5px;}


.overflowhack {overflow: auto;}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%; max-height: 100%;}
  .col-2 {width: 16.66%; max-height: 100%;}
  .col-3 {width: 25%; max-height: 100%;}
  .col-4 {width: 33.33%; max-height: 100%;}
  .col-5 {width: 41.66%; max-height: 100%;}
  .col-6 {width: 50%; max-height: 100%;}
  .col-7 {width: 58.33%; max-height: 100%;}
  .col-8 {width: 66.66%; max-height: 100%;}
  .col-9 {width: 75%; max-height: 100%;}
  .col-10 {width: 83.33%; max-height: 100%;}
  .col-11 {width: 91.66%; max-height: 100%;}
  .col-12 {width: 100%; max-height: 100%;}
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.pointer {cursor: pointer;}