/* BEGIN of added from previous page*/

/* dark mode support */
:root {
  color-scheme: dark; 
  background-color: #343b37;
} 

/* end of dark mode support */ 

html {
  /* background-image: url('/images/jobs.svg');
  background-size: 75%;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat; */
  margin: 0;
}

body {
  margin: 0;
  font-size: medium;
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}

h1 { 
  font-size: larger;
}

a {
  text-decoration: none;
  color: #ac87d6; 
}

hr {
  margin-top: 35px;
  margin-bottom: 35px;
  width: 40%;
}

.bgimg {
  position: relative;
  /* color: black; */
  font-family: "Courier New", Courier, monospace;
  /* background-color: #86838355; */
}

.topbar{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.topleft {
  float: left;
  padding: 10px;
}

.topleft img {
  margin-right: 10px;
}

.topleft h1, h5 {
  display: flex;
  flex-direction: column;
}

.topright a{
  display:flex;
  align-items: center;
  float: right;
  padding: 10px;
  border-radius: 10px;
  background-color: #0aa8a7;
  color: black;
}

.topright img {
  margin-left: 10px;
}

.topright a, h1, h5 {
  display: inline;
}

.middle {
  width: 100%;
  padding-top: 50px;
  text-align: center;
  font-size: large;
}
.mychoices{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 18px;
  width: 30%;
  padding-bottom: 10px;
}

input[type="radio"] {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
  transform: scale(1.5);
}
.form-check-inline{
  display: inline;
}

.social {
  padding: 35px;
}

/* END of added from previous page*/

table {
  border-collapse: collapse;
  overflow-y: auto;    
  overflow-x: hidden; 
  width: 80%;
  font-size: large;
}

thead {
  background-color: #000000bd;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
}

/* to make header sticky with chrome */

thead tr:nth-child(1) th{
  background-color: #272727bd;
  position: sticky;
  top: 0;
  z-index: 10;
}

td {
  background-color: #39393980;
  border-top: 1px solid #ddd;
}

table tr {
  padding: .35em;
}

table th, table td {
  padding: .625em;
  text-align: center;
  padding: 5px;
}

table th {
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* the container for the table */

.overflow-container {
  flex: 1;
  overflow-y: auto;
  height: 400px;
  min-height: 0px;
  width: 95%;
  margin-left:auto; 
  margin-right:auto;
}

/* a custom scroller for mozilla and chrome */

.scroller {
  overflow-y: auto;
  scrollbar-color: #393939 #ddd;
  scrollbar-width: thin;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

.scroller::-webkit-scrollbar-track {
  background: #ddd;
}

.scroller::-webkit-scrollbar-thumb {
  background: #393939; 
}


/* responsive parameters for the table to sow as cells */

@media screen and (max-width: 900px) {
  
  thead {
      border: 0;
      display: block;
  }

  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;
  }

  td{
      display: block;
  }

  table td {
      border-bottom: 1px solid #ddd;
      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;
  }
  .mychoices{
    width: 65%;
  }
}

.mc-layout__bannerContent iframe { height: auto !important }

/* BEGIN particules.js */

#particles-js{ position:absolute; width: 100%; height: 100%; }

/* END particules.js */

/* style for the search bar */
.search-bar {
  height: 44px;
  width: 70%;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  position: relative;
  background: #fff;
}

.input {
  border: none;
  height: 25px;
  width: 50%;
  color: #1b1b1b;
  background-color:#fff;
  font-size: 18px;
  outline: none;
}

.input:not(:placeholder-shown) + .label {
  font-size: 9px;
  top: 3px;
  color: #00c853;
}

.input:focus ~ .label {
  font-size: 12px;
  top: 1px;
  color: #4279a3;
  transition: all 0.5s ease;
}

.label {
  color: #aaaaaa;
  position: absolute;
  top: 13px;
  pointer-events: none;
  transition: all 0.5s ease;
}

.search-btn {
  background: #0aa8a7;
  border-radius: 20px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  right: 2px;
  position: absolute;
  transition: all 1s ease;
}

.icon {
  display: inline-flex;
}

.icon-18 {
  width: 18px;
  height: 18px;
}

.highlight {
  width: 0px;
  height: 1px;
  background: #4279a3;
  position: absolute;
  bottom: 8px;
  transition: all 1s ease;
}

.input:focus ~ .highlight {
  width: 150px;
  
}
/* end of style for the search bar */
