/* Hat-Tip v 1.2
 * https://github.com/jdmdigital/hat-tip
 */
#hattip{
  position: fixed;
  display: none;
  top:0px;
  width: 100%;
  height: auto;
  margin-top: 0!important;
  padding: 15px 90px 15px 30px;
  background-color:rgba(12,21,38,0.90);
  transition: all 0.35s;
  transition-delay: 0.1s;
  z-index: 1200;
  box-sizing: border-box;
  -webkit-user-select: none; /* Chrome/Safari */  
  -moz-user-select: none; /* Firefox */  
  -ms-user-select: none; /* IE/Edge */  
  user-select: none; /* Стандартный синтаксис */  
}
#hattip span, #hattip button{
	color:rgba(255,255,255,0.95);
}
#hattip button{
	position: absolute;
	top: 0;
	right: 0;
  height: 100%;
	padding: 0.75rem 1.25rem;
	background-color: transparent;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 15px 30px;
	float: right;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1;
	text-shadow: 0 1px 0 #fff;
	opacity: .5;
	text-transform: none;
	overflow: visible;
	margin: 0;
	border-radius: 0;
	transition: opacity 0.15s;
}
#hattip button:not(:disabled){
	cursor: pointer;
}
#hattip button:not(:disabled):focus, #hattip button:not(:disabled):not(.disabled):hover {
	opacity: .75;
	text-decoration: none;
	outline: none;
}
#hattip button:not(:disabled):active{
	opacity: 1;
	outline: none;
}

#hattip:hover {
  cursor: no-drop;
}

#hattip.display{
	display: block;
}
#hattip.loud{
	-webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
#hattip.ht-success{
	background-color:rgba(5, 196, 107,0.95);
}
#hattip.ht-info{
	background-color:rgba(13,202,240,0.95);
}
#hattip.ht-danger{
	background-color:rgba(225,27,80,0.95);
}

/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0) scaleY(1.1);
    transform: translate3d(0, -20px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -10px, 0) scaleY(1.01);
    transform: translate3d(0, -10px, 0) scaleY(1.01);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.99);
    transform: translate3d(0, 0, 0) scaleY(0.99);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0) scaleY(1.1);
    transform: translate3d(0, -20px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -10px, 0) scaleY(1.01);
    transform: translate3d(0, -10px, 0) scaleY(1.01);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.99);
    transform: translate3d(0, 0, 0) scaleY(0.99);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
/* #hattip.fire{
	bottom:-1px;
} */
#hattip.fire.loud{
	-webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}
@media screen and (min-width:1170px){
	#hattip #msg{ 
		font-size:1.25rem;
	}
}