/* fonts */

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-RegularItalic.ttf");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-SemiBoldItalic.ttf");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-BoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'sansation', sans-serif;
}

h1, h2, h3, h4, h5, h6, p, ul {
  margin: 0;
}

.noselect {
  -webkit-user-select: none;
  /* Chrome 49+ */
  -moz-user-select: none;
  /* Firefox 43+ */
  -ms-user-select: none;
  /* No support yet */
  user-select: none;
  /* Likely future */
}
.hide {
  visibility: hidden;
}
/* -- fonts -- */

/* general elements */

.shadow-azure {
  box-shadow: 0 10px 20px -15px rgba(0, 127, 163, 1);
}

.shadow-black {
  box-shadow: 0 10px 20px -15px rgba(0, 0, 0, 0.7);
}

.audio-player {
  width: 100%;
  border-radius: 6px;
}

.video-player {
  width: 100%;
  border-radius: 6px;
}

.bg-white {
  background-color: #fff;
}

.bg-gradient-azure {
  background: rgba(18, 178, 167, 1);
  background: -moz-linear-gradient(-45deg, rgba(18, 178, 167, 1) 0%, rgba(0, 128, 163, 1) 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(18, 178, 167, 1)), color-stop(100%, rgba(0, 128, 163, 1)));
  background: -webkit-linear-gradient(-45deg, rgba(18, 178, 167, 1) 0%, rgba(0, 128, 163, 1) 100%);
  background: -o-linear-gradient(-45deg, rgba(18, 178, 167, 1) 0%, rgba(0, 128, 163, 1) 100%);
  background: -ms-linear-gradient(-45deg, rgba(18, 178, 167, 1) 0%, rgba(0, 128, 163, 1) 100%);
  background: linear-gradient(135deg, rgba(18, 178, 167, 1) 0%, rgba(0, 128, 163, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#12b2a7', endColorstr='#0080a3', GradientType=1);
}

.bg-gradient-pink {
  background: rgba(158, 0, 126, 1);
  background: -moz-linear-gradient(left, rgba(158, 0, 126, 1) 0%, rgba(234, 6, 128, 1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(158, 0, 126, 1)), color-stop(100%, rgba(234, 6, 128, 1)));
  background: -webkit-linear-gradient(left, rgba(158, 0, 126, 1) 0%, rgba(234, 6, 128, 1) 100%);
  background: -o-linear-gradient(left, rgba(158, 0, 126, 1) 0%, rgba(234, 6, 128, 1) 100%);
  background: -ms-linear-gradient(left, rgba(158, 0, 126, 1) 0%, rgba(234, 6, 128, 1) 100%);
  background: linear-gradient(to right, rgba(158, 0, 126, 1) 0%, rgba(234, 6, 128, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9e007e', endColorstr='#ea0680', GradientType=1);
}

.bg-gradient-green {
  background: rgba(132, 189, 0, 1);
  background: -moz-linear-gradient(-45deg, rgba(132, 189, 0, 1) 0%, rgba(0, 134, 56, 1) 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(132, 189, 0, 1)), color-stop(100%, rgba(0, 134, 56, 1)));
  background: -webkit-linear-gradient(-45deg, rgba(132, 189, 0, 1) 0%, rgba(0, 134, 56, 1) 100%);
  background: -o-linear-gradient(-45deg, rgba(132, 189, 0, 1) 0%, rgba(0, 134, 56, 1) 100%);
  background: -ms-linear-gradient(-45deg, rgba(132, 189, 0, 1) 0%, rgba(0, 134, 56, 1) 100%);
  background: linear-gradient(135deg, rgba(132, 189, 0, 1) 0%, rgba(0, 134, 56, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84bd00', endColorstr='#008638', GradientType=1);
}

.bg-gradient-red {
  background: rgba(255, 97, 69, 1);
  background: -moz-linear-gradient(-45deg, rgba(255, 97, 69, 1) 0%, rgba(184, 22, 7, 1) 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(255, 97, 69, 1)), color-stop(100%, rgba(184, 22, 7, 1)));
  background: -webkit-linear-gradient(-45deg, rgba(255, 97, 69, 1) 0%, rgba(184, 22, 7, 1) 100%);
  background: -o-linear-gradient(-45deg, rgba(255, 97, 69, 1) 0%, rgba(184, 22, 7, 1) 100%);
  background: -ms-linear-gradient(-45deg, rgba(255, 97, 69, 1) 0%, rgba(184, 22, 7, 1) 100%);
  background: linear-gradient(135deg, rgba(255, 97, 69, 1) 0%, rgba(184, 22, 7, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6145', endColorstr='#b81607', GradientType=1);
}

.radius {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.logo-stark {
  position: fixed;
  top: 20px;
  left: 20px;
}


.btn-setting {
  height: 60px;
  width: 60px;
  position: fixed;
  border-radius: 50%;
  right: 15px;
  top: 15px;
  cursor: pointer;
  background: url('../img/icon-setting.png') no-repeat center center #fff;
  z-index: 1001;
  /**display:none;  il bottone è nascosto di default **/
}

.feedback-wrapper, .sidemenu-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1001;
  pointer-events: none;
}

.sidemenu-wrapper {
  z-index: 999;
}

.feedback {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 50px;
  margin: 0 0 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.menu-left {
  margin-left: 30px;
  max-width: 115px;
  padding: 20px;
}

.menu-left-item {
  margin-bottom: 15px;
  text-align: center;
  cursor: pointer;
  pointer-events: auto;
}

.menu-left-item:last-child {
  margin-bottom: 0px;
}

.menu-left-item-icon {
  height: 44px;
  width: 44px;
  border-radius: 22px;
  border: 6px solid #ddd;
  display: inline-block;
}

.menu-left-item-category {
  display: block;
  font-size: 14px;
  color: #666;
}
