
.btn_base {
  max-width: 300px;
  width: 100%;
  height: 50px;
  color: black;
  background-color: white;
  border: none;
  outline: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 50px;
  display: block;
  text-align: center;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  opacity: 1;
  transition: all .3s;
  /*box-shadow: rgba(0, 0, 0, .3
  font-family: $font-family-btns;) 0 0px 0px;*/
  outline: none;
}

.btn_base:focus {
  outline: none;
}

.btn_base:hover {
  /*width: 320px;*/
  /*height: 64px;*/
  transform: scale(1.04, 1.04);
  -webkit-transform: scale(1.04, 1.04);
  -moz-transform: scale(1.04, 1.04);
  margin-top: 10px;
  margin-bottom: 10px;
  /*box-shadow: rgba(0,0,0,.4) 0 2px 8px;*/
  outline: none;
}

.btn--bucato {
  background-color: white;
}

.btn {
  &--grad {
    background: $linear-grad-verdeBlu;
    color: white;
  }

  &--grad--viola {
    background: $linear-grad-viola;
  }

  &--ridotto {
    max-width: 170px;
  }

  &--middle {
    max-width: 210px;
  }

  &--bucato__text {
    background: linear-gradient(135deg, #d93e87, #48478b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  &__centrato {
    position: absolute;
    margin: auto;
    top: 12px;
    bottom: 0px;
    right: 0px;
    left: 0px;
  }

  &__play {
    width: 62px;
    height: 62px;
    border: 2px white solid;
    border-radius: 34px;
    margin: auto;
    margin-bottom: 10px;
    background-image: url("../../assets/img/imgHome_10/play.svg");
    background-size: 30% auto;
    background-repeat: no-repeat;
    background-position: 55% 50%;
    &--pieno{
      border: none;
      background-color: rgba(255,255,255,.3);
    }
  }
}

