/*Original code by zurb.com
https://github.com/zurb/rebeccagrace
Copyright 2018 zurb
Permission to use, copy, modify, and/or distribute this software for any purpose
with or without fee is hereby granted, provided that the above copyright notice and
this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.*/
/* Code modified by Rebecca Grace Designs
Copyright 2019 Rebecca Grace Designs
Slider Name: Original
Slider Description: Twenty Twenty Original */

.rebeccagrace-horizontal .rebeccagrace-handle:before, .rebeccagrace-horizontal .rebeccagrace-handle:after, .rebeccagrace-vertical .rebeccagrace-handle:before, .rebeccagrace-vertical .rebeccagrace-handle:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 30;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.rebeccagrace-horizontal .rebeccagrace-handle:before, .rebeccagrace-horizontal .rebeccagrace-handle:after {
  width: 3px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px;
}

.rebeccagrace-vertical .rebeccagrace-handle:before, .rebeccagrace-vertical .rebeccagrace-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}

.rebeccagrace-before-label, .rebeccagrace-after-label, .rebeccagrace-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.rebeccagrace-before-label, .rebeccagrace-after-label, .rebeccagrace-overlay {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.rebeccagrace-before-label, .rebeccagrace-after-label {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
}

.rebeccagrace-before-label:before, .rebeccagrace-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.rebeccagrace-before-label:before, .rebeccagrace-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.rebeccagrace-horizontal .rebeccagrace-before-label:before, .rebeccagrace-horizontal .rebeccagrace-after-label:before {
  top: 50%;
  margin-top: -19px;
}

.rebeccagrace-vertical .rebeccagrace-before-label:before, .rebeccagrace-vertical .rebeccagrace-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}

.rebeccagrace-left-arrow, .rebeccagrace-right-arrow, .rebeccagrace-up-arrow, .rebeccagrace-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.rebeccagrace-left-arrow, .rebeccagrace-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.rebeccagrace-up-arrow, .rebeccagrace-down-arrow {
  left: 50%;
  margin-left: -6px;
}

.rebeccagrace-container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.rebeccagrace-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}

.rebeccagrace-container.active .rebeccagrace-overlay, .rebeccagrace-container.active :hover.rebeccagrace-overlay {
  background: rgba(0, 0, 0, 0);
}

.rebeccagrace-container.active .rebeccagrace-overlay .rebeccagrace-before-label,
.rebeccagrace-container.active .rebeccagrace-overlay .rebeccagrace-after-label, .rebeccagrace-container.active :hover.rebeccagrace-overlay .rebeccagrace-before-label,
.rebeccagrace-container.active :hover.rebeccagrace-overlay .rebeccagrace-after-label {
  opacity: 0;
}

.rebeccagrace-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.rebeccagrace-before-label {
  opacity: 0;
}

.rebeccagrace-before-label:before {
  content: "Before";
}

.rebeccagrace-after-label {
  opacity: 0;
}

.rebeccagrace-after-label:before {
  content: "After";
}

.rebeccagrace-horizontal .rebeccagrace-before-label:before {
  left: 10px;
}

.rebeccagrace-horizontal .rebeccagrace-after-label:before {
  right: 10px;
}

.rebeccagrace-vertical .rebeccagrace-before-label:before {
  top: 10px;
}

.rebeccagrace-vertical .rebeccagrace-after-label:before {
  bottom: 10px;
}

.rebeccagrace-overlay {
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 25;
}

.rebeccagrace-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.rebeccagrace-overlay:hover .rebeccagrace-after-label {
  opacity: 1;
}

.rebeccagrace-overlay:hover .rebeccagrace-before-label {
  opacity: 1;
}

.rebeccagrace-before {
  z-index: 20;
}

.rebeccagrace-after {
  z-index: 10;
}

.rebeccagrace-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid white;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
}

.rebeccagrace-horizontal .rebeccagrace-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.rebeccagrace-horizontal .rebeccagrace-handle:after {
  top: 50%;
  margin-top: 22px;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.rebeccagrace-vertical .rebeccagrace-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.rebeccagrace-vertical .rebeccagrace-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.rebeccagrace-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

.rebeccagrace-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

.rebeccagrace-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px;
}

.rebeccagrace-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px;
}

/*
     FILE ARCHIVED ON 14:37:22 Jan 22, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 22:49:52 Dec 08, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 1.194 (2)
  exclusion.robots: 0.037 (2)
  exclusion.robots.policy: 0.018 (2)
  esindex: 0.024 (2)
  cdx.remote: 37.728 (2)
  LoadShardBlock: 420.13 (6)
  PetaboxLoader3.datanode: 386.505 (8)
  PetaboxLoader3.resolve: 207.424 (3)
  load_resource: 336.961 (2)
*/