@import url('https://fonts.googleapis.com/css?family=Raleway');

body {
	background-color: #fff;
	border-top: 4px solid #f1c40f;
	color: #444;
    font-size: 16px;
}

.note {
	font-style: italic;
}

.row {
	margin: 0;	
}

p {
    font-size: 16px;
}

a {
    color: inherit;
    border-bottom: 1px dashed #7f8c8d;
}

a:hover, a:focus, a:active {
    color: #444;
    border-bottom: 1px solid #7f8c8d;
}

button {
    border-radius: 0 !important;
}

.go-back {
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 0;
    background-color: #ecf0f1;
    color: #444;
    font-size: 12px;
    padding: 6px 10px;
    transition: all 0.3s;
}

.go-back.bottom {
    bottom: 35px;
    top: inherit;
}

.code-text {
    font-family: monospace;
    margin: 10px auto 20px auto;
    padding: 10px;
    background: #ecf0f1;
}

.btn-default:hover, .btn-default:focus, .btn-default:active {
    border: none;
}

.btn-primary {
    background-color: #3498db;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #2980b9;
}

#brand {
	text-align: center;
	padding: 20px;
}

#brand img {
	width: 20%;
	max-width: 100px;
    margin-top: 10px;
}

#brand h1 {
	font-size: 38px;
	margin-top: 30px;
}

#brand h4 {
	font-size: 18px;
	font-weight: 400;
}

.row.demo {
	margin: 0 auto 20px auto;
	text-align: center;
}

video {
	margin-top: 10px;
    width: 75%;
	max-width: 800px;
}

.row.action {
	text-align: center;
	margin-bottom: 0;
	padding: 10px;
}

.row.action .add-telegram {
	padding: 22px 30px;
	background-color: #0088cc;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 0;
}

.row.action .add-telegram:hover {
	background-color: #33ace3;
}

.row.action .add-telegram:nth-child(2) {
    
}

.row.action .add-telegram span {
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
    letter-spacing: 2px;
    vertical-align: super;
}

.row.action .add-telegram i {
	margin-right: 20px;
	font-size: 32px;
}

.row.action p {
	margin-bottom: 20px;
}

table.transparency {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.row.table-note {
    margin-top: 40px;
    margin-bottom: 40px;
}

.row.copyright {
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    color: #bdc3c7;
    width: 100%;
}

.row.copyright p {
    font-size: 12px;
    margin-bottom: 24px;
}

.transparency {
    font-size: 12px;
    margin-top: 0;
}


.row.copyright p a {
    border: none;
    padding: 8px 12px;
    border-radius: 0;
    background-color: #ecf0f1;
    color: #7f8c8d;
    margin-right: 10px;
}

.row.copyright p a:hover, .row.copyright p a:focus, .row.copyright p a:active {
    color: #fff;
    background-color: #cacfd2;
    transition: all 0.3s;
}

.donut-container {
    width: 400px;
    position: relative;
    margin: 25px auto;
}

#original_langs_chart {
    width: 70%;
    margin: 0 auto;
}

#original_langs_chart thead tr th {
    text-align: center;
}

.timeline {
    height: 70px;
    position: relative;
    margin-bottom: 25px;
}

.timeline hr {
    margin: 0;
    border-top: 1px solid #000;
    margin-top: 80px;
}

.timeline i {
    position: absolute;
    top: -40px;
    color: rgba(52, 152, 219,.15);
}

#word-cloud {
    width: 100%;
}

#all-titles-list .modal-header {
    background: #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
}

#all-titles-list .modal-body {
    max-height: 75vh;
    overflow: auto;
    padding-top: 5px;
}

#all-titles-list table {
    margin-top: 0;
    margin-bottom: 0;
}

#all-titles-list .table>thead>tr>th {
    border-bottom: none;
}

.post-load {
    opacity: 0;
    transition: all 0.4s;
}



/******************************
* loading spinner from http://tobiasahlin.com/spinkit/
******************************/

.spinner {
  width: 40px;
  height: 40px;

  position: relative;
  margin: 7vh auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 1.0;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce1 {
    background-color: #000;
}

.double-bounce2 {
  background-color: #f1c40f;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}