* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

:root {
  --acgc-green: #8b8c4a;
  --acgc-blue: #002b49;
  --acgc-grey: #b1b1b1;
}

body {
  font-family: Arial, sans-serif;
}

.left-container {
  width: 50%;
padding-left: 0px;}

.right-container {
 /* height: 100vh;*/
  width: 50%;
}

.container {
  display: flex;
}

/*Selector styling*/

.dropdown {
  /* display: flex; */
 
  /* justify-content: center; */
  align-content: center;
}
.select {
  margin-right: 6px;
  padding: 8px 12px;
  color: var(--acgc-grey);
  background-color: #fff;
  border: 1px solid var(--acgc-grey);
  cursor: pointer;
  border-radius: 5px;
}
.programs {
  width: 200px;
}
.select:focus,
.select:hover {
  outline: none;
}

.select option {
  background-color: #fff;
}

.search-btn {
  padding: 10px 40px;
  background-color: var(--acgc-green);
  color: #fff;
  border: 1px solid var(--acgc-green);
  border-radius: 6px;
}

.search-btn:hover {
  background-color: var(--acgc-grey);
  border: solid 1px var(--acgc-grey);
  cursor: pointer;
}

/*Pagination */

.pagenumbers{
  display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.pagenumbers button {
	/* width: 20px; */
	/* height: 20px; */
	appearance: none;
	border: none;
	outline: none;
	cursor: pointer;

	background-color: var(--acgc-green);

	margin: 5px;
	transition: 0.4s;

	color: #FFF;
	font-size: 18px;
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
padding: 6px 12px;border-radius: 5px;}

.pagenumbers button:hover {
	background-color: var(--acgc-grey);
}

.pagenumbers button.active {
	background-color:var(--acgc-blue);
	box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2);
}

/*States list */

.states-container {
  margin: 14px 0px;
}

.program-title {
  margin-bottom: 20px;
  color: var(--acgc-blue);
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.program-uni {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
  font-weight: bold;
}

.program-name a{
  margin-bottom: 10px;
  color: var(--acgc-green);
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
}

.program-status {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
  font-weight: normal;
}

.program-status span {
  font-style: italic;
}

.program-link{
  font-size: 14px;
  color: var(--acgc-blue);
}

.error-msg {
  background-color: var(--acgc-green);
  color: #fff;
  text-align: center;
}

/*Map styling */
.map-content {
  justify-content: center;
  align-content: center;
}

.interactive-map {
  display: flex;
  margin-top: 0px;
  margin-right: 20px;
  height: 589px;
  width: 98%;
  align-content: center;
}

.state-map {
  fill: #cfd4d9;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.5px;
}

.state-map.active {
  fill: var(--acgc-blue);
}

/* Media Querys */

@media (max-width: 1375px){
  .interactive-map{
    height: 400px;
  }
}


@media (max-width: 780px) {
  .container {
    display: flex;
    flex-direction: column;
  }
  .left-container {
    width: 100%;
  padding-left: 0px;}


  .dropdown {
    display: flex;
    flex-direction: column;
  }
  .select {
    margin-bottom: 0px !important;
    margin-left: 0px;
	  margin-right: 0px;
    width: 100%;    
  }
  .search-btn {
    margin-bottom: 10px;
    margin-left: 0px;
    width: 100%;
  }
  .right-container{
    display: none;
  }

  .dropdown {
    display: flex;
    flex-direction: column;
  }
  .select {
    margin-top: 10px;
    margin-left: 0px;
	  margin-right: 0px;
    width: 100%;    
  }
  .search-btn {
    margin-top: 10px;
    margin-left: 0px;
    width: 100%;
  }
  .right-container{
    display: none;
  }

  h4.program-status {
    margin-top: 5px;
}
h2.program-uni {
  margin-bottom: 5px;
}

.states-container {
  margin: 10px 0px;
}

}

