
/**/

.activity-search {
	text-align: center;
}
.activity-search h2 {
	font-size: 1.2rem;
	padding: .5rem 0;
}
.activity-search > div > div {
	display: inline-block;
	padding: 0 5px;
}
.activity-search .form-control {
	width: 200px;
	border-radius: 10px;
}
.activity-search .btn {
	border-radius: 10px;
}
.activity-search .btn-primary {
	background: #0c5888;
	border: 1px solid #0c5888;
}

@media (max-width: 991px) {
	.activity-search > div > div {
		display: block;
		padding: 5px 0;
	}
	.activity-search .form-control {
		width: 100%;
	}
}


.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	
	background: rgba(255,255,255,0.8);
	display: none;
}

.loader .center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.dot {
  width: 30px;
  height: 30px;
  border: 2px solid #004a7c;
  border-radius: 50%;
  float: left;
  margin: 0 5px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: fx 1000ms ease infinite 0ms;
          animation: fx 1000ms ease infinite 0ms;
}
.dot:nth-child(2) {
	border: 2px solid #aec94e;
  -webkit-animation: fx 1000ms ease infinite 300ms;
          animation: fx 1000ms ease infinite 300ms;
}
.dot:nth-child(3) {
	border: 2px solid #ef3961;
  -webkit-animation: fx 1000ms ease infinite 600ms;
          animation: fx 1000ms ease infinite 600ms;
}
@-webkit-keyframes fx {
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fx {
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/**/


.filters ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.filters ul li a {
	display: block;
	position: relative;
	padding: 5px 0;
}

.filters ul li.selected a {
	background: #0066b3;
	color: #fff;
	padding: 5px;
}

.filters ul li.selected a:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.filters ul li.selected a:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	
	border-color: rgba(194, 225, 245, 0);
	border-right-color: #0066b3;
	border-width: 17px;
	margin-top: -17px;
}

h3 {
	font-size: 1.2em;
}


#activities-table .md-only {
	display: none;
}



@media (min-width: 992px) {
	#activities-table tr:nth-child(2n) td {
		background: #f1f1f1;
		padding: 10px;
	}
}

@media (max-width: 991px) {
	#activities-table.table {
		border: 0;
	}
	
	
	#activities-table,
	#activities-table caption,
	#activities-table thead,
	#activities-table tbody,
	#activities-table tr,
	#activities-table th,
	#activities-table td {
		display: block;
	}
	
	#activities-table td {
		padding: 10px;
		border-bottom: 1px dotted #ddd;
	}
	
	#activities-table thead {
		display: none;
	}
	
	#activities-table tr {
		border: 1px solid #ddd;
		margin-bottom: 30px;
		
		border-right: 3px solid #4780c3;
		background: #f1f1f1;
	}
	
	#activities-table tr:nth-child(2n) {
		margin-top: -30px;
		padding: 1rem;
	}
	#activities-table .activity-item {
		background: #fff;
		box-shadow: 0 0 15px rgba(0,0,0,0.1);
		padding: 1rem;
	}
	
	#activities-table .md-only {
		display: inline-block;
		font-weight: bold;
	}
}


/**/

#activity-info-table {
	width: 100%;
	margin-bottom: 15px;
}

#activity-info-table tr th,
#activity-info-table tr td {
	border-top: 1px solid #ddd;
	padding: 10px;
	text-align: right;
}

#activity-info-table tr th {
	font-weight: bold;
	width: 200px;
}

#activity-info-table tr td {

}

#activity-info-table tr:nth-child(2n) th,
#activity-info-table tr:nth-child(2n) td {
	background: #f1f1f1;
}

/**/

.modal-body h2 {
	margin-bottom: 30px;
}

.modal-body h3 {
	margin-bottom: 15px;
	color: #e10e79;
	border-bottom: 2px solid #e10e79;
}

/**/

.activity-item h2 {
	font-size: 1.8rem;
	position: relative;
	margin-bottom: 30px;
}

.activity-item h2:after {
	border-style: solid;
    border-width: 2px 0 0;
    content: "";
    display: block;
    height: 0;
    right: 0;
    position: absolute;
    width: 20%;
    max-width: 50px;
    margin-top: 5px;
	color: #b1cb50;
}