.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 95px;
  height: 95px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin-left: 36%;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
body {
    font-family: 'Lato', sans-serif;
	background: url(../img/bk.png);
    background-size: cover;
    background-attachment: fixed;
	background-color: #efefef;
}
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translate3d(0, -50px, 0);
    -ms-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
    -webkit-transition: -webkit-transform .5s ease-out;
    -ms-transition: -webkit-transform .5s ease-out;
    transition: transform .5s ease-out;
    z-index: 9999;
}
.pace.pace-active {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.pace .pace-progress {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 3px;
    background: #5659c9;
    pointer-events: none;
}
.container.status {
    max-width: 700px;
    text-align: center;
    margin-top: 200px;
}
.container.status img {
    background: #fff;
    border-radius: 210px;
    padding: 3px;
    border: 2px solid #4ab3f1;
}
p.speech span {
    display: block;
    color: #5659c9;
    margin-top: 10px;
}
p.speech {
    background: #fff;
    padding: 25px;
    margin: 20px;
    position: relative;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 40px;
}
p.speech:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 15px;
    margin-left: -15px;
}
.btn-subscribe {
    background: #5659c9;
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
}
.btn-subscribe:hover {
    background: #4547af;
    color: #fff;
}
.btn-refresh {
	background: #56c9c5;
	color: #fff;
	padding-left: 15px;
	padding-right: 15px;
}
.btn-refresh:hover {
	background: #51bab5;
	color: #fff;
}
.panel-pokestatus {
    border: 0px;
}
.navbar-pokestatus {
    background: #fff;
    padding: 15px 0;
    margin-bottom: 60px;
}
.navbar-pokestatus .navbar-brand {
    color: #5659c9;
}
.panel-pokestatus .panel-heading,
.panel-pokestatus .panel-footer {
    text-align: center;
    background: #fff;
    padding: 15px 0;
}
.panel-body td {
    padding: 15px 10px!important;
    font-size: 18px;
}
.ad {
    text-align: center;
}
.time {
    background: #fafafa;
    font-size: 65px;
    font-weight: 700;
    color: #5659c9;
    text-align: center;
}
.okay {
    background: #73bf4c;
    font-size: 65px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.unstable {
    background: #F29B34;
    font-size: 65px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.down {
    background: #e55447;
    font-size: 65px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.avg {
    background: #3D8EB9;
    font-size: 65px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.status-okay {
    background: #73bf4c;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    border-radius: 4px;
}
.status-unstable {
    background: #F29B34;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    border-radius: 4px;
}
.status-down {
    background: #e55447;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    border-radius: 4px;
}

/** Status Notifications Model **/
#subscribeModal .modal-content{
	overflow:hidden;
}
h2{
	color:#5659c9;
}
#subscribeModal .form-control {
	height: 56px;
	padding-left:15px;
}
#subscribeModal .left-radius {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}
#subscribeModal .right-radius {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

#subscribeModal .btn {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	padding-right:20px;
	padding-left:20px;
	background:#5659c9;
	border-color:#5659c9;
	font-size: 16px;
}
#subscribeModal .form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #5659c9;
	outline: 0;
	box-shadow: none;
}
.modal-header h2 {
	margin-top: 0;
	margin-bottom: 0;
}
.modal-header .close {
	margin-top: -32px;
	font-size: 30px;
}
.modal-body {
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	font-size: 16px;
}
.ml-auto, .mx-auto {
	margin-left: auto!important;
}
.mr-auto, .mx-auto {
	margin-right: auto!important;
}

.mb-3, .my-3 {
	margin-bottom: 1rem!important;
}

#submitFrmBtn {
	line-height: 24px;
	font-size: 18px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 9px;
	padding-bottom: 9px;
}
.form-control {
	/*float: unset !important;*/
	width: 50% !important;
}
.input-group {
	display: flow-root;
}

.fa-check-square {
	font-size: 28px;
	color:green;
	vertical-align: sub;
	padding-right: 20px;
}
.fa-times-circle {
	font-size: 28px;
	vertical-align: sub;
	padding-right: 20px;
}
.fa-info-circle {
	font-size: 28px;
	vertical-align: sub;
	padding-right: 20px;
	color: #4dabf7;
}
#subscribedBanner, #subscribedErrorBanner, #messageBanner {
	font-size: 16px;
	font-weight: bold;
}
#messageBanner > div > div > div {
	background-color: #fffb9e;
	font-size: 18px;
}
.messagePosted {
	float: left;
    margin-left: 18px;
    margin-top: 3px;
}
.messageText {
	text-align: left;
    margin-left: 180px;
    margin-right: 30px;
}
.messageReply {
	text-align: left;
    margin-left: 16px;
    margin-right: 30px;
	font-size: 16px;
}
.messageReplyText {
	text-align: left;
    margin-left: 160px;
    margin-right: 30px;
}
@media (max-width:767px) {
	.messageText {
		margin-left: 30px;
	}
	.messagePosted {
		margin-right: 100%;
		margin-bottom: 3px;
	}
	.messageReplyText {
		margin-left: 30px;
		margin-right: 10px;
	}
}
#subscribedBanner > div > div > div {
	background-color: #f0e68c;
}
#subscribedErrorBanner > div > div > div {
	background-color: #f08080;
}
/** Mobile Fixes **/

@media only screen and (max-width: 750px) {
    .okay,
    .unstable,
    .down,
    .time,
    .avg {
        font-size: 45px;
    }
    .ad img {
        width: 100%;
    }
    .table-striped th:nth-child(2),
    .table-striped td:nth-child(2) {
        display: none;
    }
}