/* #region "../src/elements/instagram/instagram.scss" */
/*
- type: css
*/
/*******************************
 * 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
 ******************************/
.wpce-instagram-feed .FeedLayout__wrapper {
  background-color: transparent !important;
}
.wpce-instagram-feed .FeedGridLayout__cell {
  border-radius: var(--base-radius);
  overflow: hidden;
}
.wpce-instagram-feed .FeedLayout__row-footer {
  gap: 0.5rem;
  flex-wrap: wrap;
}
.wpce-instagram-feed .LoadMoreButton {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  font: inherit;
  line-height: 1;
  letter-spacing: inherit;
  word-spacing: inherit;
  white-space: nowrap;
  background: none;
  color: inherit;
  text-align: left;
  --button-background: var(--form-color, var(--primary));
  --button-color: var(--white);
  --button-color-rgb: var(--white-rgb);
  --button-border-color: var(--button-background);
  --button-hover-background: var(--form-hover, var(--primary-lighter-1));
  --button-hover-color: var(--button-color);
  --button-hover-border-color: var(--button-hover-background);
  --button-active-background: var(--form-active, var(--primary-darker-1));
  --button-active-color: rgb(var(--button-color-rgb) / 90%);
  --button-active-border-color: var(--button-active-background);
  --background: var(--button-background);
  --color: var(--button-color);
  --border-color: var(--button-border-color);
  border: 1px solid var(--border-color);
  background-color: var(--background);
  color: var(--color);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--base-radius);
  white-space: normal;
  transition: background-color 150ms, border-color 150ms, color 150ms;
  border: var(--button-border) !important;
  background-color: var(--background) !important;
  color: var(--color) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
}
.wpce-instagram-feed .LoadMoreButton:where(:not(:disabled):not(.disabled):not(.inert)):hover {
  --background: var(--button-hover-background);
  --color: var(--button-hover-color);
  --border-color: var(--button-hover-border-color);
}
.wpce-instagram-feed .LoadMoreButton:where(:not(:disabled):not(.disabled):not(.inert)):active {
  --background: var(--button-active-background);
  --color: var(--button-active-color);
  --border-color: var(--button-active-border-color);
}
.wpce-instagram-feed .LoadMoreButton:disabled, .wpce-instagram-feed .LoadMoreButton.disabled {
  --background: var(--form-disabled, #D1D1D1);
  --color: var(--form-disabled-text, #B0B0B0);
  --border-color: var(--form-disabled-text, #B0B0B0);
}
:root.no-focus-visible .wpce-instagram-feed .LoadMoreButton:focus {
  outline: 2px solid var(--focus-color, var(--primary));
  outline-offset: var(--focus-offset, 3px);
}

.wpce-instagram-feed .LoadMoreButton:focus:not(:focus-visible) {
  outline: none;
}
.wpce-instagram-feed .LoadMoreButton:focus-visible {
  outline: 2px solid var(--focus-color, var(--primary));
  outline-offset: var(--focus-offset, 3px);
}
.wpce-instagram-feed .LoadMoreButton.style-default, .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]) {
  padding: 0.9375rem 1.6875rem;
  line-height: 1.2;
  /*
   * Adjust colors based on the section / element the button is used in.
   */
}
.page-section.style-primary .wpce-instagram-feed .LoadMoreButton.style-default, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton.style-default, .wpce-instagram-feed .LoadMoreButton.style-default.invert, .page-section.style-primary .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]), .content-box.style-primary .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]), .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).invert {
  --focus-color: var(--white);
  --button-background: var(--white);
  --button-color: var(--black);
  --button-color-rgb: var(--black-rgb);
  --button-hover-color: var(--primary-darker-1);
  --button-hover-background: var(--grey-50);
  --button-active-color: var(--primary-darker-2);
  --button-active-background: var(--grey-100);
}
.page-section.style-primary .wpce-instagram-feed .LoadMoreButton.style-default:disabled, .page-section.style-primary .wpce-instagram-feed .LoadMoreButton.style-default.disabled, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton.style-default:disabled, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton.style-default.disabled, .wpce-instagram-feed .LoadMoreButton.style-default.invert:disabled, .wpce-instagram-feed .LoadMoreButton.style-default.invert.disabled, .page-section.style-primary .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]):disabled, .page-section.style-primary .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).disabled, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]):disabled, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).disabled, .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).invert:disabled, .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).invert.disabled {
  --background: var(--button-background);
  --border-color: var(--button-border-color);
  --color: var(--button-color);
  opacity: 0.6;
}

