.big-button-relative {
  position: relative;
}

.paragraph--type--spec-celeb-presentation .big-button-relative {
  position: relative;
  margin-left: -3.5rem;
}

#tour-accommodation .big-button-relative {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}


.big-button-wrapper {
  position: absolute;
  top: 46%;
  left: 10%;
  transform: translate(-50%, -50%);
  background-image: url(../img/buttonnoskew.svg);
  background-repeat: no-repeat;
  background-position: 101%;
  background-color: #fff;
  transform: skew(-30deg);
  padding-right: 2rem;
  box-shadow: 6px 15px 9px rgb(0 0 0 / 10%);
  transition: box-shadow 0.3s ease-in-out;
}
  
  
  .big-button-wrapper:hover {
    box-shadow: none;
  }
  
  
  .big-button-wrapper::after{
    position: absolute;
    content: "";
    color: #fff;
    top: 0;
    right: 30px;
    width: 10px;
    height: 100%;
    background: #E30043;
  }

  
  
  .big-button-wrapper:hover:after{
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
    background: #E30043;
    transition: all 35s;
  }
  
  
  
  .big-button-wrapper a {
    display: block;
    width: 10rem;
    height: 2.8rem;
    line-height: 1.9rem;
    font-size: 1rem;
    font-family: 'league-gothic';
    text-decoration: none;
    color: #333;
    letter-spacing: 0.01vw;
    text-align: center;
    position: relative;
    transition: all .35s;
    transform: skew(30deg);
    padding: 0.4rem;
}
  
  .big-btn-text{
    position: relative;
    z-index: 2;
  }
  
  
  
  .big-button-wrapper a:after{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #FB014B;
    transition: all .35s;
    transform: skew(-30deg);
    z-index: -1;
  }
  .acc-link .big-button-wrapper a:after {
    z-index: -1;
  }
  
  
  
  .big-button-wrapper a:hover{
    color: #fff;
  }
  
  
  
  .big-button-wrapper a:hover:after{
    width: 100%;
  }

.t-acc-all a::after,
.tp-all-pricing a::after {
  content: ' \2192';
  font-size: 22px;
  vertical-align: bottom;
}
  .tp-all-pricing a {
  text-decoration: none;
}


/* Important information block */
.import-info-wrapper {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
.import-info-doc {
  padding-top: 13%;
}
.import-info-doc a::after {
  content: ' \2192';
  font-size: 1.5rem;
  vertical-align: unset;
}
.file--mime-application-pdf a::after{
  content: ' \2192';
  font-size: 22px;
  vertical-align: bottom;
}

/* Subscribe */

div.form-item-email-address {
  display: grid;
  grid-template:
      "label button"
      "email button" / 100% 20%;
  grid-column-gap: 0.2rem;
  grid-row-gap: 0.2rem;
  padding-bottom: 0;
}
input.form-email {
  border: 0!important;
  outline: 0;
  background: transparent!important;
  border-bottom: 1px solid var(--rt-red)!important;
  border-radius: 0!important;
  grid-area: email;
}

input.webform-button--submit {
  grid-area: button;
}
.form-item-email-address label {
  grid-area: label;
}