@charset "UTF-8";

body {
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 10px;
  line-height: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: #3b3b3b;
  -webkit-font-smoothing: antialiased;
  background: #F0FEFD;
   display:block;
}

@media screen and (max-width: 580px) {
  body {
    font-size: 16px;
    line-height: 22px;
  }
}
div.wrapper {
    overflow:hidden;
    overflow-y: scroll;
    height: 100px; 
}
.wrapper {
  margin: 0 auto;
  padding: 40px;
  max-width: 800px;
}

.table {
  margin: 0 0 40px 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: table;
}

@media screen and (max-width: 580px) {
  .table {
    display: block;
  }
}

.row {
  display: table-row;
  background: #f6f6f6;
}
.row:nth-of-type(odd) {
  background: #e9e9e9;
}
.row:hover {
          background-color: #8DEDFA;
        }
.row.header1 {
  font-weight: 900;
  color: #3b3b3b;
  background: #ea6153;
}
.row.header {
  font-weight: 900;
  color: #ffffff;
  background: #ea6153;
}
.row.green {
  background: #27ae60;
}
.row.blue {
  background: #2980b9;
}
.row.yellow {
  background: #2ACBC6;
}
.row.skyblue {
  background: #2ACBC6;
}
@media screen and (max-width: 580px) {
  .row {
    padding: 14px 0 7px;
    display: block;
  }
  .row.header {
    padding: 0;
    height: 6px;
  }
  .row.header .cell {
    display: none;
  }
  .row .cell {
    margin-bottom: 10px;
  }
  .row .cell:before {
    margin-bottom: 3px;
    content: attr(data-title);
    min-width: 98px;
    font-size: 10px;
    line-height: 10px;
    font-weight: bold;
    text-transform: capitalize;
    color: #969696;
    display: block;
  }
}

.cell {
  padding: 3px 6px;
  display: table-cell;
}
@media screen and (max-width: 580px) {
  .cell {
    padding: 2px 8px;
    display: block;
  }
}

/* new dropdown */

.dropbtn {
  background-color: #5D6D7E;
  color: white;
  padding: 16px;
  font-size: 20px;
  line-height: 2px;
  border: 1px solid black;
  border-radius: 10px;
}

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

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 5px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-size: 12px;
  max-height:350px;/* you can change as you need it */
  /* overflow:auto; *//* to get scroll */
}

.dropdown-content a {
  color: black;
  padding: 10px 12px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #17CBC2;}


.sire-header {
	text-align:center;
	background-color: #D6EAF8;
	border-radius: 1px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
	border: 1px solid;
}

/* select css */

/* The container must be positioned relative: */
.custom-select1 {
  background-color: #f4f8fb;
  color: #1a1a1a;
  border: 2px solid #3498db;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  font-family: 'Helvetica Neue', sans-serif;
  width: 100%;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .custom-select1 {
      width: 200px;
      margin-right: 10px;
  }
}

.select1-selected {
  background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select1-selected:after {
  position: absolute;
  content: "";
  top: 30px;
  right: 40px;
  width: 10px;
  height: 10px;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select1-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select1-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select1-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  font-size: 15px;
}

/* Hide the items when the select box is closed: */
.select1-hide {
  display: none;
}

.select1-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}