body { 
    padding-top: 80px; 
    height: 100%;
}

td {
    border: 1px solid #79d9ce;
    width: 25px;
    height: 25px;
}

.key {
	border: 1px solid #79d9ce;
	width: 25px;
    height: 25px;
    margin-right: 10px;
}

ul {
	list-style-type: none;
}

.btn-space {
	margin-right: 20px;
}


#update {
	margin-bottom: 15px; 
	margin-top: 10px;
}

.wall {
	transition : background-color 0.1s ease-in-out;
	background-color: #262b28;
	border-color: #262b28;
}

.none {
	transition : background-color 0.1s ease-in-out;
	background-color: white;
	border-color: #79d9ce;
}

.searching {
	transition : background-color 0.08s ease-in-out;
	background-color: rgba(178, 67, 255, 0.75);
	border-color: rgba(178, 67, 255, 0.75);
	
	
}

.visited {
	transition : background-color 0.08s ease-in-out;
	background-color: #1cd4b5;
	border-color: #1cd4b5;
	
}

.success {
	transition : background-color 0.08s ease-in-out;
	background-color: rgb(255, 254, 106);
	border-color: rgb(255, 254, 106);
}

.start {
	background-image: url("images/start.png");
}

.end {
	background-image: url("images/end.png");
}

#bigTableContainer {
	margin-top: 30px;
}

.custom-section {
	margin-bottom: 20px;
}

#results {
	height: 145px;
	width: 145px;
	background-color: rgb(54, 179, 179);
	color: white;
	font-size: 14px;
	text-align: center;
	border-radius: 10%;
	font-family:Arial, Helvetica, sans-serif;
}

#resultsIcon {
	margin-bottom: 3px;
	margin-top: 7px;
	font-size: 16px;
}

#duration, #length {
	padding: 3px;
}

.alert.alert-info{
	text-align: center;
	background-color: white;
	border: transparent;
}

.social-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: -10px;
}
.social-buttons__button {
	margin: 10px 5px 0;
}
.social-button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	outline: none;
	width: 70px;
	height: 70px;
	text-decoration: none;
	border-radius: 100%;
	background: #fff;
	text-align: center;
}
.social-button::after {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	display: block;
	width: 0;
	height: 0;
	border-radius: 100%;
	transition: 0.3s;
}
.social-button:focus, .social-button:hover {
	color: #fff;
}
.social-button:focus::after, .social-button:hover::after {
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	margin-left: calc(-50% - 1px);
}
.social-button i, .social-button svg {
	position: relative;
	z-index: 1;
	transition: 0.3s;
}
.social-button i {
	font-size: 28px;
}
.social-button svg {
	height: 40%;
	width: 40%;
}
.social-button--gmail {
	color: #0072c6;
}
.social-button--gmail::after {
	background: #0072c6;
}
.social-button--facebook {
	color: #3b5999;
}
.social-button--facebook::after {
	background: #3b5999;
}
.social-button--linkedin {
	color: #0077b5;
}
.social-button--linkedin::after {
	background: #0077b5;
}
.social-button--github {
	color: #6e5494;
}
.social-button--github::after {
	background: #6e5494;
}

.social-button--twitter {
	color: #55acee;
}
.social-button--twitter::after {
	background: #55acee;
}
.social-button--instagram {
	color: #e4405f;
}
.social-button--instagram::after {
	background: #e4405f;
}

.collapsible {
	background-color: transparent;
	cursor: pointer;
	padding: 18px;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
  }
  
  .active, .collapsible:hover {
	background-color: transparent;
  }
  
  .collapsible:after {
	content: '\002B';

	font-weight: bold;
	float: right;
	margin-left: 5px;
  }
  
  .active:after {
	content: "\2212";
  }
  
  .content {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;

  }
  #dragdiv {
	position: absolute;
	z-index: 9;
	text-align: center;
  }
  
  #dragdivheader {
	padding: 10px;
	cursor: move;
	z-index: 10;
  }
