* {
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.6;
    font-size: 1.6rem;
    color: #333;
}

h1, h2, h3 {
    color: #666;
}

h4 {
  padding: 15px 0;
}

p {
    padding: 15px 0;
}

p:last-child {
    padding-top: 15px;
    padding-bottom: 0px;
}

hr {
    margin: 15px 0 15px 0;
}

ul {
    list-style-position: inside;
}

a {
    text-decoration: none;
}

a:link, a:visited {
    color: #2a6cb6;
}

a:hover, a:visited {
    text-decoration: underline;
}

#logo {
    max-width: 50px;
}

#head {
    background-color: rgba(185, 183, 189, 0.4); /* #B9B7BD; */
}

#sec1 {
    background-color:  rgba(231, 210, 204, 0.3); /* #E7D2CC; */
}

#footer {
    background-color: rgba(238, 237, 231, 0.2); /* #EEEDE7; */
    text-align: center;
}

.content {
    margin: 0px auto;
    max-width: 900px;
    padding: 15px 0;
}

.center-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.center-text {
    text-align: center;
}

.small {
    line-height: 1;
    font-size: 1rem;
}

.unmarkered {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* 
 * -- Flex --
 */

.row {
    display: flex;
    column-gap: 0.85rem;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* 
 * -- Media --
 */ 

@media screen and (max-width: 900px) {
    body {
        line-height: 1.2;
        font-size: 1.2rem;
        color: #333;
    }
    .content {
        width: 80%;
    }

    .column {
        flex: auto;
    }
}

/*
 * -- ALERT STYLES --
 */

 .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
  }
  .alert h4 {
    margin-top: 0;
    color: inherit;
  }
  .alert .alert-link {
    font-weight: bold;
  }
  .alert > p,
  .alert > ul {
    margin-bottom: 0;
  }
  .alert > p + p {
    margin-top: 5px;
  }
  .alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
  }
  .alert-success hr {
    border-top-color: #c9e2b3;
  }
  .alert-success .alert-link {
    color: #2b542c;
  }
  .alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
  }
  .alert-warning hr {
    border-top-color: #f7e1b5;
  }
  .alert-warning .alert-link {
    color: #66512c;
  }

/*
 * -- FLASH STYLES --
 */

  .flashes {
    font-size: large;
    line-height: 1;
}

/*
 * -- TABLE STYLES --
 */

 table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    line-height: 0.8;
    font-size: 0.8rem;
  }
  
  table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }
  
  table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
  }

  table th,
  table td {
    padding: .625em;
    text-align: center;
  }
  
  table th {
    background-color: rgba(185, 183, 189, 0.4); /* #B9B7BD; */
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  
.td-red {
  background-color: #FF6666;
}

  @media screen and (max-width: 900px) {
    table {
      border: 0;
      line-height: 0.7;
      font-size: 1rem;
    }
  
    table caption {
      font-size: 1.3em;
    }
    
    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625em;
    }
    
    table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    table td::before {
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    table td:last-child {
      border-bottom: 0;
    }
  }

/* 
 * TOGGLE PASSWORD 
 */

.field-icon {
  float: right;
  margin-left: -30px;
  margin-top: -30px;
  position: relative;
  z-index: 3;
}

.password{
  margin: auto;
}

/* 
 * DROPDOWN
 */

 .dropdown {
  display: inline-block;
  position: relative;
}

button{
  border:none;
  border-radius:5px;
  padding:10px 15px;
  font-size:12px;
  cursor:pointer;
}

button:hover{
  background-color:#ddd;
}

.dropdown-options {
  display: none;
  position: absolute;
  overflow: auto;
  background-color:#fff;
  border-radius:5px;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
}

.dropdown:hover .dropdown-options {
  display: block;
   position: relative;
  top: 0px; 
  left: 20px;
}

.dropdown-options a {
  display: block;
  color: #000000;
  padding: 5px;
  text-decoration: none;
  padding:10px 15px;
}

.dropdown-options a:hover {
  color: #0a0a23;
  background-color: #ddd;
  border-radius:5px;
}