.wpce-instagram-feed .LoadMoreButton.style-default.with-arrow, .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).with-arrow {
  gap: var(--button-arrow-gap, 0.5rem);
}
.wpce-instagram-feed .LoadMoreButton.style-default.with-arrow::after, .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).with-arrow::after {
  content: "";
  width: 0.6875rem;
  height: 0.625rem;
  margin-bottom: -0.15rem;
  background-color: var(--button-arrow-color, currentColor);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMSAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNS44MiAxMCA0LjcxIDguOTVsMy4zLTMuMThIMFY0LjIzaDguMDFsLTMuMy0zLjE3TDUuODIgMCAxMSA1eiIgZmlsbD0iIzAwMCIvPjwvc3ZnPg==);
  mask-size: 100% 100%;
}
.wpce-instagram-feed .LoadMoreButton.style-default.with-reversed-arrow, .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).with-reversed-arrow {
  gap: var(--button-arrow-gap, 0.5rem);
}
.wpce-instagram-feed .LoadMoreButton.style-default.with-reversed-arrow::before, .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).with-reversed-arrow::before {
  content: "";
  width: 0.6875rem;
  height: 0.625rem;
  margin-bottom: -0.15rem;
  background-color: var(--button-arrow-color, currentColor);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMSAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4xOCAxMCAxLjExLTEuMDUtMy4zLTMuMThIMTFWNC4yM0gyLjk5bDMuMy0zLjE3TDUuMTggMCAwIDV6IiBmaWxsPSIjMDAwIi8+PC9zdmc+);
  mask-size: 100% 100%;
}
.wpce-instagram-feed .LoadMoreButton.style-default.with-dense-padding, .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).with-dense-padding {
  padding: 0.5625rem 0.6875rem;
  line-height: 1.2;
  /*
   * Adjust colors based on the section / element the button is used in.
   */
}
.page-section.style-primary .wpce-instagram-feed .LoadMoreButton.style-default.with-dense-padding, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton.style-default.with-dense-padding, .page-section.style-primary .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).with-dense-padding, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).with-dense-padding {
  --button-background: #fff;
  --button-color: #000;
  --button-hover-background: #f9f9f9;
  --button-active-background: #c9c9c9;
}

.wpce-instagram-feed .LoadMoreButton.style-default.with-dense-padding:is(.with-arrow, .with-reversed-arrow), .wpce-instagram-feed .LoadMoreButton:not([class^=style-]):not([class*=" style-"]).with-dense-padding:is(.with-arrow, .with-reversed-arrow) {
  --button-arrow-gap: 0.5rem;
}
.wpce-instagram-feed .LoadMoreButton.style-text {
  --button-color: var(--form-color, var(--primary));
  --button-hover-color: var(--form-hover, var(--primary-lighter-2));
  --button-active-color: var(--form-active, var(--primary-darker-1));
  background-color: transparent;
  border: none;
  font-size: inherit;
  font-weight: 700;
  text-decoration: none;
  align-self: center;
  /*
  * Adjust colors based on the section / element the button is used in.
  */
}
.page-section.style-primary .wpce-instagram-feed .LoadMoreButton.style-text, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton.style-text {
  --button-color: var(--white);
  --button-hover-color: var(--grey-50);
  --button-active-color: var(--grey-100);
  --focus-color: var(--white);
}

.wpce-instagram-feed .LoadMoreButton.style-text.with-arrow {
  gap: var(--button-arrow-gap, 0.5rem);
}
.wpce-instagram-feed .LoadMoreButton.style-text.with-arrow::after {
  content: "";
  width: 0.6875rem;
  height: 0.625rem;
  margin-bottom: -0.15rem;
  background-color: var(--button-arrow-color, currentColor);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMSAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNS44MiAxMCA0LjcxIDguOTVsMy4zLTMuMThIMFY0LjIzaDguMDFsLTMuMy0zLjE3TDUuODIgMCAxMSA1eiIgZmlsbD0iIzAwMCIvPjwvc3ZnPg==);
  mask-size: 100% 100%;
}
.wpce-instagram-feed .LoadMoreButton.style-text.with-reversed-arrow {
  gap: var(--button-arrow-gap, 0.5rem);
}
.wpce-instagram-feed .LoadMoreButton.style-text.with-reversed-arrow::before {
  content: "";
  width: 0.6875rem;
  height: 0.625rem;
  margin-bottom: -0.15rem;
  background-color: var(--button-arrow-color, currentColor);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMSAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4xOCAxMCAxLjExLTEuMDUtMy4zLTMuMThIMTFWNC4yM0gyLjk5bDMuMy0zLjE3TDUuMTggMCAwIDV6IiBmaWxsPSIjMDAwIi8+PC9zdmc+);
  mask-size: 100% 100%;
}
.wpce-instagram-feed .LoadMoreButton.style-secondary {
  --button-background: transparent;
  --button-color: #000;
  --button-border-color: #000;
  --button-hover-background: var(--button-border-color);
  --button-hover-color: #fff;
  --button-active-background: #000;
  --button-active-color: #fff;
  padding: 0.9375rem 1.6875rem;
  line-height: 1.2;
  border: 1px solid var(--button-border-color);
  /*
  * Adjust colors based on the section / element the button is used in.
  */
}
.page-section.style-primary .wpce-instagram-feed .LoadMoreButton.style-secondary, .page-section.style-dark .wpce-instagram-feed .LoadMoreButton.style-secondary, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton.style-secondary {
  --button-color: var(--white);
  --button-border-color: var(--white);
  --button-hover-color: var(--text-color);
  --button-active-color: var(--text-color);
  --button-active-background: var(--grey-100);
  --focus-color: var(--white);
}

