body,
html {
  margin: 0;
  padding: 0;
  font-size: 16px;
  background-color: #2d2d2d;
  font-family: "Roboto", sans-serif;
  touch-action: manipulation;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

header {
  padding: 0.25rem 1rem;
  border-bottom: 1px solid #8d8d8d;
  margin-bottom: 0.5rem;
  position: sticky;
  background-color: #ffffff;
  top: 0;
  text-align:center;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.btn {
    text-shadow: none;
    background-image: none;
    border-radius: 0;
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    font-weight: bold;
    padding: 4rem 4.5rem;
    box-shadow: none;
    white-space: normal;
    border: 0;
    cursor: pointer;
	margin-left:.5rem;
  background-color: #3f58bd;
}

.locations-container {
  /*display: flex;
  flex-wrap: wrap;*/
  padding-bottom: 6rem;
  margin-bottom: 6rem;
}

.location {
    flex: 1;
    min-width: 300px;
    display: flex;
    background-color: lightgray;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 3rem;
	padding:10px;
}

.location-number {
  min-width: 30px;
  border-right: 1px solid currentColor;
  margin-right: 10px;
  height: calc(100% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left:10px;
  padding-right:10px;
}

.location-name {
  flex: 1;
}

.btn-success {
  background-color: darkgreen;
  color: #fff;
}

.btn-danger {
  background-color: #b41313;
  color: #fff;
}

#submit-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  color: #fff;
  padding: 3rem;
}

.accordion {
  background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 30px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 3rem;
    transition: 0.4s;
    font-weight: bold;
	margin-bottom: 2rem;
	margin-top: 2rem;
}

.accordion .fa {
	float: right;
    font-size: 35px;
    font-weight: bold;
    color: #000;
}

.accordion.active .fa-caret-down:before {
    content: "\f0d8";
}

.accordion.active {
  width:100%;
}

.panel {
    padding: 10px 15px 20px;
    display: none;
    background-color: #eee;
    overflow: hidden;
    width: 100%;
}
@media (min-width:992px){
	.location,
	.accordion{		
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
		margin-top: 0.5rem;
	}
	.accordion{
		padding:10px;
	}
	.btn{
    padding: 1rem 1.5rem;
	line-height:20px;
	}
	#submit-button{
		padding:1rem;
	}
}