/* BUTTONS */
.wp-block-button__link {
  position: relative;
  color: var(--wp--preset--color--orange);
  border: 2px solid var(--wp--preset--color--orange);
  background-color: transparent;
  border-radius: 0;
  overflow: hidden;
  margin: 0 !important;
}
.wp-block-button__link::after {
  position: absolute;
  top: 50%;
  right: -20px;
  translate: 50% -50%;
  content: "\f105";
  font: var(--fa-font-sharp-regular);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wp-block-button__link:hover {
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--orange);
}
.wp-block-button__link:hover::after {
  right: 10px;
}
.wp-block-button__link:disabled {
  opacity: 0.5;
}

.is-style-btn-file {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30rem;
          flex: 1 1 30rem;
}
.is-style-btn-file::after {
  content: "";
  position: absolute;
  right: -100%;
  top: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--wp--preset--color--primary);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.is-style-btn-file .wp-block-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: var(--wp--preset--font-size--normal) !important;
  color: var(--wp--preset--color--contrast) !important;
  border: 3px solid var(--wp--preset--color--secondary) !important;
  padding: 0 0 0 1rem !important;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.is-style-btn-file .wp-block-button__link::before {
  content: "\f1c1";
  font-family: var(--fa-style-family-sharp);
  font-weight: 300;
  font-size: 32px;
  line-height: 0;
  color: var(--wp--preset--color--red);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.is-style-btn-file .wp-block-button__link::after {
  all: unset;
  content: "\f019";
  display: block;
  display: grid;
  height: 100%;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--fa-style-family-sharp);
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--primary);
  padding: 16px;
  border-left: 3px solid var(--wp--preset--color--secondary);
  margin-left: auto;
}
.is-style-btn-file .wp-block-button__link:hover {
  background-color: transparent;
}
.is-style-btn-file:hover::after {
  right: 0;
}
.is-style-btn-file:hover .wp-block-button__link, .is-style-btn-file:hover .wp-block-button__link::before {
  color: var(--wp--preset--color--white) !important;
}

@media only screen and (max-width: 920px) {
  .is-style-btn-file .wp-block-button__link {
    gap: 10px;
    padding: 0 0 0 10px !important;
    border-width: 2px !important;
    font-size: var(--wp--preset--font-size--small) !important;
  }
  .is-style-btn-file .wp-block-button__link::before {
    font-size: 20px;
  }
  .is-style-btn-file .wp-block-button__link::after {
    font-size: 17px;
    padding: 16px 10px;
    border-width: 2px !important;
  }
}
.is-style-btn-file:hover .wp-block-button__link.rich-text {
  color: #000 !important;
}
.is-style-btn-file:hover .wp-block-button__link.rich-text::before {
  color: var(--wp--preset--color--red) !important;
}