/**
 * NewsBot specific customizations
 * (c) 2016
 */

div.logo-testimonial {
  margin-top: 10px;
}

ul.logo-testimonial {
  display: inline;
  list-style-type: none;
  padding-right: 20px;
}

img.logo-testimonial {
  border: 0px;
  height: auto;
  width: auto;
  margin-top: 15px;
  margin-right: 20px;
}

img.video {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

iframe.video {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

h2.main-title {
	text-align: center;
}

audio.player {
	padding: 0px;
	margin-top: 20px;
	margin-bottom: 10px;
	width: 100%;
}

.form-control {
	border-bottom-color: rgb(204, 204, 204);
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-left-color: rgb(204, 204, 204);
	border-left-style: solid;
	border-left-width: 1px;
	border-radius: 5px;
	border-top-color: rgb(204, 204, 204);
	border-top-style: solid;
	border-top-width: 1px;
	border-right-color: rgb(204, 204, 204);
	border-right-style: solid;
	border-right-width: 1px;
	
}

.badge {
  position: absolute;
  left: 3px;
  top: 29px;
  background-color: #a453f9;
  -webkit-transform: rotate(-45deg) scale(1) skew(0deg) translate(10px);
  -moz-transform: rotate(-45deg) scale(1) skew(0deg) translate(10px);
  -o-transform: rotate(-45deg) scale(1) skew(0deg) translate(10px);
  -ms-transform: rotate(-45deg) scale(1) skew(0deg) translate(10px);
  transform: rotate(-45deg) scale(1) skew(0deg) translate(10px);
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 110;
  text-transform: uppercase;
  color: white;
  padding: 0 .5em;
  border-top: 0px;
  line-height: 15px;
  margin: 0;
  border-radius: 0px;
}
.badge:after {
    content: ' ';
    position: absolute;
    right: -29px;
    top: 0px;
    border-right: 30px solid #a453f9;
    border-bottom: 15px solid #a453f9;
}
.badge:before {
    content: ' ';
    position: absolute;
    left: -29px;
    top: 0px;
    border-left: 30px solid #a453f9;
    border-bottom: 15px solid #a453f9;
}

.spinner-block {
	height: 50px;
}

.loader {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #a453f9; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
	margin-top: 10px;
	margin-bottom: 10px;
	display: block;
	margin-left: auto;
	margin-right: 0px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}