.wpce-instagram-feed .LoadMoreButton.style-secondary.with-arrow {
  gap: var(--button-arrow-gap, 0.5rem);
}
.wpce-instagram-feed .LoadMoreButton.style-secondary.with-arrow::after {
  content: "";
  width: 0.6875rem;
  height: 0.625rem;
  margin-bottom: -0.15rem;
  background-color: var(--button-arrow-color, currentColor);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMSAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNS44MiAxMCA0LjcxIDguOTVsMy4zLTMuMThIMFY0LjIzaDguMDFsLTMuMy0zLjE3TDUuODIgMCAxMSA1eiIgZmlsbD0iIzAwMCIvPjwvc3ZnPg==);
  mask-size: 100% 100%;
}
.wpce-instagram-feed .LoadMoreButton.style-secondary.with-reversed-arrow {
  gap: var(--button-arrow-gap, 0.5rem);
}
.wpce-instagram-feed .LoadMoreButton.style-secondary.with-reversed-arrow::before {
  content: "";
  width: 0.6875rem;
  height: 0.625rem;
  margin-bottom: -0.15rem;
  background-color: var(--button-arrow-color, currentColor);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMSAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4xOCAxMCAxLjExLTEuMDUtMy4zLTMuMThIMTFWNC4yM0gyLjk5bDMuMy0zLjE3TDUuMTggMCAwIDV6IiBmaWxsPSIjMDAwIi8+PC9zdmc+);
  mask-size: 100% 100%;
}
.wpce-instagram-feed .LoadMoreButton.style-secondary.with-dense-padding {
  padding: 0.5625rem 0.6875rem;
  line-height: 1.2;
  /*
   * Adjust colors based on the section / element the button is used in.
   */
}
.page-section.style-primary .wpce-instagram-feed .LoadMoreButton.style-secondary.with-dense-padding, .content-box.style-primary .wpce-instagram-feed .LoadMoreButton.style-secondary.with-dense-padding {
  --button-background: #fff;
  --button-color: #000;
  --button-hover-background: #f9f9f9;
  --button-active-background: #c9c9c9;
}

.wpce-instagram-feed .LoadMoreButton.style-secondary.with-dense-padding:is(.with-arrow, .with-reversed-arrow) {
  --button-arrow-gap: 0.5rem;
}
.wpce-instagram-feed .FollowButton {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.wpce-instagram-feed .FollowButton::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjkuNDUgMEMzNS4yNyAwIDQwIDQuNzMgNDAgMTAuNTV2MTguOUM0MCAzNS4yNyAzNS4yNyA0MCAyOS40NSA0MGgtMTguOUExMC41NiAxMC41NiAwIDAgMSAwIDI5LjQ1di0xOC45QzAgNC43MyA0LjczIDAgMTAuNTUgMGgxOC45Wm0tMy41MSA3LjAzSDE0LjA2YTcuMDQgNy4wNCAwIDAgMC03LjAzIDcuMDN2MTEuODhhNy4wNCA3LjA0IDAgMCAwIDcuMDMgNy4wM2gxMS44OGE3LjA0IDcuMDQgMCAwIDAgNy4wMy03LjAzVjE0LjA2YTcuMDQgNy4wNCAwIDAgMC03LjAzLTcuMDNabTAgMi4zNGE0LjcgNC43IDAgMCAxIDQuNjggNC43djExLjg3YTQuNyA0LjcgMCAwIDEtNC42OCA0LjY4SDE0LjA2YTQuNyA0LjcgMCAwIDEtNC42OC00LjY4VjE0LjA2YTQuNyA0LjcgMCAwIDEgNC42OC00LjY4aDExLjg4Wk0yMCAxNC4xNGE1Ljg3IDUuODcgMCAxIDAgLjAxIDExLjczQTUuODcgNS44NyAwIDAgMCAyMCAxNC4xNFptMCAyLjM0YTMuNTIgMy41MiAwIDEgMSAwIDcuMDQgMy41MiAzLjUyIDAgMCAxIDAtNy4wNFptNi43Mi00LjM3YTEuMTcgMS4xNyAwIDEgMCAwIDIuMzQgMS4xNyAxLjE3IDAgMCAwIDAtMi4zNFoiIGZpbGw9IiNFMzA2MTMiLz48L3N2Zz4=);
}
:root.no-focus-visible .wpce-instagram-feed .FeedLayout__follow-btn .DesignedButton__link:focus {
  outline: 2px solid var(--focus-color, var(--primary));
  outline-offset: var(--focus-offset, 3px);
}

.wpce-instagram-feed .FeedLayout__follow-btn .DesignedButton__link:focus:not(:focus-visible) {
  outline: none;
}
.wpce-instagram-feed .FeedLayout__follow-btn .DesignedButton__link:focus-visible {
  outline: 2px solid var(--focus-color, var(--primary));
  outline-offset: var(--focus-offset, 3px);
}
/* #endregion "../src/elements/instagram/instagram.scss" */

head{--webpack--css-wpce--instagram:&\.\.\/src\/elements\/instagram\/instagram\.scss;}
/*# sourceMappingURL=css-wpce--instagram.css.map*/