
/*!**********************************************!*\
  !*** ../src/elements/download/download.scss ***!
  \**********************************************/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.file-download-wrap {
  list-style: none;
  padding: 0;
}
.file-download-wrap .file-download {
  transition: background 200ms;
}
.file-download-wrap .file-download:where(:has(a:hover)) {
  background-color: color(from var(--color-primary) srgb r g b/0.1);
  transition-duration: 0s;
}
.file-download-wrap .file-download .download-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0;
  font-weight: 700;
  gap: 14px;
}
.file-download-wrap .file-download .download-link::before {
  --icon-size: 1.2em;
  content: "";
  flex: 0 0 auto;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: currentcolor;
  mask: url(d65cde9388f35114.svg) no-repeat center center;
  mask-size: contain;
  transition: transform 200ms;
  transform-origin: -10% 50%;
}
.file-download-wrap .file-download .download-link:hover::before {
  transform: scale(1.15);
}

.page-section.style-light .file-download-wrap {
  border-color: rgb(229.6071428571, 235.25, 240.8928571429);
}
.page-section.style-light .file-download {
  border-top-color: rgb(229.6071428571, 235.25, 240.8928571429);
}
.page-section.style-light .file-download:hover .download-link {
  background-color: rgb(229.6071428571, 235.25, 240.8928571429);
}

.page-section.style-primary .file-download-wrap {
  border-color: rgb(26.56, 98.77, 160.19);
}
.page-section.style-primary .file-download {
  border-top-color: rgb(26.56, 98.77, 160.19);
}
.page-section.style-primary .file-download .download-link {
  color: #fff;
}
.page-section.style-primary .file-download:hover .download-link {
  background-color: rgb(26.56, 98.77, 160.19);
}

/*# sourceMappingURL=css-wpce--download.css.map*/