/* top nav */
body {
  font-family: 'Open Sans', sans-serif;
}
ul {
	list-style-type: none;
}
.timer {
	font-weight: 600;
	font-size: 24px;
  margin: 8px 15px;
}

/* main columns */
.resus-main-columns {
	background-color: #F5FCFF;
	border-bottom: 1px solid #e7e7e7;
	overflow-y: scroll;
	position: absolute;
	top: 50px;
	bottom: 250px;
	left: 0;
	right: 0;
}
.resus-main-columns .resus-col h4 {
	text-align: center;
	margin-bottom: 15px;
}
.resus-col {
	padding: 5px 5px 15px;
}
.resus-col:nth-child(even){
	background-color: #F5FCFF;
}
.resus-col:nth-child(odd){
	background-color: #EDF9FF;
}
.resus-main-columns .resus-col .btn {
	margin: 7px 0;
}
/* force equal column height */
.resus-main-columns .row {
    display: table;
    height: 100%;
}
.resus-main-columns .row [class*="col-"] {
    float: none;
    display: table-cell;
    vertical-align: top;
}


/* event log */
.resus-event-log {
	padding-top: 0;
  padding-bottom: 0;
  background-color: #F8F8F8;
  position: absolute;
  bottom: 0;
  width: 100%;
  height:200px;
  overflow-x:hidden;
  overflow-y:scroll;
}
.resus-event-log ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.resus-event-log .container-fluid {
	padding: 0;
}
.record,
.custom-record {
	padding: 15px
}
.record-title {
	font-weight: 600;
}
.resus-event-log li.ember-view:nth-child(odd){
	background-color: #fff;
}
.resus-event-log li.ember-view:nth-child(even){
	background-color: #f8f8f8;
}
.record-buttons a {
	padding: 0 5px;
}
.record-button {
    display:inline-block;
}
.delete-button {
  color: rgb(255, 134, 134);
}
.delete-button:hover {
  color: rgb(255, 95, 95);
}
.edit-button {
  color: rgb(72, 182, 231);
}
.edit-button:hover {
  color: rgb(52, 155, 202);
}

.team-bar{
	position:absolute;
	bottom:200px;
	height:50px;
	left:0;
	right:0;
	overflow:hidden;
}
.team-bar > div{
	width:100%;
}
.teamMember{
	display:inline-block;
}

.draggableDropzone{
	background-color:#fff;
}

.record{
	clear:both;
}
.record.deleted{
	text-decoration: line-through;
}
.awaiting-status{
	background-color: #FFE7E7;
}

.actionButton.active{
	background-color: #ccf;
}

.button-dropdown-menu{
	display:none;
}
.button-dropdown-menu.show{
	display:block;
}

.dragHover{
	border:red 2px solid;
}


.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}