/* Start Custom CSS */
@import "compass/support";
@import "compass/css3";
@import url('https://fonts.googleapis.com/css?family=Ubuntu');
body {
font-family: 'Ubuntu', sans-serif;
}
/* End Custom CSS */
/* Custom Button Config */
.button {
    background-color: #d61a20; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 25px;

	border-radius: 8px;	
}

iframe {
    width: 100%;
    height: 500px;
}
table, th, td {
    border: 1px solid black;
}
/*  REMOVE ABOUT HEADER
.text-section > h4 {
  display: none;
}

.text-section > p {
  font-weight: bold;
}
 REMOVE ABOUT HEADER */
/* REMOVE PAST INCIDENTS HEADER START
.incidents-list {
  display: none;
}
 REMOVE PAST INCIDENTS HEADER END */

/* CUSTOM LINKS FORMATTING START */
.links-section-header {
  font-weight: 500;
  font-size: 28px;
}
.links-section {
  font-size: 16px;
}
/* CUSTOM LINKS FORMATTING END */

.show-updates-dropdown {
  font color: #ffffff;
}

// The CSS for the colored dot that represents your current status
$red:#e74c3c;
$orange:#e67e22;
$yellow:#f1c40f;
$green:#2ecc71;

.color-dot {
  @include border-radius(99px);
  display:inline-block;
  width:10px;
  height:10px;
  margin-right:5px;
  &.critical {
    background-color:$red;
  }
  &.major {
    background-color:$orange;
  }
  &.minor {
    background-color:$yellow;
  }
  &.none {
    background-color:$green;
  }
}
.meta {
    float:right;
    a {
      color:#888;
    }
  }
/* .incident-history
{
  display: none;
}
.month
{
  display: none;
} */
/* .history-footer-link{ 
  display: none; } */
/* .directions{
  color:#000; } */
/* Hide all updates on the main page */
.update + .update + .update + .update { display: none; }
/* Hide all updates on the incidents page */
.row.update-row + .row.update-row { display: none;}