* {
  box-sizing: border-box;
}

.clearfix:after, .messages:after {
  content: "";
  display: table;
  clear: both;
  height: 0;
  visibility: hidden;
}

body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Helvetica', 'Arial', sans-serif;
}
.padding-top a {
  color: #fff;
  text-decoration: none;
}
body.active {
  overflow: auto;
}
.conversation {
  padding: 0 30px;
  height: calc(100% - 50px);
  overflow: auto;
  padding-bottom: 0;
}
.tobe {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
}

.messages {
  margin-bottom: 10px;
}
.messages--received .message {
  float: left;
  background-color: #333;
  color: #fff;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
.messages--received .message:first-child {
  border-top-left-radius: 15px;
}
.messages--received .message:last-child {
  border-bottom-left-radius: 15px;
}
.messages--sent .message {
  float: right;
  background-color: #1998e6;
  color: #fff;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.messages--sent .message:first-child {
  border-top-right-radius: 15px;
}
.messages--sent .message:last-child {
  border-bottom-right-radius: 15px;
}

.message {
  display: inline-block;
  margin-bottom: 2px;
  clear: both;
  padding: 7px 13px;
  font-size: 14px;
  border-radius: 15px;
  line-height: 1.4;
}
.message--thumb {
  background-color: transparent !important;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 10px;
  width: 20px;
  height: 20px;
  border-radius: 0px !important;
}

.text-bar {
  height: 50px;
  border-top: 1px solid #ccc;
}
.text-bar__field {
  float: left;
  width: calc(100% - 50px);
  height: 100%;
}
.text-bar__field input {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: none;
  position: relative;
  vertical-align: middle;
  font-size: 14px;
}
.text-bar__thumb {
  float: left;
  width: 50px;
  height: 100%;
  padding: 10px;
}
.text-bar__thumb:hover {
  opacity: 0.8;
}
.text-bar__thumb .thumb {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.thumb {
  display: block;
}

.anim-wiggle {
  -webkit-animation: wiggle 0.2s ease infinite;
          animation: wiggle 0.2s ease infinite;
}

.anim-wiggle-2 {
  -webkit-animation: wiggle2 0.2s ease infinite;
          animation: wiggle2 0.2s ease infinite;
}

@-webkit-keyframes wiggle {
  0% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(2deg);
  }
}

@keyframes wiggle {
  0% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(2deg);
  }
}
@-webkit-keyframes wiggle2 {
  0% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(2deg);
  }
}
@keyframes wiggle2 {
  0% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(2deg);
  }
}
.padding-top {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  font-size: 30px;
  align-items: center;
}
.img {
  display: block;
  width: 100%;
}
.lettera {
  line-height: 1.5em;
  font-weight: lighter;
  padding: 30px;
}
.padding-top .zmdi {
  color: red;
  animation: jump 0.6s linear alternate infinite;
}
@keyframes jump {
  0%   {transform: translate3d(0,30%,0)}
  100% {transform: translate3d(0,-30%,0)}
}

.title-content {
  text-align: center;
}
.title-content p {
  opacity: 0.6;
}

.vinile {
  overflow: hidden;
  margin: 20px auto;
}
audio {
  display: none;
}
.vinyl{
	display:flex;
	align-items:center;
	justify-content:center;
	width:90vw;
  position: relative;
	height:90vw;
  margin: 0 auto;
	border-radius:100%;
	background:linear-gradient(-45deg,#333,black,#555, black,#333);
}
.vinyl.play {
  -webkit-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
  -moz-animation-play-state: spin 4s linear infinite;;
  -o-animation-play-state:  spin 4 linear infinite;;
  animation-play-state: spin  4s linear infinite;;
}
.vinyl.pause {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.vinyl:before,
.vinyl:after{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:repeating-radial-gradient(
	circle at center,
	#222 4px,
	transparent 8px);
	border-radius:50%;
}

.label{
	width:30vw;
	height:30vw;
	border-radius:100%;
	z-index:1;
	background-image:url(images/rino.jpg);
	background-size:100%;
	background-repeat: no-repeat;
}
.label:before{
	content:'';
	position:absolute;
	width:12px;
	height:12px;
	border-radius:100%;
	background-color: #fff;
	margin:auto;
	display:block;
	top:0;left:0;right:0;bottom:0;
}

@keyframes spin {
	to{
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
  to{
		transform: rotate(360deg);
	}

}
@-moz-keyframes spin {
  to{
		transform: rotate(360deg);
	}

}
@-ms-keyframes spin {
  to{
		transform: rotate(360deg);
	}

}
@-o-keyframes spin {
  to{
		transform: rotate(360deg);
	}

}
