
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Calibri;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #ff1493;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-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;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #ff1493;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}



.myButton {
	background-color:#ff1491;
	border-radius:30px; 
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Calibri;
	font-size:17px;
	padding:8px 16px;
	text-decoration:none;
	
}
.myButton:hover {
	background-color:black;
}
.myButton:active {
	position:relative;
	top:1px;
}



/*

#box-table
                           {
                           font-family: Calibri;
                           font-size: 12px;
                           text-align: center;
                           border-collapse: collapse;
                           border: 0px solid black;
                           }
                           #box-table th
                           {
                           font-size: 13px;
                           font-weight: normal;
                           
                           border: 2px solid black;
                           color: white;
                           }
                           #box-table td
                           {
                           border: 2px solid black;
                           color: black;
                           }
						    #box-table thead
							{
								
								background: #FF1493;
							}
					*/
					
					.container2 {
  overflow-y: auto;
  height: 360px;
}
table {
  border-spacing: 0;
  width:100%;
}
td + td {
  border-left:1px solid #eee;
}
td, th {
  border-bottom:1px solid #eee;
  
  color: #000;
  padding: 10px 25px;
}
th {
  height: 0;
  line-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: transparent;
  border: none;
  white-space: nowrap;
  background: #FF1493;
  color: #fff;
}
th div{
  position: absolute;
  background: transparent;
  color: #fff;
  padding: 9px 25px;
  top: 0;
  margin-left: -25px;
  line-height: normal;
  border-left: 1px solid #800;
}
th:first-child div{
  border: none;
}


