:root {
  --light_gray: rgb(225,225,225);
  --dark_blue: rgb(34,60,103);
  --darker_blue: rgb(0,0,80);
  --light_blue: rgb(0,60,120);
  --white: rgb(255,255,255);
}

* {
  box-sizing: border-box;
  font-family: Arial;
  font-size: 12px;
}
img{
  width: 100%;
  height: auto;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
  float: left;
  padding: 15px;
  border: 0;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.content {
  max-width:750px;
  margin: auto;
  background-color: var(--light_gray);
  border-radius: 40px;
  padding: 40px;
}

body {
  background-color: var(--light_blue);
}
table {
  width: 100%;
  color: var(--white);
  font-weight: bold;
}
table.input td:first-child {
  background-color: var(--darker_blue);
}
table.input td:nth-child(2) {
  background-color: var(--darker_blue);
}
table.input td:only-child {
  background-color: var(--darker_blue);
}
fieldset {
  background-color: var(--darker_blue);
  border: 4px groove var(--light_blue);
}
fieldset p {
  color: var(--white);
}
fieldset label {
  color: var(--white);
}
legend {
  color: var(--white);
  padding-top: 18px;
  padding-bottom: 2px;
  padding-right: 6px;
  padding-left: 6px;
  font-size: 16px;
  font-weight: bold;
}

.required_field::before {
  content:"*";
}
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid var(--white);
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  right: 100%;
  bottom: -50%;
  margin-right: 20px;
  background-color: var(--darker_blue);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
