@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.elxr_bounce {
  -webkit-animation-name: elxr_bounce;
  animation-name: elxr_bounce;
}

@-webkit-keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.elxr_flash {
  -webkit-animation-name: elxr_flash;
  animation-name: elxr_flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_pulse {
  -webkit-animation-name: elxr_pulse;
  animation-name: elxr_pulse;
}

@-webkit-keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_rubberBand {
  -webkit-animation-name: elxr_rubberBand;
  animation-name: elxr_rubberBand;
}

@-webkit-keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.elxr_shake {
  -webkit-animation-name: elxr_shake;
  animation-name: elxr_shake;
}

@-webkit-keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.elxr_swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: elxr_swing;
  animation-name: elxr_swing;
}

@-webkit-keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.elxr_tada {
  -webkit-animation-name: elxr_tada;
  animation-name: elxr_tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.elxr_wobble {
  -webkit-animation-name: elxr_wobble;
  animation-name: elxr_wobble;
}

@-webkit-keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_bounceIn {
  -webkit-animation-name: elxr_bounceIn;
  animation-name: elxr_bounceIn;
}

@-webkit-keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bounceInDown {
  -webkit-animation-name: elxr_bounceInDown;
  animation-name: elxr_bounceInDown;
}

@-webkit-keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bounceInLeft {
  -webkit-animation-name: elxr_bounceInLeft;
  animation-name: elxr_bounceInLeft;
}

@-webkit-keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bounceInRight {
  -webkit-animation-name: elxr_bounceInRight;
  animation-name: elxr_bounceInRight;
}

@-webkit-keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bounceInUp {
  -webkit-animation-name: elxr_bounceInUp;
  animation-name: elxr_bounceInUp;
}

@-webkit-keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.elxr_bounceOut {
  -webkit-animation-name: elxr_bounceOut;
  animation-name: elxr_bounceOut;
}

@-webkit-keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_bounceOutDown {
  -webkit-animation-name: elxr_bounceOutDown;
  animation-name: elxr_bounceOutDown;
}

@-webkit-keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_bounceOutLeft {
  -webkit-animation-name: elxr_bounceOutLeft;
  animation-name: elxr_bounceOutLeft;
}

@-webkit-keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_bounceOutRight {
  -webkit-animation-name: elxr_bounceOutRight;
  animation-name: elxr_bounceOutRight;
}

@-webkit-keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_bounceOutUp {
  -webkit-animation-name: elxr_bounceOutUp;
  animation-name: elxr_bounceOutUp;
}

@-webkit-keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.elxr_fadeIn {
  -webkit-animation-name: elxr_fadeIn;
  animation-name: elxr_fadeIn;
}

@-webkit-keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInDown {
  -webkit-animation-name: elxr_fadeInDown;
  animation-name: elxr_fadeInDown;
}

@-webkit-keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInDownBig {
  -webkit-animation-name: elxr_fadeInDownBig;
  animation-name: elxr_fadeInDownBig;
}

@-webkit-keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInLeft {
  -webkit-animation-name: elxr_fadeInLeft;
  animation-name: elxr_fadeInLeft;
}

@-webkit-keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInLeftBig {
  -webkit-animation-name: elxr_fadeInLeftBig;
  animation-name: elxr_fadeInLeftBig;
}

@-webkit-keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInRight {
  -webkit-animation-name: elxr_fadeInRight;
  animation-name: elxr_fadeInRight;
}

@-webkit-keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInRightBig {
  -webkit-animation-name: elxr_fadeInRightBig;
  animation-name: elxr_fadeInRightBig;
}

@-webkit-keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInUp {
  -webkit-animation-name: elxr_fadeInUp;
  animation-name: elxr_fadeInUp;
}

@-webkit-keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInUpBig {
  -webkit-animation-name: elxr_fadeInUpBig;
  animation-name: elxr_fadeInUpBig;
}

@-webkit-keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.elxr_fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.elxr_fadeOutDown {
  -webkit-animation-name: elxr_fadeOutDown;
  animation-name: elxr_fadeOutDown;
}

@-webkit-keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_fadeOutDownBig {
  -webkit-animation-name: elxr_fadeOutDownBig;
  animation-name: elxr_fadeOutDownBig;
}

@-webkit-keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.elxr_fadeOutLeft {
  -webkit-animation-name: elxr_fadeOutLeft;
  animation-name: elxr_fadeOutLeft;
}

@-webkit-keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_fadeOutLeftBig {
  -webkit-animation-name: elxr_fadeOutLeftBig;
  animation-name: elxr_fadeOutLeftBig;
}

@-webkit-keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.elxr_fadeOutRight {
  -webkit-animation-name: elxr_fadeOutRight;
  animation-name: elxr_fadeOutRight;
}

@-webkit-keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_fadeOutRightBig {
  -webkit-animation-name: elxr_fadeOutRightBig;
  animation-name: elxr_fadeOutRightBig;
}

@-webkit-keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.elxr_fadeOutUp {
  -webkit-animation-name: elxr_fadeOutUp;
  animation-name: elxr_fadeOutUp;
}

@-webkit-keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_fadeOutUpBig {
  -webkit-animation-name: elxr_fadeOutUpBig;
  animation-name: elxr_fadeOutUpBig;
}

@-webkit-keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.elxr_flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: elxr_flip;
  animation-name: elxr_flip;
}

@-webkit-keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.elxr_flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_flipInX;
  animation-name: elxr_flipInX;
}

@-webkit-keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.elxr_flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_flipInY;
  animation-name: elxr_flipInY;
}

@-webkit-keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.elxr_flipOutX {
  -webkit-animation-name: elxr_flipOutX;
  animation-name: elxr_flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.elxr_flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_flipOutY;
  animation-name: elxr_flipOutY;
}

@-webkit-keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.elxr_lightSpeedIn {
  -webkit-animation-name: elxr_lightSpeedIn;
  animation-name: elxr_lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.elxr_lightSpeedOut {
  -webkit-animation-name: elxr_lightSpeedOut;
  animation-name: elxr_lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateIn {
  -webkit-animation-name: elxr_rotateIn;
  animation-name: elxr_rotateIn;
}

@-webkit-keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInDownLeft {
  -webkit-animation-name: elxr_rotateInDownLeft;
  animation-name: elxr_rotateInDownLeft;
}

@-webkit-keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInDownRight {
  -webkit-animation-name: elxr_rotateInDownRight;
  animation-name: elxr_rotateInDownRight;
}

@-webkit-keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInUpLeft {
  -webkit-animation-name: elxr_rotateInUpLeft;
  animation-name: elxr_rotateInUpLeft;
}

@-webkit-keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInUpRight {
  -webkit-animation-name: elxr_rotateInUpRight;
  animation-name: elxr_rotateInUpRight;
}

@-webkit-keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.elxr_rotateOut {
  -webkit-animation-name: elxr_rotateOut;
  animation-name: elxr_rotateOut;
}

@-webkit-keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.elxr_rotateOutDownLeft {
  -webkit-animation-name: elxr_rotateOutDownLeft;
  animation-name: elxr_rotateOutDownLeft;
}

@-webkit-keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.elxr_rotateOutDownRight {
  -webkit-animation-name: elxr_rotateOutDownRight;
  animation-name: elxr_rotateOutDownRight;
}

@-webkit-keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.elxr_rotateOutUpLeft {
  -webkit-animation-name: elxr_rotateOutUpLeft;
  animation-name: elxr_rotateOutUpLeft;
}

@-webkit-keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.elxr_rotateOutUpRight {
  -webkit-animation-name: elxr_rotateOutUpRight;
  animation-name: elxr_rotateOutUpRight;
}

@-webkit-keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_slideInDown {
  -webkit-animation-name: elxr_slideInDown;
  animation-name: elxr_slideInDown;
}

@-webkit-keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_slideInLeft {
  -webkit-animation-name: elxr_slideInLeft;
  animation-name: elxr_slideInLeft;
}

@-webkit-keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_slideInRight {
  -webkit-animation-name: elxr_slideInRight;
  animation-name: elxr_slideInRight;
}

@-webkit-keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_slideOutLeft {
  -webkit-animation-name: elxr_slideOutLeft;
  animation-name: elxr_slideOutLeft;
}

@-webkit-keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_slideOutRight {
  -webkit-animation-name: elxr_slideOutRight;
  animation-name: elxr_slideOutRight;
}

@-webkit-keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_slideOutUp {
  -webkit-animation-name: elxr_slideOutUp;
  animation-name: elxr_slideOutUp;
}

@-webkit-keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_slideInUp {
  -webkit-animation-name: elxr_slideInUp;
  animation-name: elxr_slideInUp;
}

@-webkit-keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_slideOutDown {
  -webkit-animation-name: elxr_slideOutDown;
  animation-name: elxr_slideOutDown;
}

@-webkit-keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.elxr_hinge {
  -webkit-animation-name: elxr_hinge;
  animation-name: elxr_hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.elxr_rollIn {
  -webkit-animation-name: elxr_rollIn;
  animation-name: elxr_rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.elxr_rollOut {
  -webkit-animation-name: elxr_rollOut;
  animation-name: elxr_rollOut;
}

@-webkit-keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.elxr_zoomIn {
  -webkit-animation-name: elxr_zoomIn;
  animation-name: elxr_zoomIn;
}

@-webkit-keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInDown {
  -webkit-animation-name: elxr_zoomInDown;
  animation-name: elxr_zoomInDown;
}

@-webkit-keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInLeft {
  -webkit-animation-name: elxr_zoomInLeft;
  animation-name: elxr_zoomInLeft;
}

@-webkit-keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInRight {
  -webkit-animation-name: elxr_zoomInRight;
  animation-name: elxr_zoomInRight;
}

@-webkit-keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInUp {
  -webkit-animation-name: elxr_zoomInUp;
  animation-name: elxr_zoomInUp;
}

@-webkit-keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

.elxr_zoomOut {
  -webkit-animation-name: elxr_zoomOut;
  animation-name: elxr_zoomOut;
}

@-webkit-keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.elxr_zoomOutDown {
  -webkit-animation-name: elxr_zoomOutDown;
  animation-name: elxr_zoomOutDown;
}

@-webkit-keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.elxr_zoomOutLeft {
  -webkit-animation-name: elxr_zoomOutLeft;
  animation-name: elxr_zoomOutLeft;
}

@-webkit-keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.elxr_zoomOutRight {
  -webkit-animation-name: elxr_zoomOutRight;
  animation-name: elxr_zoomOutRight;
}

@-webkit-keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

.elxr_zoomOutUp {
  -webkit-animation-name: elxr_zoomOutUp;
  animation-name: elxr_zoomOutUp;
}



@charset "UTF-8";/*!
Magic - http://minimamente.com
Licensed under the MIT license

Copyright (c) 2014 Christian Pucci

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.magictime {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.elxr_elxr_perspectiveDownRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveDownRetourn;
  -moz-animation-name: elxr_perspectiveDownRetourn;
  -ms-animation-name: elxr_perspectiveDownRetourn;
  -o-animation-name: elxr_perspectiveDownRetourn;
  animation-name: elxr_perspectiveDownRetourn;
}
.elxr_elxr_perspectiveLeftRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveLeftRetourn;
  -moz-animation-name: elxr_perspectiveLeftRetourn;
  -ms-animation-name: elxr_perspectiveLeftRetourn;
  -o-animation-name: elxr_perspectiveLeftRetourn;
  animation-name: elxr_perspectiveLeftRetourn;
}
.elxr_elxr_perspectiveRightRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveRightRetourn;
  -moz-animation-name: elxr_perspectiveRightRetourn;
  -ms-animation-name: elxr_perspectiveRightRetourn;
  -o-animation-name: elxr_perspectiveRightRetourn;
  animation-name: elxr_perspectiveRightRetourn;
}
.elxr_elxr_perspectiveUpRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveUpRetourn;
  -moz-animation-name: elxr_perspectiveUpRetourn;
  -ms-animation-name: elxr_perspectiveUpRetourn;
  -o-animation-name: elxr_perspectiveUpRetourn;
  animation-name: elxr_perspectiveUpRetourn;
}
.elxr_elxr_puffIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
  -webkit-animation-fill-mode: none;
  -moz-animation-fill-mode: none;
  -ms-animation-fill-mode: none;
  -o-animation-fill-mode: none;
  animation-fill-mode: none;
}
.elxr_elxr_twisterInUp {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_twisterInUp;
  -moz-animation-name: elxr_twisterInUp;
  -ms-animation-name: elxr_twisterInUp;
  -o-animation-name: elxr_twisterInUp;
  animation-name: elxr_twisterInUp;
}
.elxr_elxr_vanishIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_vanishIn;
  -moz-animation-name: elxr_vanishIn;
  -ms-animation-name: elxr_vanishIn;
  -o-animation-name: elxr_vanishIn;
  animation-name: elxr_vanishIn;
}
.elxr_elxr_tinRightIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinRightIn;
  -moz-animation-name: elxr_tinRightIn;
  -ms-animation-name: elxr_tinRightIn;
  -o-animation-name: elxr_tinRightIn;
  animation-name: elxr_tinRightIn;
}
.elxr_elxr_tinLeftIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinLeftIn;
  -moz-animation-name: elxr_tinLeftIn;
  -ms-animation-name: elxr_tinLeftIn;
  -o-animation-name: elxr_tinLeftIn;
  animation-name: elxr_tinLeftIn;
}


@-moz-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_puffIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1,1);
    filter: blur(0px);
  }
}
@-moz-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-webkit-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-o-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-ms-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {;
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 0 0;
    -ms-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-moz-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-webkit-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-o-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-moz-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}


html.ncd-photo-lock{
	overflow: hidden;
}
a[data-photo-group]{
	cursor:pointer;
}
.ncd-photo *{
	padding: 0;
	margin: 0;
	list-style: none;
}
.ncd-photo *,
.ncd-photo *:before,
.ncd-photo *:after{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.ncd-photo .cf:after {
  content: "";
  display: table;
  clear: both;
}
.ncd-photo .ncd-photo{
	display: none;
}
.ncd-photo ul{
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
}
.ncd-photo ul:after {
	content: "";
	display: table;
	clear: both;
}
.ncd-photo li{
	cursor: zoom-in;
	line-height: 0;
}
.ncd-photo li.hide{
	display: none !important;
}
.ncd-photo li div{
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transition: -webkit-box-shadow 150ms ease-out;
	-moz-transition: -moz-box-shadow 150ms ease-out;
	transition: box-shadow 150ms ease-out;
	-webkit-box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
	-moz-box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.ncd-photo li img{
	position: relative;
	z-index: 10;
	-webkit-transform: -webkit-translateZ(0);
	-moz-transform: -moz-translateZ(0);
	transform: translateZ(0);
}
.ncd-photo ul p{
	display: inline-block;
	z-index: 30;
	font-variant: normal;
	position: absolute;
	line-height: 1.4;
	margin: 0 0 10px;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transform: -webkit-translateZ(0);
	-moz-transform: -moz-translateZ(0);
	transform: translateZ(0);
	-webkit-touch-callout:none;}

.ncd-photo ul p b{
	font-weight: normal;
	font-style: normal;
	padding-right: 3px;
}
.ncd-photo ul p em{
	font-weight: normal;
	font-style: normal;
}
.ncd-photo ul p span{
	display: inline-block;
	padding: 6px 12px;
}
.ncd-photo ul p span.empty{
	visibility: hidden;
}

.ncd-photo[data-italic-title="True"] p b,
.ncd-photo[data-italic-caption="True"] p em{ font-style: italic; }

.ncd-photo[data-bold-title="True"] p b,
.ncd-photo[data-bold-caption="True"] p em{ font-weight: bold; }

.ncd-photo[data-hide-title="True"] p b,
.ncd-photo[data-hide-caption="True"] p em,
.ncd-photo[data-hide-title="True"][data-hide-caption="True"] p{ display: none; }

.ncd-photo[data-hide-caption="True"] ul p b{padding-right: 0;}

/* Caption Positions */

.ncd-photo ul.cap-hov li p{
	opacity: 0;
	-webkit-transition: -webkit-transform 300ms, opacity 300ms;
	-moz-transition: -moz-transform 300ms, opacity 300ms;
	transition: transform 300ms, opacity 300ms;
	-webkit-transform: -webkit-translate3d(0,4px,0);
	-moz-transform: -moz-translate3d(0,4px,0);
	transform: translate3d(0,4px,0); 
}
.ncd-photo ul.cap-hov li:hover p{
	opacity: 1;
	-webkit-transform: -webkit-translate3d(0,0,0);
	-moz-transform: -moz-translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.ncd-photo ul.cap-hide li p{
	display: none !important;
}
.ncd-photo ul.cap-ibl p,
.ncd-photo ul.cap-ibc p{
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	text-align: left;
}
.ncd-photo ul.cap-ibl p span,
.ncd-photo ul.cap-ibc p span{
	display: block;
}
.ncd-photo ul.cap-imbl p,
.ncd-photo ul.cap-imbc p{
	left: 20px;
	bottom: 10px;
	right: 20px;
	text-align: left;
}
.ncd-photo ul.cap-ibc p,
.ncd-photo ul.cap-imbc p{
	text-align: center;
}
.ncd-photo ul.cap-imbl p span,
.ncd-photo ul.cap-imbc p span{
	border-radius: 3px;
}

/* FLOW Thumbnails */

.ncd-photo.photo-flow {
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: .85em;
	-moz-column-count: 1;
	-webkit-column-count: 1;
	column-count: 1;
}
.ncd-photo.photo-flow li div{
	display: inline-block;
	width: 100%;
	background: none !important;
}
.ncd-photo.photo-flow li div:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	content: "";
	display: block;
	-webkit-transition: box-shadow 150ms ease-out;
	-moz-transition: box-shadow 150ms ease-out;
	transition: box-shadow 150ms ease-out;
	-webkit-box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
	-moz-box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.ncd-photo.photo-flow li img {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
}
.ncd-photo.photo-flow ul.cap-ibl li p,
.ncd-photo.photo-flow ul.cap-ibc li p{
	-webkit-transform: -webkit-translate3d(0,0,0);
	-moz-transform: -moz-translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* Spacing Thumbnails */

.ncd-photo.space-0.photo-grid{margin: 0;}
.ncd-photo.space-0.photo-grid li div{margin: 0;}
.ncd-photo.space-0.photo-flow li div{margin: 0;}
.ncd-photo.space-0.photo-flow {
	-moz-column-gap: 0;
	-webkit-column-gap: 0;
	column-gap: 0;
}

.ncd-photo.space-1.photo-grid{margin: 0 -1px;}
.ncd-photo.space-1.photo-grid li div{margin: 1px;}
.ncd-photo.space-1.photo-flow li div{margin: 0 0 2px;}
.ncd-photo.space-1.photo-flow {
	-moz-column-gap: 2px;
	-webkit-column-gap: 2px;
	column-gap: 2px;
}
.ncd-photo.space-3.photo-grid{margin: 0 -3px;}
.ncd-photo.space-3.photo-grid li div{margin: 3px;}
.ncd-photo.space-3.photo-flow li div{margin: 0 0 6px;}
.ncd-photo.space-3.photo-flow {
	-moz-column-gap: 6px;
	-webkit-column-gap: 6px;
	column-gap: 6px;
}
.ncd-photo.space-5.photo-grid{margin: 0 -5px;}
.ncd-photo.space-5.photo-grid li div{margin: 5px;}
.ncd-photo.space-5.photo-flow li div{margin: 0 0 10px;}
.ncd-photo.space-5.photo-flow {
	-moz-column-gap: 10px;
	-webkit-column-gap: 10px;
	column-gap: 10px;
}
.ncd-photo.space-7.photo-grid{margin: 0 -7px;}
.ncd-photo.space-7.photo-grid li div{margin: 7px;}
.ncd-photo.space-7.photo-flow li div{margin: 0 0 14px;}
.ncd-photo.space-7.photo-flow {
	-moz-column-gap: 14px;
	-webkit-column-gap: 14px;
	column-gap: 14px;
}
.ncd-photo.space-9.photo-grid{margin: 0 -9px;}
.ncd-photo.space-9.photo-grid li div{margin: 9px;}
.ncd-photo.space-9.photo-flow li div{margin: 0 0 18px;}
.ncd-photo.space-9.photo-flow {
	-moz-column-gap: 18px;
	-webkit-column-gap: 18px;
	column-gap: 18px;
}

.ncd-photo.space-11.photo-grid{margin: 0 -11px;}
.ncd-photo.space-11.photo-grid li div{margin: 11px;}
.ncd-photo.space-11.photo-flow li div{margin: 0 0 22px;}
.ncd-photo.space-11.photo-flow {
	-moz-column-gap: 22px;
	-webkit-column-gap: 22px;
	column-gap: 22px;
}

.ncd-photo.space-13.photo-grid{margin: 0 -13px;}
.ncd-photo.space-13.photo-grid li div{margin: 13px;}
.ncd-photo.space-13.photo-flow li div{margin: 0 0 26px;}
.ncd-photo.space-13.photo-flow {
	-moz-column-gap: 26px;
	-webkit-column-gap: 26px;
	column-gap: 26px;
}

.ncd-photo.space-15.photo-grid{margin: 0 -15px;}
.ncd-photo.space-15.photo-grid li div{margin: 15px;}
.ncd-photo.space-15.photo-flow li div{margin: 0 0 30px;}
.ncd-photo.space-15.photo-flow {
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}

/* GRID Thumbnails */

.ncd-photo.photo-grid li{
	line-height: 0;
	float: left;
	display: block;
	position: relative;
	height: auto;
}
.ncd-photo.photo-grid li div{
	overflow: hidden;
}
.ncd-photo.photo-grid img{
	visibility: hidden;
	position: absolute;
	top: -9999px;
	left: -9999px;
}
.ncd-photo.photo-grid ul li div:after{
	padding-top: 100%;
	display: block;
	content: '';
}
.ncd-photo.photo-col-1.photo-grid li,
.ncd-photo.photo-col-2.photo-grid li,
.ncd-photo.photo-col-3.photo-grid li,
.ncd-photo.photo-col-4.photo-grid li,
.ncd-photo.photo-col-5.photo-grid li{width: 100%;}

/* Thumbnail Radius */

.ncd-photo.rad-0 li div,
.ncd-photo.rad-0.photo-flow li div:before,
.ncd-photo.rad-0.photo-flow li img,
.ncd-photo.rad-0.photo-flow li div{border-radius:  0;}
.ncd-photo.rad-0 ul.cap-ibl p span,
.ncd-photo.rad-0 ul.cap-ibc p span{border-radius: 0; }

.ncd-photo.rad-3 li div,
.ncd-photo.rad-3.photo-flow li div:before,
.ncd-photo.rad-3.photo-flow li img,
.ncd-photo.rad-3.photo-flow li div{border-radius:  3px;}
.ncd-photo.rad-3 ul.cap-ibl p span,
.ncd-photo.rad-3 ul.cap-ibc p span{border-radius: 0 0 3px 3px; }

.ncd-photo.rad-5 li div,
.ncd-photo.rad-5.photo-flow li div:before,
.ncd-photo.rad-5.photo-flow li img,
.ncd-photo.rad-5.photo-flow li div{border-radius:  5px;}
.ncd-photo.rad-5 ul.cap-ibl p span,
.ncd-photo.rad-5 ul.cap-ibc p span{border-radius: 0 0 5px 5px; }

.ncd-photo.rad-7 li div,
.ncd-photo.rad-7.photo-flow li div:before,
.ncd-photo.rad-7.photo-flow li img,
.ncd-photo.rad-7.photo-flow li div{border-radius:  7px;}
.ncd-photo.rad-7 ul.cap-ibl p span,
.ncd-photo.rad-7 ul.cap-ibc p span{border-radius: 0 0 7px 7px; }

/* Break Points for Columns */

@media only screen and (min-width: 400px) {

	.ncd-photo.photo-col-1.photo-grid li,
	.ncd-photo.photo-col-2.photo-grid li,
	.ncd-photo.photo-col-3.photo-grid li,
	.ncd-photo.photo-col-4.photo-grid li,
	.ncd-photo.photo-col-5.photo-grid li{width: 100%;}

	.ncd-photo.photo-col-1.photo-flow,
	.ncd-photo.photo-col-2.photo-flow,
	.ncd-photo.photo-col-3.photo-flow,
	.ncd-photo.photo-col-4.photo-flow,
	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}

@media only screen and (min-width: 550px) {

	.ncd-photo.photo-col-2.photo-grid li,
	.ncd-photo.photo-col-3.photo-grid li,
	.ncd-photo.photo-col-4.photo-grid li,
	.ncd-photo.photo-col-5.photo-grid li{width: 50%;}

	.ncd-photo.photo-col-2.photo-flow,
	.ncd-photo.photo-col-3.photo-flow,
	.ncd-photo.photo-col-4.photo-flow,
	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
	}
}

@media only screen and (min-width: 750px) {
	.ncd-photo.photo-col-3.photo-grid li,
	.ncd-photo.photo-col-4.photo-grid li,
	.ncd-photo.photo-col-5.photo-grid li{width: 33.3333%;}

	.ncd-photo.photo-col-3.photo-flow,
	.ncd-photo.photo-col-4.photo-flow,
	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}

@media only screen and (min-width: 950px) {
	.ncd-photo.photo-col-4.photo-grid li,
	.ncd-photo.photo-col-5.photo-grid li{width: 25%;}

	.ncd-photo.photo-col-4.photo-flow,
	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 4;
		-webkit-column-count: 4;
		column-count: 4;
	}
}

@media only screen and (min-width: 1200px) {
	.ncd-photo.photo-col-5.photo-grid li{width: 20%;}

	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 5;
		-webkit-column-count: 5;
		column-count: 5;
	}
}

.batch-hide{
	position: absolute;
	opacity: 0;
	top:-9999px;
	left:-9999px;
}
@media only screen and (max-width: 400px) {
	.ncd-photo ul p{
		opacity: 0 !important;
	}
}

/* Captions Under Flow */

.ncd-photo.photo-flow.cap-under ul p,
.ncd-photo.photo-flow.cap-under ul p span{
position: static;
display: block;
margin-bottom: 0;
}

.ncd-photo.photo-flow.cap-under ul p span{
border-top-right-radius: 0 !important;
border-top-left-radius: 0 !important;
padding: 10px;
}

.ncd-photo.photo-flow.cap-under ul img{
border-bottom-right-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
	
.ncd-photo.photo-flow.cap-under li div{
-webkit-box-shadow: none;
box-shadow: none;
}

/* Lightbox */

#ncdPhotoLoader{
position: absolute;
color: #ff0000;
top: 50%;
left: 50%;
opacity: 0;
-webkit-transition: opacity 350ms 150ms;
-moz-transition: opacity 350ms 150ms;
transition: opacity 350ms 150ms;
-webkit-transform: translate3d(-50%, -50%, 0);
-moz-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
}
#ncdPhotoLoader.processing{
	opacity: 1;
}
#ncdPhotoLoader.processing #ncdPhotoLoaderSpinner{
	height: 44px;
	width: 44px;
	margin: 0 auto;
	position: relative;
	-webkit-animation: rotation .6s infinite linear;
	-moz-animation: rotation .6s infinite linear;
	-o-animation: rotation .6s infinite linear;
	animation: rotation .6s infinite linear;
	border-radius: 100%;
}
@-webkit-keyframes rotation {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
	from {-moz-transform: rotate(0deg);}
	to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
	from {-o-transform: rotate(0deg);}
	to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
}

#ncdPhotoBase {
	position: fixed;
	top: -9999px;
	left: -9999px;
	width: 100%;
	height: 100%;
	z-index: 10;
	opacity: 0;
	-webkit-transition: opacity 300ms 0ms, top 0ms 300ms, left 0ms 300ms;
	-moz-transition: opacity 300ms 0ms, top 0ms 300ms, left 0ms 300ms;
	transition: opacity 300ms 0ms, top 0ms 300ms, left 0ms 300ms;
	user-select: none;}

#ncdPhotoBase *,
#ncdPhotoBase *:before,
#ncdPhotoBase *:after{
	box-sizing: border-box;
}

#ncdPhotoBase.on {
	top: 0;
	left: 0;
	opacity: 1;
	z-index: 10000;
	-webkit-transition: 
		opacity 150ms ease-out,
		top 0ms ease-out,
		left 0ms ease-out;
	-moz-transition: 
		opacity 150ms ease-out,
		top 0ms ease-out,
		left 0ms ease-out;
	transition: 
		opacity 150ms ease-out,
		top 0ms ease-out,
		left 0ms ease-out;}
#ncdPhotoBase.out {
	z-index: 10000;
}
.ncdPhotoZoom,
.ncdPhotoClose,
.ncdPhotoNext,
.ncdPhotoPrev {
	z-index: 100;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	cursor: pointer;
	position: absolute;
	border: 2px solid transparent;
}

/* ZOOM & CLOSE */

.ncdPhotoZoom,
.ncdPhotoClose{
	margin-top: 4%;
	top: 0;
	-webkit-transition: border 0.3s ease-out, box-shadow 0.15s ease-out;
	-moz-transition: border 0.3s ease-out, box-shadow 0.15s ease-out;
	transition: border 0.3s ease-out, box-shadow 0.15s ease-out;
}

.ncdPhotoZoom:before,
.ncdPhotoZoom:after,
.ncdPhotoClose:before,
.ncdPhotoClose:after {
	top:50%;
	left:0;
	width:2px;
	height:18px;
	content:"";
	position:absolute;
	margin:-9px 22.5px 0;
	-webkit-transition: opacity 300ms, transform 300ms;
	-moz-transition: opacity 300ms, transform 300ms;
	transition: opacity 300ms, transform 300ms;}

/* ZOOM */

.ncdPhotoZoom{
	-webkit-transition: border 0.3s ease-out, box-shadow 0.15s ease-out, opacity 300ms ease-out, transform 300ms ease-out;
	-moz-transition: border 0.3s ease-out, box-shadow 0.15s ease-out, opacity 300ms ease-out, transform 300ms ease-out;
	transition: border 0.3s ease-out, box-shadow 0.15s ease-out, opacity 300ms ease-out, transform 300ms ease-out;
	left: 0;
	transform: rotate(90deg);
	opacity: 0;
	margin-left: 4%;}
.ncdPhotoZoom.enable{
	opacity:1;
	transform: rotate(0deg);	
}
.ncdPhotoZoom:after {
	-webkit-transform:rotate(-90deg);
	-ms-transform:rotate(-90deg);
	transform:rotate(-90deg);}

.ncdPhotoZoom.zoom:after {
	opacity: 0;
	-webkit-transform:rotate(-180deg);
	-ms-transform:rotate(-180deg);
	transform:rotate(-180deg);}
.ncdPhotoZoom:before {
	transform:rotate(0deg);}
.ncdPhotoZoom.zoom:before {
	transform:rotate(-90deg);}

/* CLOSE */

.ncdPhotoClose {
	right: 0;
	margin-right: 4%;}

.ncdPhotoClose:before,
.ncdPhotoClose:after {
	height:22px;
	margin:-11px 22.5px 0;
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg);}

.ncdPhotoClose:after {
	-webkit-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	transform:rotate(-45deg);}

/* PREV / NEXT */

.ncdPhotoNext,
.ncdPhotoPrev {
	top: 50%;
	margin-top: -25px;
	opacity: 0;
	transition: opacity 0.2s ease-out, transform 0.8s cubic-bezier(0.190, 1.000, 0.220, 1.000),border 0.3s ease-out,box-shadow 0.15s ease-out;
	-moz-transition: opacity 0.2s ease-out, -moz-transform 0.8s cubic-bezier(0.190, 1.000, 0.220, 1.000),border 0.3s ease-out,box-shadow 0.15s ease-out;
	-webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.8s cubic-bezier(0.190, 1.000, 0.220, 1.000),border 0.3s ease-out,box-shadow 0.15s ease-out;
}

.ncdPhotoNext:before,
.ncdPhotoNext:after,
.ncdPhotoPrev:before,
.ncdPhotoPrev:after {
	top:50%;
	left:0;
	width:2px;
	height:15px;
	content:'';
	position:absolute;
	margin:-13px 24px 0;}

.ncdPhotoNext:after,
.ncdPhotoPrev:after{
	margin-top: -3px;
}
.ncdPhotoPrev:after,.ncdPhotoPrev:before {left:-3px;}
.ncdPhotoNext:after{
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	transform:rotate(45deg);}
.ncdPhotoNext:before {
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	transform:rotate(-45deg);}
.ncdPhotoPrev:after{
	-webkit-transform:rotate(315deg);
	-moz-transform:rotate(315deg);
	-ms-transform:rotate(315deg);
	-o-transform:rotate(315deg);
	transform:rotate(315deg);}
.ncdPhotoPrev:before {
	-webkit-transform:rotate(-315deg);
	-moz-transform:rotate(-315deg);
	-ms-transform:rotate(-315deg);
	-o-transform:rotate(-315deg);
	transform:rotate(-315deg);}

@media screen and (min-width: 800px) {
	#ncdPhotoControls #ncdPhotoCounter{
		display: none;
	}
}
@media screen and (max-width: 800px) {
#ncdPhotoControls{
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 53px;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout:none;
	z-index: 100;}

	/* No Caption Mobile */
	#ncdPhotoBase.cap-hide #ncdPhotoControls{height: 70px;}
	#ncdPhotoBase.cap-hide .ncd-ui{bottom: 8px !important;}

	.ncdPhotoZoom.zoom{
		-webkit-transform: translateY(-20px);
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

/* Prev Button */

.ncdPhotoNext {
	-webkit-transform: translateX(-15px);
	-moz-transform: translateX(-15px);
	transform: translateX(-15px);
	right: 4%;}
.ncdPhotoPrev {
	-webkit-transform: translateX(15px);
	-moz-transform: translateX(15px);
	transform: translateX(15px);
	left: 4%;}


#ncdPhotoBase:hover .ncdPhotoNext,
#ncdPhotoBase:hover .ncdPhotoPrev {
	-webkit-transform: translateX(0) rotate(0deg);opacity: 1;
	-moz-transform: translateX(0) rotate(0deg);opacity: 1;
	transform: translateX(0) rotate(0deg);opacity: 1;
}


@media screen and (max-width: 800px) {
	#ncdPhotoBase .ncdPhotoNext,
	#ncdPhotoBase .ncdPhotoPrev {
		-webkit-transform: translateX(0) rotate(0deg);
		-moz-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
		margin-top: 4%;
		top: 0;
		opacity: 1;
	}
	#ncdPhotoBase .ncdPhotoNext{margin-right: 20%; }
	#ncdPhotoBase .ncdPhotoZoom{margin-left: -25px;left: 50%;}
	#ncdPhotoBase .ncdPhotoPrev{margin-left: 20%;}

	#ncdPhotoBase #ncdPhotoCounter,
	#ncdPhotoBase .ncdPhotoClose,
	#ncdPhotoBase .ncdPhotoNext,
	#ncdPhotoBase .ncdPhotoZoom,
	#ncdPhotoBase .ncdPhotoPrev{top: auto; bottom: 0;}
	#ncdPhotoOverlay div.slide p{
		position: absolute;
		bottom: 100%;
		left: 0;
	}

	#ncdPhotoCounter{
		position: absolute;
		left: 4%;
		margin-left: 10px;
		font-family: 'Helvetica Neue';
		font-weight: 300;
		letter-spacing: -1px;
		height: 27px;
		line-height: 0;
		font-size: 16px;
		z-index: 100;
	}
	#ncdPhotoCounter .lb-current{
		font-size: 28px;
		padding-right: 2px;
		letter-spacing: -2px;
	}

}
#ncdPhotoBase.out .ncdPhotoNext {
	-webkit-transform: translateX(30px) rotate(0deg);opacity: 0;
	-moz-transform: translateX(30px) rotate(0deg);opacity: 0;
	transform: translateX(30px) rotate(0deg);opacity: 0;
}
#ncdPhotoBase.out .ncdPhotoPrev {
	-webkit-transform: translateX(-30px) rotate(0deg);opacity: 0;
	-moz-transform: translateX(-30px) rotate(0deg);opacity: 0;
	transform: translateX(-30px) rotate(0deg);opacity: 0;
}
#ncdPhotoBase .ncdPhotoNext.hide,
#ncdPhotoBase .ncdPhotoPrev.hide {opacity: 0;}

#ncdPhotoBase.single-image .ncdPhotoNext,
#ncdPhotoBase.single-image .ncdPhotoPrev,
#ncdPhotoOverlay[data-hide-full-title="True"] span b,
#ncdPhotoOverlay[data-hide-full-caption="True"] span em{
	display: none;
}

/* Lightbox */

#ncdPhotoOverlay {
	position: absolute;
	height: 100%;
	width: 100%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
#ncdPhotoOverlay div.slide {
	display: block;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	line-height: 0;
	position:absolute;
	top:-9999px;
	left:-9999px;
}
#ncdPhotoOverlay div.slide.ncd-show{
	position: relative;
	top: 50%;
	left: 0%;
	height: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#ncdPhotoOverlay div.slide.out{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: auto;
	-webkit-transform: translateY(-50%) translateX(-10px);
	-ms-transform: translateY(-50%) translateX(-10px);
	transform: translateY(-50%) translateX(-10px);
	opacity: 0;
	transition: opacity 200ms ease-in, transform 200ms ease-in;
}
#ncdPhotoBase.go-next #ncdPhotoOverlay div.slide.out{
	-webkit-transform: translateY(-50%) translateX(-10px);
	-ms-transform: translateY(-50%) translateX(-10px);
	transform: translateY(-50%) translateX(-10px);
	opacity: 0;
	transition: opacity 200ms ease-in, transform 200ms ease-in;
}
#ncdPhotoBase.go-prev #ncdPhotoOverlay div.slide.out{
	-webkit-transform: translateY(-50%) translateX(10px);
	-ms-transform: translateY(-50%) translateX(10px);
	transform: translateY(-50%) translateX(10px);
	opacity: 0;
	transition: opacity 200ms ease-in, transform 200ms ease-in;
}
#ncdPhotoBase.go-next div.slide.out img,
#ncdPhotoBase.go-prev div.slide.out img,
#ncdPhotoBase.processing div.slide.ncd-show.out img{
	-webkit-animation: none !important;
	animation: none !important;
	opacity: 1 !important;
}

#ncdPhotoOverlay div.slide.out.ncd-show,
.go-next #ncdPhotoOverlay div.slide.out.ncd-show,
.go-prev #ncdPhotoOverlay div.slide.out.ncd-show{
	opacity: 0;
	transition: none;
}

#ncdPhotoOverlay div.slide > div {
	display: inline-block;
	position: relative;
	padding: 4%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
#ncdPhotoOverlay div.slide.zoom.in > div {
	padding: 0;
}
#ncdPhotoOverlay div.slide.zoom.in,
#ncdPhotoOverlay div.slide.zoom.in > div {font-size: 0;}

#ncdPhotoOverlay div.slide.zoom {
	overflow: scroll; 
	cursor:move;
	-webkit-overflow-scrolling: touch;}
#ncdPhotoOverlay div.slide.zoom::-webkit-scrollbar {
	display: none;
}

#ncdPhotoOverlay div.slide.zoom.in br{display: none;}
#ncdPhotoOverlay div.slide.zoom.out br{display: block;}
#ncdPhotoOverlay div.slide.zoom.in.transition,
#ncdPhotoOverlay div.slide.zoom.out{overflow: hidden;}
#ncdPhotoOverlay div.slide.zoom.transition div{
	-webkit-animation: float-zoom-in 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	-moz-animation: float-zoom-in 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	animation: float-zoom-in 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
#ncdPhotoOverlay div.slide.zoom.in div{
	line-height: normal;
	-webkit-animation: float-zoom-in-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	-moz-animation: float-zoom-in-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	animation: float-zoom-in-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
#ncdPhotoOverlay div.slide.zoom.in.transition div{
	-webkit-animation: float-zoom-out 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	-moz-animation: float-zoom-out 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	animation: float-zoom-out 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
#ncdPhotoOverlay div.slide.zoom.out div{
	-webkit-animation: float-zoom-out-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	-moz-animation: float-zoom-out-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	animation: float-zoom-out-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
#ncdPhotoOverlay div.slide.ncd-show > div{opacity: 1;}

@-webkit-keyframes float-zoom-in {
	from {-webkit-transform: scale(1);opacity: 1}
	to {-webkit-transform: scale(1.03);opacity: 0}
}
@keyframes float-zoom-in {
	from {transform: scale(1);opacity: 1}
	to {transform: scale(1.03);opacity: 0}
}
@-webkit-keyframes float-zoom-in-complete {
	from {-webkit-transform: scale(.98);opacity: 0}
	to {-webkit-transform: scale(1);opacity: 1}
}
@keyframes float-zoom-in-complete {
	from {transform: scale(.98);opacity: 0}
	to {transform: scale(1);opacity: 1}
}
@-webkit-keyframes float-zoom-out {
	from {-webkit-transform: scale(1);opacity: 1}
	to {-webkit-transform: scale(.98);opacity: 0}
}
@keyframes float-zoom-out {
	from {transform: scale(1);opacity: 1}
	to {transform: scale(.98);opacity: 0}
}
@-webkit-keyframes float-zoom-out-complete {
	from {-webkit-transform: scale(1.03);opacity: 0}
	to {-webkit-transform: scale(1);opacity: 1}
}
@keyframes float-zoom-out-complete {
	from {transform: scale(1.03);opacity: 0}
	to {transform: scale(1);opacity: 1}
}
@-webkit-keyframes float-in {
	from {-webkit-transform: scale(1.04);opacity: 0}
	to {-webkit-transform: scale(1);opacity: 1}
}
@keyframes float-in {
	from {transform: scale(1.02);opacity: 0}
	to {transform: scale(1);opacity: 1}
}
@-webkit-keyframes float-down {
	from {-webkit-transform: translateY(-10px);opacity: 0}
	to {-webkit-transform: translateY(0);opacity: 1}
}
@keyframes float-down {
	from {transform: translateY(-10px);opacity: 0}
	to {transform: translateY(0);opacity: 1}
}
@-webkit-keyframes float-out {
	from {-webkit-transform: scale(1);opacity: 1}
	to {-webkit-transform: scale(0.97);opacity: 0}
}
@keyframes float-out {
	from {transform: scale(1);opacity: 1}
	to {transform: scale(0.97);opacity: 0}
}
@-webkit-keyframes float-up {
	from {-webkit-transform: translateY(0px);opacity: 1}
	to {-webkit-transform: translateY(10px);opacity: 0}
}
@keyframes float-up {
	from {transform: translateY(0px);opacity: 1}
	to {transform: translateY(10px);opacity: 0}
}
@-webkit-keyframes float-next {
	from {-webkit-transform: translateX(5px);opacity: 0}
	to {-webkit-transform: translateX(0);opacity: 1}
}
@keyframes float-next {
	from {transform: translateX(5px);opacity: 0}
	to {transform: translateX(0);opacity: 1}
}
@-webkit-keyframes float-prev {
	from {-webkit-transform: translateX(-5px);opacity: 0}
	to {-webkit-transform: translateX(0);opacity: 1}
}
@keyframes float-prev {
	from {transform: translateX(-5px);opacity: 0}
	to {transform: translateX(0);opacity: 1}
}
@-webkit-keyframes text-swap {
	from {-webkit-opacity: 0}
	to {-webkit-opacity: 1}
}
@keyframes text-swap {
	from {opacity: 0}
	to {opacity: 1}
}

#ncdPhotoOverlay div.slide img {
	list-style: none;
	line-height: 0;
	max-width: 100% !important;
	max-height: 80vh !important;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout:none;
	border-radius: 0px;
}
#ncdPhotoOverlay div.slide.zoom.in > div{
	height: auto;
}
#ncdPhotoOverlay div.slide.zoom.in img{
	max-width: none !important;
	max-height: none !important;
	border-radius: 0;
}
#ncdPhotoBase.go-next div.slide img{
	-webkit-animation: float-next 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: float-next 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#ncdPhotoBase.go-prev div.slide img{
	-webkit-animation: float-prev 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: float-prev 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#ncdPhotoBase.processing div.slide.ncd-show img{
	-webkit-animation: none;
	animation: none;
	opacity: 0;
}

@media screen and (min-width: 800px) {
	/*
	#ncdPhotoOverlay div.slide > div{
		height: 60vh;
	}
	*/
}
@media screen and (max-width: 800px) {
	#ncdPhotoBase > .ncdPhotoZoom{display: none}

	#ncdPhotoBase.go-next #ncdPhotoCaption p,
	#ncdPhotoBase.go-prev #ncdPhotoCaption p {
		-webkit-animation: text-swap 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
		animation: text-swap 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
	}
}

/* COUNTER */

.ncdPhotoCounter{
	left: auto !important;
	right: 0;}
.ncdPhotoCounter[data-show-count="False"],
#ncdPhotoCounter[data-show-count="False"]{
	display: none !important;}

/* CAPTION - MOBILE */

#ncdPhotoCaption{
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	text-align:center;
	padding: 12px 4%;
	font-size: 15px;
	z-index: 100;
	line-height: 1.4;
}
#ncdPhotoCaption p{
	margin: 0;
}
#ncdPhotoCaption b{
	padding-right: 5px;
}

#ncdPhotoOverlay p b,
#ncdPhotoCaption p b{
	font-weight: normal;
	font-style: normal;
	padding-right: 5px;
}
#ncdPhotoOverlay p em,
#ncdPhotoCaption p em{
	font-weight: normal;
	font-style: normal;
}

@media screen and (min-width: 800px) {

	#ncdPhotoCaption{
		display: none;
	}
	.img-caption-in{
		display: block;
	}
	.img-caption-in:after {
		content: "";
		display: table;
		clear: both;
	}
}
#ncdPhotoOverlay p.ncdPhotoCounter,
#ncdPhotoOverlay p{
	display: inline-block;
	text-align: left;
	padding: 12px 0 18px;
	font-size: 14px;
	font-variant: normal;
	line-height: 20px;
	margin: 0;
	float: left;
}

#ncdPhotoOverlay p.ncdPhotoCounter{
	float: right;
}

/* CAPTION - DESK */

#ncdPhotoBase:hover .img-caption-in {opacity: 1}
#ncdPhotoBase.cap-hide .img-caption-in{ display: none; }
#ncdPhotoBase.cap-show .img-caption-in.invis{
	visibility: hidden;
	-webkit-animation:none;
	animation:none
}
#ncdPhotoBase .img-caption-in{
	opacity: 0 ;
	transition: opacity 200ms;
}
#ncdPhotoBase.cap-show .ncd-show .img-caption-in{
	opacity: 1;
	-webkit-animation: float-down 600ms 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: float-down 600ms 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#ncdPhotoBase.processing .img-caption-in{
	opacity: 0 ;
}
@media screen and (max-width: 800px) {
	.img-caption-in{display: none}
}

/* LB Font Styles */

#ncdPhotoBase [data-italic-title="True"] p b,
#ncdPhotoBase [data-italic-caption="True"] p em{ font-style: italic; }
#ncdPhotoBase [data-bold-title="True"] p b,
#ncdPhotoBase [data-bold-caption="True"] p em{ font-weight: bold; }
#ncdPhotoBase [data-hide-title="True"] p b,
#ncdPhotoBase [data-hide-caption="True"] p em{ display: none; }

/* LB Theme - Default Dark */

.style-default #ncdPhotoOverlay p b,
.style-default #ncdPhotoCaption p b{color: #FFF} /* Caption Title */
.style-default #ncdPhotoOverlay p em,
.style-default #ncdPhotoCaption p em,
.style-default .ncdPhotoCounter,
.style-default #ncdPhotoCounter{color: #EEE} /* Caption Text */

.style-default img{box-shadow: 0 2px 16px rgba(0,0,0,0.6);} /* Img Shadow */
.style-default{background: rgba(0,0,0,0.85) !important} /* Overlay */

.style-default #ncdPhotoLoader.processing #ncdPhotoLoaderSpinner{
	border-left: 3px solid rgba(200,200,200, .15);
	border-right: 3px solid rgba(200,200,200, .15);
	border-bottom: 3px solid rgba(200,200,200, .15);
	border-top: 3px solid rgba(200,200,200, .8);
}

@media screen and (max-width: 800px) {
	.style-default #ncdPhotoControls{
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.7)));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.7));
	background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.7));}
}

.style-default .ncdPhotoZoom,
.style-default .ncdPhotoClose,
.style-default .ncdPhotoNext,
.style-default .ncdPhotoPrev {
	background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(rgba(0, 0, 0, 0.00)), to(rgba(0, 0, 0, 0.1)));
	background-image: -webkit-radial-gradient(50% 50%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.00));
	background-image: radial-gradient(50% 50%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.00));
}

.style-default #ncdPhotoCaption{background: #000;}
.style-default .ncdPhotoNext:before,.ncdPhotoNext:after,
.style-default .ncdPhotoPrev:before,.ncdPhotoPrev:after,
.style-default .ncdPhotoZoom:before,.ncdPhotoZoom:after,
.style-default .ncdPhotoClose:before,.ncdPhotoClose:after,
.style-default .ncdPhotoNext:hover:before,.ncdPhotoNext:hover:after,
.style-default .ncdPhotoPrev:hover:before,.ncdPhotoPrev:hover:after,
.style-default .ncdPhotoClose:hover:before,.ncdPhotoClose:hover:after {background: #FFF}
.style-default #ncdPhotoCounter{color: #FFF}

.style-default .ncdPhotoZoom:active,
.style-default .ncdPhotoClose:active,
.style-default .ncdPhotoNext:active,
.style-default .ncdPhotoPrev:active{
	box-shadow: 0 0 0 5px rgba(255,255,255,0.6);
	border: 2px solid #FFF;}

.style-default .ncdPhotoZoom.zoom{border: 2px solid #FFF;}

@media screen and (min-width: 800px) {
	.style-default .ncdPhotoZoom:hover,
	.style-default .ncdPhotoClose:hover,
	.style-default .ncdPhotoNext:hover,
	.style-default .ncdPhotoPrev:hover{border: 2px solid #FFF;}
}

/* LB Theme - Contrast Light */

.style-contrast #ncdPhotoOverlay p b{color: #333}
.style-contrast #ncdPhotoCaption p b{color: #FFF}

.style-contrast #ncdPhotoOverlay p em,
.style-contrast .ncdPhotoCounter{color: #555}
.style-contrast #ncdPhotoCaption p em{color: #EEE}

.style-contrast img{box-shadow: 0 2px 10px rgba(0,0,0,0.15);}
.style-contrast{background: rgba(255,255,255,0.85) !important}

.style-contrast #ncdPhotoLoader.processing #ncdPhotoLoaderSpinner{
	border-left: 3px solid rgba(100,100,100, .15);
	border-right: 3px solid rgba(100,100,100, .15);
	border-bottom: 3px solid rgba(100,100,100, .15);
	border-top: 3px solid rgba(100,100,100, .8);
}

.style-contrast #ncdPhotoCaption{background: #000}
.style-contrast #ncdPhotoCounter{color: #222}
.style-contrast .ncdPhotoNext:before,.style-contrast .ncdPhotoNext:after,
.style-contrast .ncdPhotoPrev:before,.style-contrast .ncdPhotoPrev:after,
.style-contrast .ncdPhotoZoom:before,.style-contrast .ncdPhotoZoom:after,
.style-contrast .ncdPhotoClose:before,.style-contrast .ncdPhotoClose:after,
.style-contrast .ncdPhotoNext:hover:before,.style-contrast .ncdPhotoNext:hover:after,
.style-contrast .ncdPhotoPrev:hover:before,.style-contrast .ncdPhotoPrev:hover:after,
.style-contrast .ncdPhotoClose:hover:before,.style-contrast .ncdPhotoClose:hover:after {background: #222}

.style-contrast .ncdPhotoZoom.zoom,
.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose{
	background: rgba(0,0,0,0.3);
}

.style-contrast .ncdPhotoZoom,
.style-contrast .ncdPhotoClose,
.style-contrast .ncdPhotoZoom:before,
.style-contrast .ncdPhotoZoom:after,
.style-contrast .ncdPhotoClose:before,
.style-contrast .ncdPhotoClose:after{transition: transform 300ms, border 300ms, box-shadow 300ms, background 300ms;}

.style-contrast .ncdPhotoZoom.zoom:before,
.style-contrast .ncdPhotoZoom.zoom:after,
.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose:before,
.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose:after{background: #FFF;}

.style-contrast .ncdPhotoZoom:active,
.style-contrast .ncdPhotoClose:active,
.style-contrast .ncdPhotoNext:active,
.style-contrast .ncdPhotoPrev:active{
	box-shadow: 0 0 0 5px rgba(0,0,0,0.15);
	border: 2px solid #222;}

.ncdPhotoZoom.zoom{border: 2px solid rgba(0,0,0,0.6);}
 
 @media screen and (min-width: 800px) {
	.style-contrast .ncdPhotoZoom,
	.style-contrast .ncdPhotoClose,
	.style-contrast .ncdPhotoNext,
	.style-contrast .ncdPhotoPrev {
		background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(rgba(255,255,255, 0.00)), to(rgba(255,255,255, 0.4)));
		background-image: -webkit-radial-gradient(50% 50%, rgba(255,255,255, 0.4), rgba(255,255,255, 0.00));
		background-image: radial-gradient(50% 50%, rgba(255,255,255, 0.4), rgba(255,255,255, 0.00));
	}
	
	.style-contrast .ncdPhotoZoom:hover,
	.style-contrast .ncdPhotoClose:hover,
	.style-contrast .ncdPhotoNext:hover,
	.style-contrast .ncdPhotoPrev:hover{border: 2px solid #222;}
}

@media screen and (max-width: 800px) {

	.style-contrast #ncdPhotoCounter{color: #fff}
	.style-contrast .ncdPhotoNext:before,.style-contrast .ncdPhotoNext:after,
	.style-contrast .ncdPhotoPrev:before,.style-contrast .ncdPhotoPrev:after,
	.style-contrast .ncdPhotoZoom:before,.style-contrast .ncdPhotoZoom:after,
	.style-contrast .ncdPhotoClose:before,.style-contrast .ncdPhotoClose:after,
	.style-contrast .ncdPhotoNext:hover:before,.style-contrast .ncdPhotoNext:hover:after,
	.style-contrast .ncdPhotoPrev:hover:before,.style-contrast .ncdPhotoPrev:hover:after,
	.style-contrast .ncdPhotoClose:hover:before,.style-contrast .ncdPhotoClose:hover:after {background: #fff}

	.style-contrast #ncdPhotoControls{
		background-color: rgba(0,0,0,0.3);
		background-image: none;}

	.style-contrast .ncdPhotoZoom.zoom,
	.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose{
		background: transparent;
	}

	.style-contrast .ncdPhotoZoom:active,
	.style-contrast .ncdPhotoZoom.zoom,
	.style-contrast .ncdPhotoClose:active,
	.style-contrast .ncdPhotoNext:active,
	.style-contrast .ncdPhotoPrev:active{
		box-shadow: 0 0 0 5px transparent;
		border: 2px solid transparent;}

	.style-contrast .ncdPhotoZoom.zoom{transform: translateY(0px);}

	#ncdPhotoBase.style-contrast .ncdPhotoNext.hide, 
	#ncdPhotoBase.style-contrast .ncdPhotoPrev.hide{opacity: 1;}
}

.processing img{
	box-shadow: none !important;
}



/* Edit Mode */


#stacks_in_2{
	max-width: px;margin: 0 auto;
}
#stacks_in_2{
	padding: px px px px;
}
@media screen and (min-width: px){
	#stacks_in_2{
		padding: px px px px;
	}
}/* Start dooHeader X stack CSS code */.stacks_in_6x{	display: block !important;		text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_6x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_6x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_6 {
	padding: 45px 0px 0px 0px;
}

#stacks_in_7 {
	font-size: 149%;
}
#stacks_in_8 *,
#stacks_in_8 *:before,
#stacks_in_8 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_10 {
  overflow: visible;
}
#pureText_stacks_in_10 .insideText {
  
    font-size: 12px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_10 a {
  color: #D1FF10 !important;
  text-decoration: none;
}
#pureText_stacks_in_10 a:hover {
  color: #FFFFFF !important;
}
/*
#pureText_stacks_in_10 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_10 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_10.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_10.fontSizeInheritOff, #pureText_stacks_in_10.fontSizeInheritOff span {
  font-size: 12px !important;
  line-height: 12px;
}
#pureText_stacks_in_10.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_10.lineHeightOn, #pureText_stacks_in_10.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_10.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_10.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_10 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_10 p.insideText,
#pureText_stacks_in_10 .insideText p,
#pureText_stacks_in_10 h1.insideText,
#pureText_stacks_in_10 h2.insideText,
#pureText_stacks_in_10 h3.insideText,
#pureText_stacks_in_10 h4.insideText,
#pureText_stacks_in_10 h5.insideText,
#pureText_stacks_in_10 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_10 {
	padding: 10px 0px 40px 0px;
}
#stacks_in_2734.aspen_split{
	position: relative;
	font-size: 15px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_2734.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_2734.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_2734.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_2734.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.3;
	
	
}

#stacks_in_2734.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_2734 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_2734.aspen_split .max_width_wrap_content{
	max-width: 4000px;
	margin: 0 auto;
}

#stacks_in_2734.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1.00), rgba(255, 255, 255, 1.00));
}

 
#stacks_in_2734.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_2734.aspen_split h1, 
#stacks_in_2734.aspen_split h2,
#stacks_in_2734.aspen_split h3, 
#stacks_in_2734.aspen_split h4, 
#stacks_in_2734.aspen_split h5, 
#stacks_in_2734.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_2734.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_2734.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}#stacks_in_2736 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_2736 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_2736 .fluid-image.unlimited img{width:100% !important}#stacks_in_2736 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_2736 .fluid-image.align-left img{float:left}#stacks_in_2736 .fluid-image.align-right img{float:right}
#stacks_in_262.aspen_split{
	position: relative;
	font-size: 15px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_262.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_262.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_262.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_262.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.3;
	
	
}

#stacks_in_262.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_262 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_262.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1.00), rgba(255, 255, 255, 1.00));
}

 
#stacks_in_262.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_262.aspen_split h1, 
#stacks_in_262.aspen_split h2,
#stacks_in_262.aspen_split h3, 
#stacks_in_262.aspen_split h4, 
#stacks_in_262.aspen_split h5, 
#stacks_in_262.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_262.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_262.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_264 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_264.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_264.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_264.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_264.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_264.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_264.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_264.RC3_M.RC3_Goff {
  margin: 0 0% 0px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_264.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_264.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_264.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_264.RC4_LF.RC4_Goff, .stacks_in_264.RC4_LL.RC4_Goff, .stacks_in_264.RC4_LF2.RC4_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_264.RC4_LF.RC4_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_264.RC4_LL2.RC4_Goff {
  margin: 0 0 0px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_264.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_264.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_264.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_264.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_264.RC5_M.RC5_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_264.RC5_LF.RC5_Goff, .stacks_in_264.RC5_LL.RC5_Goff, .stacks_in_264.RC5_RF.RC5_Goff, .stacks_in_264.RC5_RL.RC5_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_264.RespColone5_First.RC5_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_264.RespColone5_Last.RC5_Goff {
  margin: 0 0 0px 0;
}

/****************  6 Non ******************/

.stacks_in_264.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_264.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_264.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_264.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_264.RC6_M.RC6_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_264.RC6_LF.RC6_Goff,
.stacks_in_264.RC6_LL.RC6_Goff,
.stacks_in_264.RC6_RF.RC6_Goff,
.stacks_in_264.RC6_RL.RC6_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_264.RC6_L1.RC6_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_264.RC6_R1.RC6_Goff {
  margin: 0 0 0px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_264.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_264.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_264.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 0px 0;
}

.stacks_in_264.maxWToggle{
  max-width:1000px;
  margin:0 auto;
}

.stacks_in_264.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_264.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 950px) {

}
@media (max-width: 600px) {
  .stacks_in_264.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 0px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_264.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 0px 0;
}
.stacks_in_264.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 0px 0;
}
@media (max-width: 950px) {

}
@media (max-width: 600px) {
  .stacks_in_264.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 0px 0;
  }
  .stacks_in_264.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 0px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_264.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 0px 0;

}
.stacks_in_264.RC3_M {
  float: left;
  margin: 0 2% 0px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_264.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 0px 0;
}

@media (max-width: 950px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_264.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 0px 0;
  }
  .stacks_in_264.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 0px 1%;
  }
  .stacks_in_264.RC3_R.RespCol1,
  .stacks_in_264.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_264.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 0px 0;
  }
  .stacks_in_264.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 0px 1%;
  }
  .stacks_in_264.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 0px 1%;
  }
  .stacks_in_264.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_264.RC3_L,
  .stacks_in_264.RC3_R.RespCol2,
  .stacks_in_264.RC3_R,
  .stacks_in_264.RC3_R.RespCol1,
  .stacks_in_264.RC3_RS.RespCol2,
  .stacks_in_264.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 0px 0!important;
  }
  .stacks_in_264.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 0px 0!important;
  }
  .stacks_in_264.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 0px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_264.RC4_L {
  float: left;
}
.stacks_in_264.RC4_R {
  float: left;
}
.stacks_in_264.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_264.RC4_S {
  width: 23.6%;
}
.stacks_in_264.RC4_LF,
.stacks_in_264.RC4_LL,
.stacks_in_264.RC4_LF2 {
  margin: 0 1% 0px 1%;
}
.stacks_in_264.RC4_LF {
  margin: 0 1% 0px 0;
}
.stacks_in_264.RC4_LL2 {
  margin: 0 0 0px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_264.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 950px) {
  .stacks_in_264.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_264.RC4_S {
    width: 49%;
  }
  .stacks_in_264.RC4_LF {
    float: left;
    margin: 0 1% 0px 0 ;
  }
  .stacks_in_264.RC4_LL {
    float: left;
    margin: 0 0 0px 1% ;
  }
  .stacks_in_264.RC4_LF2 {
    float: left;
    margin: 0 1% 0px 0 ;
  }
  .stacks_in_264.RC4_LL2 {
    float: left;
    margin: 0 0 0px 1% ;
  }
  .stacks_in_264.RC4_R {
    float:left;
  }
  .stacks_in_264.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_264.RC4_S.RC4_Goff,
  .stacks_in_264.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_264.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_264.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_264.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_264.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_264.RC4 {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC4_S {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC4_S.RC4_Goff,
  .stacks_in_264.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 0px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_264.RC5_L {
  float: left;
}
.stacks_in_264.RC5_R {
  float: left;
}
.stacks_in_264.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_264.RC5_S {
  width: 18.4%;
}
.stacks_in_264.RC5_M {
  float: left;
  margin: 0 1% 0px 1%;
}
.stacks_in_264.RC5_LF,
.stacks_in_264.RC5_LL,
.stacks_in_264.RC5_RF,
.stacks_in_264.RC5_RL {
  float: left;
  margin: 0 1% 0px 1%;
}
.stacks_in_264.RespColone5_First {
  margin: 0 1% 0px 0;
}
.stacks_in_264.RespColone5_Last {
  float:left;
  margin: 0 0 0px 1%;
}
@media (max-width: 950px) {
  .stacks_in_264.RC5, .stacks_in_264.RC5_S {
    width: 49%;
  }
  .stacks_in_264.RC5_LF {
    float: left;
    margin: 0 1% 0px 0;
  }
  .stacks_in_264.RC5_LL {
    float: left;
    margin: 0 0 0px 1%;
  }
  .stacks_in_264.RC5.RespColone5_Last,
  .stacks_in_264.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 0px auto;
  }
  .stacks_in_264.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_264.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_264.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RespColone5_Last.RC5_Goff,
  .stacks_in_264.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 0px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_264.RC5.RespCol2,
  .stacks_in_264.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_264.RC5_LF.RespCol2,
  .stacks_in_264.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 0px 1%;
  }
  .stacks_in_264.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 0px 0;
  }
  .stacks_in_264.RC5.RespColone5_First.RespCol2,
  .stacks_in_264.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 0px auto;
  }
  .stacks_in_264.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_264.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_264.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_264.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_264.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;

  }
  .stacks_in_264.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_264.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 0px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_264.RC5.RC5_LL.RespCol2,
  .stacks_in_264.RC5.RC5_LF.RespCol2,
  .stacks_in_264.RC5.RC5_LL.RespCol1,
  .stacks_in_264.RC5.RC5_LF.RespCol1,
  .stacks_in_264.RC5_S.RC5_LL.RespCol2,
  .stacks_in_264.RC5_S.RC5_LF.RespCol2,
  .stacks_in_264.RC5_S.RC5_LL.RespCol1,
  .stacks_in_264.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC5.RC5_Goff,
  .stacks_in_264.RC5_S.RC5_Goff,
  .stacks_in_264.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 0px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_264.RC6_L,
.stacks_in_264.RC6_L1 {
  float: left;
}
.stacks_in_264.RC6_R,
.stacks_in_264.RC6_R1 {
  float: left;
}
.stacks_in_264.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_264.RC6_S {
  width: 15.2%;
}
.stacks_in_264.RC6_M {
  float: left;
  margin: 0 1% 0px 1%;
}
.stacks_in_264.RC6_LF,
.stacks_in_264.RC6_LL,
.stacks_in_264.RC6_RF,
.stacks_in_264.RC6_RL {
  margin: 0 1% 0px 1%;
}
.stacks_in_264.RC6_L1 {
  margin: 0 1% 0px 0;
}
.stacks_in_264.RC6_R1 {
  margin: 0 0 0px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_264.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 950px) {
  .stacks_in_264.RC6,
  .stacks_in_264.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_264.RC6_LF {
    float: left;
    margin: 0 1% 0px 0;
  }
  .stacks_in_264.RC6_LL {
    float: left;
    margin: 0 0 0px 1%;
  }
  .stacks_in_264.RC6.RC6_Goff,
  .stacks_in_264.RC6_S.RC6_Goff,
  .stacks_in_264.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_264.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_264.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_264.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_264.RC6,
  .stacks_in_264.RC6_S {
    width: 100% !important;
    margin: 0 0 0px 0 !important;
  }
}

#stacks_in_264 {
	padding: 30px 30px 30px 30px;
}
#stacks_in_2677 *,
#stacks_in_2677 *:before,
#stacks_in_2677 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2679 {
  overflow: visible;
}
#pureText_stacks_in_2679 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2679 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2679 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2679 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2679 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2679.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2679.fontSizeInheritOff, #pureText_stacks_in_2679.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_2679.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2679.lineHeightOn, #pureText_stacks_in_2679.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2679.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2679.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2679 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2679 p.insideText,
#pureText_stacks_in_2679 .insideText p,
#pureText_stacks_in_2679 h1.insideText,
#pureText_stacks_in_2679 h2.insideText,
#pureText_stacks_in_2679 h3.insideText,
#pureText_stacks_in_2679 h4.insideText,
#pureText_stacks_in_2679 h5.insideText,
#pureText_stacks_in_2679 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2679 {
	padding: 20px 10px 0px 10px;
}

#stacks_in_2680 {
	font-size: 120%;
}
#stacks_in_2681 *,
#stacks_in_2681 *:before,
#stacks_in_2681 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2683 {
  overflow: visible;
}
#pureText_stacks_in_2683 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2683 a {
  color: #808004 !important;
  text-decoration: none;
}
#pureText_stacks_in_2683 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_2683 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2683 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2683.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2683.fontSizeInheritOff, #pureText_stacks_in_2683.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2683.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2683.lineHeightOn, #pureText_stacks_in_2683.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2683.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2683.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2683 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2683 p.insideText,
#pureText_stacks_in_2683 .insideText p,
#pureText_stacks_in_2683 h1.insideText,
#pureText_stacks_in_2683 h2.insideText,
#pureText_stacks_in_2683 h3.insideText,
#pureText_stacks_in_2683 h4.insideText,
#pureText_stacks_in_2683 h5.insideText,
#pureText_stacks_in_2683 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2683 {
	padding: 10px 0px 0px 10px;
}

#stacks_in_2684 {
	word-spacing: -1px;
}
#stacks_in_3291 *,
#stacks_in_3291 *:before,
#stacks_in_3291 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_3294 {
  overflow: visible;
}
#pureText_stacks_in_3294 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_3294 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_3294 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_3294 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_3294 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_3294.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_3294.fontSizeInheritOff, #pureText_stacks_in_3294.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_3294.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_3294.lineHeightOn, #pureText_stacks_in_3294.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_3294.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_3294.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_3294 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_3294 p.insideText,
#pureText_stacks_in_3294 .insideText p,
#pureText_stacks_in_3294 h1.insideText,
#pureText_stacks_in_3294 h2.insideText,
#pureText_stacks_in_3294 h3.insideText,
#pureText_stacks_in_3294 h4.insideText,
#pureText_stacks_in_3294 h5.insideText,
#pureText_stacks_in_3294 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_3294 {
	padding: 20px 10px 0px 10px;
}

#stacks_in_3295 {
	font-size: 120%;
}
#stacks_in_3292 *,
#stacks_in_3292 *:before,
#stacks_in_3292 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_3297 {
  overflow: visible;
}
#pureText_stacks_in_3297 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_3297 a {
  color: #808004 !important;
  text-decoration: none;
}
#pureText_stacks_in_3297 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_3297 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_3297 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_3297.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_3297.fontSizeInheritOff, #pureText_stacks_in_3297.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_3297.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_3297.lineHeightOn, #pureText_stacks_in_3297.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_3297.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_3297.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_3297 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_3297 p.insideText,
#pureText_stacks_in_3297 .insideText p,
#pureText_stacks_in_3297 h1.insideText,
#pureText_stacks_in_3297 h2.insideText,
#pureText_stacks_in_3297 h3.insideText,
#pureText_stacks_in_3297 h4.insideText,
#pureText_stacks_in_3297 h5.insideText,
#pureText_stacks_in_3297 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_3297 {
	padding: 10px 0px 0px 10px;
}

#stacks_in_3298 {
	word-spacing: -1px;
}
#stacks_in_2693 *,
#stacks_in_2693 *:before,
#stacks_in_2693 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2695 {
  overflow: visible;
}
#pureText_stacks_in_2695 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2695 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2695 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2695 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2695 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2695.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2695.fontSizeInheritOff, #pureText_stacks_in_2695.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_2695.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2695.lineHeightOn, #pureText_stacks_in_2695.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2695.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2695.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2695 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2695 p.insideText,
#pureText_stacks_in_2695 .insideText p,
#pureText_stacks_in_2695 h1.insideText,
#pureText_stacks_in_2695 h2.insideText,
#pureText_stacks_in_2695 h3.insideText,
#pureText_stacks_in_2695 h4.insideText,
#pureText_stacks_in_2695 h5.insideText,
#pureText_stacks_in_2695 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2695 {
	padding: 20px 10px 0px 10px;
}

#stacks_in_2696 {
	font-size: 120%;
}
#stacks_in_2697 *,
#stacks_in_2697 *:before,
#stacks_in_2697 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2699 {
  overflow: visible;
}
#pureText_stacks_in_2699 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2699 a {
  color: #808004 !important;
  text-decoration: none;
}
#pureText_stacks_in_2699 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_2699 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2699 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2699.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2699.fontSizeInheritOff, #pureText_stacks_in_2699.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2699.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2699.lineHeightOn, #pureText_stacks_in_2699.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2699.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2699.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2699 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2699 p.insideText,
#pureText_stacks_in_2699 .insideText p,
#pureText_stacks_in_2699 h1.insideText,
#pureText_stacks_in_2699 h2.insideText,
#pureText_stacks_in_2699 h3.insideText,
#pureText_stacks_in_2699 h4.insideText,
#pureText_stacks_in_2699 h5.insideText,
#pureText_stacks_in_2699 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2699 {
	padding: 10px 0px 20px 10px;
}

#stacks_in_2700 {
	word-spacing: -1px;
}
#stacks_in_3299 *,
#stacks_in_3299 *:before,
#stacks_in_3299 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_3302 {
  overflow: visible;
}
#pureText_stacks_in_3302 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_3302 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_3302 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_3302 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_3302 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_3302.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_3302.fontSizeInheritOff, #pureText_stacks_in_3302.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_3302.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_3302.lineHeightOn, #pureText_stacks_in_3302.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_3302.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_3302.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_3302 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_3302 p.insideText,
#pureText_stacks_in_3302 .insideText p,
#pureText_stacks_in_3302 h1.insideText,
#pureText_stacks_in_3302 h2.insideText,
#pureText_stacks_in_3302 h3.insideText,
#pureText_stacks_in_3302 h4.insideText,
#pureText_stacks_in_3302 h5.insideText,
#pureText_stacks_in_3302 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_3302 {
	padding: 20px 10px 0px 10px;
}

#stacks_in_3303 {
	font-size: 120%;
}
#stacks_in_3300 *,
#stacks_in_3300 *:before,
#stacks_in_3300 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_3305 {
  overflow: visible;
}
#pureText_stacks_in_3305 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_3305 a {
  color: #808004 !important;
  text-decoration: none;
}
#pureText_stacks_in_3305 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_3305 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_3305 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_3305.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_3305.fontSizeInheritOff, #pureText_stacks_in_3305.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_3305.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_3305.lineHeightOn, #pureText_stacks_in_3305.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_3305.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_3305.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_3305 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_3305 p.insideText,
#pureText_stacks_in_3305 .insideText p,
#pureText_stacks_in_3305 h1.insideText,
#pureText_stacks_in_3305 h2.insideText,
#pureText_stacks_in_3305 h3.insideText,
#pureText_stacks_in_3305 h4.insideText,
#pureText_stacks_in_3305 h5.insideText,
#pureText_stacks_in_3305 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_3305 {
	padding: 10px 0px 20px 10px;
}

#stacks_in_3306 {
	word-spacing: -1px;
}
#stacks_in_3183 *,
#stacks_in_3183 *:before,
#stacks_in_3183 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_3186 {
  overflow: visible;
}
#pureText_stacks_in_3186 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_3186 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_3186 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_3186 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_3186 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_3186.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_3186.fontSizeInheritOff, #pureText_stacks_in_3186.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_3186.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_3186.lineHeightOn, #pureText_stacks_in_3186.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_3186.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_3186.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_3186 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_3186 p.insideText,
#pureText_stacks_in_3186 .insideText p,
#pureText_stacks_in_3186 h1.insideText,
#pureText_stacks_in_3186 h2.insideText,
#pureText_stacks_in_3186 h3.insideText,
#pureText_stacks_in_3186 h4.insideText,
#pureText_stacks_in_3186 h5.insideText,
#pureText_stacks_in_3186 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_3186 {
	padding: 20px 10px 0px 10px;
}

#stacks_in_3187 {
	font-size: 120%;
}
#stacks_in_3184 *,
#stacks_in_3184 *:before,
#stacks_in_3184 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_3189 {
  overflow: visible;
}
#pureText_stacks_in_3189 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_3189 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_3189 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_3189 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_3189 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_3189.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_3189.fontSizeInheritOff, #pureText_stacks_in_3189.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_3189.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_3189.lineHeightOn, #pureText_stacks_in_3189.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_3189.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_3189.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_3189 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_3189 p.insideText,
#pureText_stacks_in_3189 .insideText p,
#pureText_stacks_in_3189 h1.insideText,
#pureText_stacks_in_3189 h2.insideText,
#pureText_stacks_in_3189 h3.insideText,
#pureText_stacks_in_3189 h4.insideText,
#pureText_stacks_in_3189 h5.insideText,
#pureText_stacks_in_3189 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_3189 {
	padding: 10px 0px 22px 10px;
}

#stacks_in_3190 {
	word-spacing: -1px;
}
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3191.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3191.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3191.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3191.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3191.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3191.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3191.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3191.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3191.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3191.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3191.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3191.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3191.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3191.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3191.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3191.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3191.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3191.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3191.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3191.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3191.gsheet--box h1, #gsheet_box_stacks_in_3191.gsheet--box h2, #gsheet_box_stacks_in_3191.gsheet--box h3, #gsheet_box_stacks_in_3191.gsheet--box h4, #gsheet_box_stacks_in_3191.gsheet--box h5, #gsheet_box_stacks_in_3191.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3191.gsheet--box a, #gsheet_box_stacks_in_3191.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3191.gsheet--box, #gsheet_box_stacks_in_3191.gsheet--box p, #gsheet_box_stacks_in_3191.gsheet--box span, #gsheet_box_stacks_in_3191.gsheet--box blockquote, #gsheet_box_stacks_in_3191.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3191.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3191.gsheet--box .gsheet_box_ag_stacks_in_3191 {
    display: none; }
  #gsheet_box_stacks_in_3191.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3191.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3191.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3191.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3191.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3193.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 1300px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3193.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3193.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3193.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3193.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3193.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3193.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3193.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3193.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3193.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3193.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3193.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3193.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3193.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3193.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3193.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3193.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3193.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3193.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3193.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3193.gsheet--box h1, #gsheet_box_stacks_in_3193.gsheet--box h2, #gsheet_box_stacks_in_3193.gsheet--box h3, #gsheet_box_stacks_in_3193.gsheet--box h4, #gsheet_box_stacks_in_3193.gsheet--box h5, #gsheet_box_stacks_in_3193.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3193.gsheet--box a, #gsheet_box_stacks_in_3193.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3193.gsheet--box, #gsheet_box_stacks_in_3193.gsheet--box p, #gsheet_box_stacks_in_3193.gsheet--box span, #gsheet_box_stacks_in_3193.gsheet--box blockquote, #gsheet_box_stacks_in_3193.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3193.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3193.gsheet--box .gsheet_box_ag_stacks_in_3193 {
    display: none; }
  #gsheet_box_stacks_in_3193.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3193.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3193.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3193.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3193.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3195.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3195.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3195.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3195.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3195.gsheet--box.main-bg-color {
    background: rgba(0, 0, 0, 1.00); }
    #gsheet_box_stacks_in_3195.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3195.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3195.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3195.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3195.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3195.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3195.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3195.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3195.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3195.gsheet--box.padding-False {
    padding: 20px; }
  #gsheet_box_stacks_in_3195.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3195.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3195.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3195.gsheet--box.radius-False {
    border-radius: 20px; }
  #gsheet_box_stacks_in_3195.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3195.gsheet--box h1, #gsheet_box_stacks_in_3195.gsheet--box h2, #gsheet_box_stacks_in_3195.gsheet--box h3, #gsheet_box_stacks_in_3195.gsheet--box h4, #gsheet_box_stacks_in_3195.gsheet--box h5, #gsheet_box_stacks_in_3195.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3195.gsheet--box a, #gsheet_box_stacks_in_3195.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3195.gsheet--box, #gsheet_box_stacks_in_3195.gsheet--box p, #gsheet_box_stacks_in_3195.gsheet--box span, #gsheet_box_stacks_in_3195.gsheet--box blockquote, #gsheet_box_stacks_in_3195.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3195.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3195.gsheet--box .gsheet_box_ag_stacks_in_3195 {
    display: none; }
  #gsheet_box_stacks_in_3195.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3195.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3195.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3195.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 800px) {
  #gsheet_box_stacks_in_3195.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_stacks_in_3197 {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex: 1 0 auto;
  overflow: visible;
  box-sizing: border-box;
  flex-direction: column;
  max-width: 5000px; }
  #gsheet_stacks_in_3197 .gsheet--tutorial {
    display: none; }
  #gsheet_stacks_in_3197 .gsheet--data-notice {
    display: none; }
  #gsheet_stacks_in_3197.repeated-rows .gsheet--individual {
    display: none; }
  #gsheet_stacks_in_3197.cell-by-cell .gsheet--repeat {
    display: none; }
  #gsheet_stacks_in_3197.show-search .gsheet--search {
    display: block; }

#gsheet_search_stacks_in_3197.gsheet--search {
  display: none; }
  #gsheet_search_stacks_in_3197.gsheet--search input {
    width: 100%;
    height: auto;
    line-height: 1;
    box-shadow: none;
    border-style: solid;
    outline: none !important;
    margin-bottom: px;
    color: ;
    background: ;
    font-size: px;
    border-radius: px;
    border-color: ;
    padding: px px;
    border-width: px px px px; }

#gsheet_repeat_stacks_in_3197 {
  width: 100%;
  flex: 0 1 auto;
  overflow: visible;
  box-sizing: border-box; }
  #gsheet_repeat_stacks_in_3197 .gsheet--grid {
    width: calc(100% + 15px);
    margin: 0 auto -15px auto;
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    flex-direction: row;
    box-sizing: border-box;
    justify-content: flex-start; }
    #gsheet_repeat_stacks_in_3197 .gsheet--grid .gsheet--item {
      flex: 0 1 auto;
      padding-right: 15px;
      padding-bottom: 15px; }
      #gsheet_repeat_stacks_in_3197 .gsheet--grid .gsheet--item.row-show {
        display: flex; }
      #gsheet_repeat_stacks_in_3197 .gsheet--grid .gsheet--item.row-hide {
        display: none; }

@media (min-width: 1000px) {
  #gsheet_repeat_stacks_in_3197 .gsheet--grid .gsheet--item {
    width: calc(100%/4); } }

@media (max-width: 1000px) {
  #gsheet_repeat_stacks_in_3197 .gsheet--grid .gsheet--item {
    width: calc(100%/2); } }

@media (max-width: 600px) {
  #gsheet_repeat_stacks_in_3197 .gsheet--grid .gsheet--item {
    width: calc(100%/1); } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3199.gsheet--box {
  display: flex;
  position: relative;
  overflow: visible;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3199.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3199.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3199.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3199.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3199.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3199.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3199.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3199.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3199.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3199.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3199.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3199.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3199.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3199.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3199.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3199.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3199.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3199.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3199.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3199.gsheet--box h1, #gsheet_box_stacks_in_3199.gsheet--box h2, #gsheet_box_stacks_in_3199.gsheet--box h3, #gsheet_box_stacks_in_3199.gsheet--box h4, #gsheet_box_stacks_in_3199.gsheet--box h5, #gsheet_box_stacks_in_3199.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3199.gsheet--box a, #gsheet_box_stacks_in_3199.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3199.gsheet--box, #gsheet_box_stacks_in_3199.gsheet--box p, #gsheet_box_stacks_in_3199.gsheet--box span, #gsheet_box_stacks_in_3199.gsheet--box blockquote, #gsheet_box_stacks_in_3199.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3199.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3199.gsheet--box .gsheet_box_ag_stacks_in_3199 {
    display: none; }
  #gsheet_box_stacks_in_3199.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3199.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3199.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3199.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3199.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3201.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10); }
  #gsheet_box_stacks_in_3201.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3201.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3201.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3201.gsheet--box.main-bg-color {
    background: rgba(255, 255, 255, 1.00); }
    #gsheet_box_stacks_in_3201.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3201.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3201.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3201.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3201.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3201.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3201.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3201.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3201.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3201.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3201.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3201.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3201.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3201.gsheet--box.radius-False {
    border-radius: 10px; }
  #gsheet_box_stacks_in_3201.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3201.gsheet--box h1, #gsheet_box_stacks_in_3201.gsheet--box h2, #gsheet_box_stacks_in_3201.gsheet--box h3, #gsheet_box_stacks_in_3201.gsheet--box h4, #gsheet_box_stacks_in_3201.gsheet--box h5, #gsheet_box_stacks_in_3201.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3201.gsheet--box a, #gsheet_box_stacks_in_3201.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3201.gsheet--box, #gsheet_box_stacks_in_3201.gsheet--box p, #gsheet_box_stacks_in_3201.gsheet--box span, #gsheet_box_stacks_in_3201.gsheet--box blockquote, #gsheet_box_stacks_in_3201.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3201.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3201.gsheet--box .gsheet_box_ag_stacks_in_3201 {
    display: none; }
  #gsheet_box_stacks_in_3201.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3201.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3201.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3201.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3201.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_image_stacks_in_3203 {
  width: 100%;
  flex: 0 1 auto;
  display: flex;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  height: 200px;
  max-width: 1000px; }
  #gsheet_image_stacks_in_3203.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_3203.margin-False {
    margin: 0px; }
  #gsheet_image_stacks_in_3203.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_3203.radius-False {
    border-radius: 0px; }
  #gsheet_image_stacks_in_3203 div.gsheet--image, #gsheet_image_stacks_in_3203 img.gsheet--image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  #gsheet_image_stacks_in_3203 img {
    border: 0 !important;
    border-style: none !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3204.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 5000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3204.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3204.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3204.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3204.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3204.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3204.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3204.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3204.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3204.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3204.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3204.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3204.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3204.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3204.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_3204.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3204.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3204.gsheet--box.margin-True {
    margin: -30px 0px 0px 0px; }
  #gsheet_box_stacks_in_3204.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3204.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3204.gsheet--box h1, #gsheet_box_stacks_in_3204.gsheet--box h2, #gsheet_box_stacks_in_3204.gsheet--box h3, #gsheet_box_stacks_in_3204.gsheet--box h4, #gsheet_box_stacks_in_3204.gsheet--box h5, #gsheet_box_stacks_in_3204.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3204.gsheet--box a, #gsheet_box_stacks_in_3204.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3204.gsheet--box, #gsheet_box_stacks_in_3204.gsheet--box p, #gsheet_box_stacks_in_3204.gsheet--box span, #gsheet_box_stacks_in_3204.gsheet--box blockquote, #gsheet_box_stacks_in_3204.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3204.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3204.gsheet--box .gsheet_box_ag_stacks_in_3204 {
    display: none; }
  #gsheet_box_stacks_in_3204.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3204.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3204.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3204.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3204.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_if_stacks_in_3206 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_3206.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_3206.fill-grow .conditional-content--true, #gsheet_if_stacks_in_3206.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_3206.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_3206.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_3206.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_3206 .conditional-content--true, #gsheet_if_stacks_in_3206 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_3206 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_3206.conditional-content.conditional-content--false, #gsheet_if_stacks_in_3206.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_3206.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_3206.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_3206.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_3206.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_3206.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_3206.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_3206.colors-true.change-text h1, #gsheet_if_stacks_in_3206.colors-true.change-text h2, #gsheet_if_stacks_in_3206.colors-true.change-text h3, #gsheet_if_stacks_in_3206.colors-true.change-text h4, #gsheet_if_stacks_in_3206.colors-true.change-text h5, #gsheet_if_stacks_in_3206.colors-true.change-text h6, #gsheet_if_stacks_in_3206.colors-true.change-text p, #gsheet_if_stacks_in_3206.colors-true.change-text span, #gsheet_if_stacks_in_3206.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3206.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3206.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3206.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3206.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3206.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_3206.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3206.colors-false.change-text h1, #gsheet_if_stacks_in_3206.colors-false.change-text h2, #gsheet_if_stacks_in_3206.colors-false.change-text h3, #gsheet_if_stacks_in_3206.colors-false.change-text h4, #gsheet_if_stacks_in_3206.colors-false.change-text h5, #gsheet_if_stacks_in_3206.colors-false.change-text h6, #gsheet_if_stacks_in_3206.colors-false.change-text p, #gsheet_if_stacks_in_3206.colors-false.change-text span, #gsheet_if_stacks_in_3206.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3206.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3206.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3206.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3206.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_3206.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3206.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_3206.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_3206.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_3208 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_3208.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_3208.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_3208 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-color {
      background: rgba(128, 128, 4, 1.00); }
      #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(128, 128, 4, 1.00), rgba(90, 91, 7, 1.00)); }
      #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_3208 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_3208 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_3208 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_3208 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_3208 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_3208 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_3208 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_3208 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_3208 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_3211 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_3211.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_3211.fill-grow .conditional-content--true, #gsheet_if_stacks_in_3211.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_3211.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_3211.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_3211.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_3211 .conditional-content--true, #gsheet_if_stacks_in_3211 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_3211 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_3211.conditional-content.conditional-content--false, #gsheet_if_stacks_in_3211.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_3211.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_3211.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_3211.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_3211.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_3211.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_3211.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_3211.colors-true.change-text h1, #gsheet_if_stacks_in_3211.colors-true.change-text h2, #gsheet_if_stacks_in_3211.colors-true.change-text h3, #gsheet_if_stacks_in_3211.colors-true.change-text h4, #gsheet_if_stacks_in_3211.colors-true.change-text h5, #gsheet_if_stacks_in_3211.colors-true.change-text h6, #gsheet_if_stacks_in_3211.colors-true.change-text p, #gsheet_if_stacks_in_3211.colors-true.change-text span, #gsheet_if_stacks_in_3211.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3211.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3211.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3211.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3211.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3211.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_3211.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3211.colors-false.change-text h1, #gsheet_if_stacks_in_3211.colors-false.change-text h2, #gsheet_if_stacks_in_3211.colors-false.change-text h3, #gsheet_if_stacks_in_3211.colors-false.change-text h4, #gsheet_if_stacks_in_3211.colors-false.change-text h5, #gsheet_if_stacks_in_3211.colors-false.change-text h6, #gsheet_if_stacks_in_3211.colors-false.change-text p, #gsheet_if_stacks_in_3211.colors-false.change-text span, #gsheet_if_stacks_in_3211.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3211.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3211.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3211.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3211.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_3211.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3211.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_3211.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_3211.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_3213 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_3213.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_3213.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_3213 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-color {
      background: rgba(15, 128, 255, 1.00); }
      #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(15, 128, 255, 1.00), rgba(18, 101, 255, 1.00)); }
      #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_3213 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_3213 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_3213 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_3213 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_3213 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_3213 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_3213 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_3213 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_3213 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_3216 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_3216.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_3216.fill-grow .conditional-content--true, #gsheet_if_stacks_in_3216.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_3216.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_3216.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_3216.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_3216 .conditional-content--true, #gsheet_if_stacks_in_3216 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_3216 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_3216.conditional-content.conditional-content--false, #gsheet_if_stacks_in_3216.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_3216.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_3216.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_3216.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_3216.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_3216.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_3216.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_3216.colors-true.change-text h1, #gsheet_if_stacks_in_3216.colors-true.change-text h2, #gsheet_if_stacks_in_3216.colors-true.change-text h3, #gsheet_if_stacks_in_3216.colors-true.change-text h4, #gsheet_if_stacks_in_3216.colors-true.change-text h5, #gsheet_if_stacks_in_3216.colors-true.change-text h6, #gsheet_if_stacks_in_3216.colors-true.change-text p, #gsheet_if_stacks_in_3216.colors-true.change-text span, #gsheet_if_stacks_in_3216.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3216.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3216.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3216.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3216.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3216.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_3216.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3216.colors-false.change-text h1, #gsheet_if_stacks_in_3216.colors-false.change-text h2, #gsheet_if_stacks_in_3216.colors-false.change-text h3, #gsheet_if_stacks_in_3216.colors-false.change-text h4, #gsheet_if_stacks_in_3216.colors-false.change-text h5, #gsheet_if_stacks_in_3216.colors-false.change-text h6, #gsheet_if_stacks_in_3216.colors-false.change-text p, #gsheet_if_stacks_in_3216.colors-false.change-text span, #gsheet_if_stacks_in_3216.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3216.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3216.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3216.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3216.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_3216.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3216.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_3216.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_3216.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_3218 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_3218.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_3218.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_3218 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-color {
      background: rgba(251, 2, 7, 1.00); }
      #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(245, 207, 115, 1.00), rgba(241, 149, 63, 1.00)); }
      #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_3218 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_3218 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_3218 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_3218 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_3218 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_3218 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_3218 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_3218 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_3218 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_3221 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_3221.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_3221.fill-grow .conditional-content--true, #gsheet_if_stacks_in_3221.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_3221.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_3221.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_3221.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_3221 .conditional-content--true, #gsheet_if_stacks_in_3221 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_3221 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_3221.conditional-content.conditional-content--false, #gsheet_if_stacks_in_3221.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_3221.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_3221.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_3221.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_3221.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_3221.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_3221.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_3221.colors-true.change-text h1, #gsheet_if_stacks_in_3221.colors-true.change-text h2, #gsheet_if_stacks_in_3221.colors-true.change-text h3, #gsheet_if_stacks_in_3221.colors-true.change-text h4, #gsheet_if_stacks_in_3221.colors-true.change-text h5, #gsheet_if_stacks_in_3221.colors-true.change-text h6, #gsheet_if_stacks_in_3221.colors-true.change-text p, #gsheet_if_stacks_in_3221.colors-true.change-text span, #gsheet_if_stacks_in_3221.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3221.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3221.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3221.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3221.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3221.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_3221.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3221.colors-false.change-text h1, #gsheet_if_stacks_in_3221.colors-false.change-text h2, #gsheet_if_stacks_in_3221.colors-false.change-text h3, #gsheet_if_stacks_in_3221.colors-false.change-text h4, #gsheet_if_stacks_in_3221.colors-false.change-text h5, #gsheet_if_stacks_in_3221.colors-false.change-text h6, #gsheet_if_stacks_in_3221.colors-false.change-text p, #gsheet_if_stacks_in_3221.colors-false.change-text span, #gsheet_if_stacks_in_3221.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3221.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3221.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3221.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3221.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_3221.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3221.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_3221.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_3221.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_3223 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_3223.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_3223.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_3223 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(254, 252, 255, 1.00); }
    #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-color {
      background: rgba(200, 104, 13, 1.00); }
      #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(250, 250, 250, 1.00), rgba(189, 189, 189, 1.00)); }
      #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_3223 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_3223 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-color {
        background: rgba(253, 128, 8, 1.00); }
        #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_3223 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_3223 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_3223 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_3223 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_3223 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_3223 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_3223 a.gsheet--button.padding-False {
      padding: 12px; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3226.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3226.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3226.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3226.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3226.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3226.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3226.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3226.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3226.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3226.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3226.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3226.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3226.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3226.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3226.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_3226.gsheet--box.padding-True {
    padding: 20px 10px 10px 10px; }
  #gsheet_box_stacks_in_3226.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3226.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3226.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3226.gsheet--box.radius-True {
    border-radius: 0px 0px 10px 10px; }
  #gsheet_box_stacks_in_3226.gsheet--box h1, #gsheet_box_stacks_in_3226.gsheet--box h2, #gsheet_box_stacks_in_3226.gsheet--box h3, #gsheet_box_stacks_in_3226.gsheet--box h4, #gsheet_box_stacks_in_3226.gsheet--box h5, #gsheet_box_stacks_in_3226.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3226.gsheet--box a, #gsheet_box_stacks_in_3226.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3226.gsheet--box, #gsheet_box_stacks_in_3226.gsheet--box p, #gsheet_box_stacks_in_3226.gsheet--box span, #gsheet_box_stacks_in_3226.gsheet--box blockquote, #gsheet_box_stacks_in_3226.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3226.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3226.gsheet--box .gsheet_box_ag_stacks_in_3226 {
    display: none; }
  #gsheet_box_stacks_in_3226.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3226.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3226.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3226.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3226.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_3228 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 16px;
  line-height: 25.888000px; }
  #gsheet_text_stacks_in_3228.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3228.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3228.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_3228.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3228.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3228.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3228.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3228.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3228.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3228.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3228.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3228.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3228.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_3230 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 0.50);
  font-size: 12px;
  line-height: 19.416000px; }
  #gsheet_text_stacks_in_3230.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3230.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3230.margin-True {
    margin: 0px 0px 20px 0px; }
  #gsheet_text_stacks_in_3230.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3230.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3230.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3230.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3230.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3230.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3230.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3230.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3230.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3230.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_3232 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_3232.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_3232.fill-grow .conditional-content--true, #gsheet_if_stacks_in_3232.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_3232.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_3232.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_3232.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_3232 .conditional-content--true, #gsheet_if_stacks_in_3232 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_3232 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_3232.conditional-content.conditional-content--false, #gsheet_if_stacks_in_3232.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_3232.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_3232.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_3232.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_3232.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_3232.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_3232.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_3232.colors-true.change-text h1, #gsheet_if_stacks_in_3232.colors-true.change-text h2, #gsheet_if_stacks_in_3232.colors-true.change-text h3, #gsheet_if_stacks_in_3232.colors-true.change-text h4, #gsheet_if_stacks_in_3232.colors-true.change-text h5, #gsheet_if_stacks_in_3232.colors-true.change-text h6, #gsheet_if_stacks_in_3232.colors-true.change-text p, #gsheet_if_stacks_in_3232.colors-true.change-text span, #gsheet_if_stacks_in_3232.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3232.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3232.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3232.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3232.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3232.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_3232.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3232.colors-false.change-text h1, #gsheet_if_stacks_in_3232.colors-false.change-text h2, #gsheet_if_stacks_in_3232.colors-false.change-text h3, #gsheet_if_stacks_in_3232.colors-false.change-text h4, #gsheet_if_stacks_in_3232.colors-false.change-text h5, #gsheet_if_stacks_in_3232.colors-false.change-text h6, #gsheet_if_stacks_in_3232.colors-false.change-text p, #gsheet_if_stacks_in_3232.colors-false.change-text span, #gsheet_if_stacks_in_3232.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3232.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3232.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3232.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3232.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_3232.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3232.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_3232.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_3232.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3234.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3234.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3234.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3234.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3234.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3234.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3234.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3234.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3234.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3234.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3234.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3234.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3234.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3234.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3234.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3234.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3234.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3234.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3234.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3234.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3234.gsheet--box h1, #gsheet_box_stacks_in_3234.gsheet--box h2, #gsheet_box_stacks_in_3234.gsheet--box h3, #gsheet_box_stacks_in_3234.gsheet--box h4, #gsheet_box_stacks_in_3234.gsheet--box h5, #gsheet_box_stacks_in_3234.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3234.gsheet--box a, #gsheet_box_stacks_in_3234.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3234.gsheet--box, #gsheet_box_stacks_in_3234.gsheet--box p, #gsheet_box_stacks_in_3234.gsheet--box span, #gsheet_box_stacks_in_3234.gsheet--box blockquote, #gsheet_box_stacks_in_3234.gsheet--box i {
    color: rgba(116, 206, 87, 1.00); }
  #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3234.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3234.gsheet--box .gsheet_box_ag_stacks_in_3234 {
    display: none; }
  #gsheet_box_stacks_in_3234.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3234.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3234.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3234.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3234.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_3236 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_3236.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_3236.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_3236 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_3236.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_3237 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_3237.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3237.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3237.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_3237.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3237.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3237.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3237.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3237.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3237.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3237.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3237.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3237.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3237.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_3240 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_3240.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_3240.fill-grow .conditional-content--true, #gsheet_if_stacks_in_3240.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_3240.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_3240.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_3240.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_3240 .conditional-content--true, #gsheet_if_stacks_in_3240 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_3240 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_3240.conditional-content.conditional-content--false, #gsheet_if_stacks_in_3240.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_3240.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_3240.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_3240.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_3240.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_3240.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_3240.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_3240.colors-true.change-text h1, #gsheet_if_stacks_in_3240.colors-true.change-text h2, #gsheet_if_stacks_in_3240.colors-true.change-text h3, #gsheet_if_stacks_in_3240.colors-true.change-text h4, #gsheet_if_stacks_in_3240.colors-true.change-text h5, #gsheet_if_stacks_in_3240.colors-true.change-text h6, #gsheet_if_stacks_in_3240.colors-true.change-text p, #gsheet_if_stacks_in_3240.colors-true.change-text span, #gsheet_if_stacks_in_3240.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3240.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3240.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3240.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3240.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3240.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_3240.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3240.colors-false.change-text h1, #gsheet_if_stacks_in_3240.colors-false.change-text h2, #gsheet_if_stacks_in_3240.colors-false.change-text h3, #gsheet_if_stacks_in_3240.colors-false.change-text h4, #gsheet_if_stacks_in_3240.colors-false.change-text h5, #gsheet_if_stacks_in_3240.colors-false.change-text h6, #gsheet_if_stacks_in_3240.colors-false.change-text p, #gsheet_if_stacks_in_3240.colors-false.change-text span, #gsheet_if_stacks_in_3240.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3240.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3240.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3240.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3240.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_3240.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3240.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_3240.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_3240.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3242.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3242.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3242.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3242.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3242.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3242.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3242.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3242.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3242.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3242.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3242.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3242.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3242.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3242.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3242.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3242.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3242.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3242.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3242.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3242.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3242.gsheet--box h1, #gsheet_box_stacks_in_3242.gsheet--box h2, #gsheet_box_stacks_in_3242.gsheet--box h3, #gsheet_box_stacks_in_3242.gsheet--box h4, #gsheet_box_stacks_in_3242.gsheet--box h5, #gsheet_box_stacks_in_3242.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3242.gsheet--box a, #gsheet_box_stacks_in_3242.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3242.gsheet--box, #gsheet_box_stacks_in_3242.gsheet--box p, #gsheet_box_stacks_in_3242.gsheet--box span, #gsheet_box_stacks_in_3242.gsheet--box blockquote, #gsheet_box_stacks_in_3242.gsheet--box i {
    color: rgba(233, 87, 80, 1.00); }
  #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3242.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3242.gsheet--box .gsheet_box_ag_stacks_in_3242 {
    display: none; }
  #gsheet_box_stacks_in_3242.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3242.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3242.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3242.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3242.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_3244 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_3244.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_3244.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_3244 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_3244.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_3245 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_3245.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3245.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3245.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_3245.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3245.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3245.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3245.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3245.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3245.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3245.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3245.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3245.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3245.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_3248 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_3248.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_3248.fill-grow .conditional-content--true, #gsheet_if_stacks_in_3248.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_3248.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_3248.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_3248.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_3248 .conditional-content--true, #gsheet_if_stacks_in_3248 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_3248 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_3248.conditional-content.conditional-content--false, #gsheet_if_stacks_in_3248.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_3248.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_3248.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_3248.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_3248.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_3248.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_3248.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_3248.colors-true.change-text h1, #gsheet_if_stacks_in_3248.colors-true.change-text h2, #gsheet_if_stacks_in_3248.colors-true.change-text h3, #gsheet_if_stacks_in_3248.colors-true.change-text h4, #gsheet_if_stacks_in_3248.colors-true.change-text h5, #gsheet_if_stacks_in_3248.colors-true.change-text h6, #gsheet_if_stacks_in_3248.colors-true.change-text p, #gsheet_if_stacks_in_3248.colors-true.change-text span, #gsheet_if_stacks_in_3248.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3248.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3248.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3248.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3248.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3248.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_3248.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3248.colors-false.change-text h1, #gsheet_if_stacks_in_3248.colors-false.change-text h2, #gsheet_if_stacks_in_3248.colors-false.change-text h3, #gsheet_if_stacks_in_3248.colors-false.change-text h4, #gsheet_if_stacks_in_3248.colors-false.change-text h5, #gsheet_if_stacks_in_3248.colors-false.change-text h6, #gsheet_if_stacks_in_3248.colors-false.change-text p, #gsheet_if_stacks_in_3248.colors-false.change-text span, #gsheet_if_stacks_in_3248.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3248.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3248.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3248.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3248.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_3248.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3248.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_3248.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_3248.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3250.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3250.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3250.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3250.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3250.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3250.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3250.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3250.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3250.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3250.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3250.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3250.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3250.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3250.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3250.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3250.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3250.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3250.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3250.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3250.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3250.gsheet--box h1, #gsheet_box_stacks_in_3250.gsheet--box h2, #gsheet_box_stacks_in_3250.gsheet--box h3, #gsheet_box_stacks_in_3250.gsheet--box h4, #gsheet_box_stacks_in_3250.gsheet--box h5, #gsheet_box_stacks_in_3250.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3250.gsheet--box a, #gsheet_box_stacks_in_3250.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3250.gsheet--box, #gsheet_box_stacks_in_3250.gsheet--box p, #gsheet_box_stacks_in_3250.gsheet--box span, #gsheet_box_stacks_in_3250.gsheet--box blockquote, #gsheet_box_stacks_in_3250.gsheet--box i {
    color: rgba(117, 117, 117, 1.00); }
  #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3250.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3250.gsheet--box .gsheet_box_ag_stacks_in_3250 {
    display: none; }
  #gsheet_box_stacks_in_3250.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3250.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3250.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3250.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3250.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_3252 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_3252.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_3252.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_3252 i.gsheet--icon {
    color: rgba(251, 2, 7, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_3252.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_3253 {
  display: block;
  box-sizing: border-box;
  color: rgba(251, 2, 7, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_3253.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3253.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3253.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_3253.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3253.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3253.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3253.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3253.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3253.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3253.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3253.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3253.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3253.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_3256 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_3256.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_3256.fill-grow .conditional-content--true, #gsheet_if_stacks_in_3256.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_3256.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_3256.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_3256.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_3256 .conditional-content--true, #gsheet_if_stacks_in_3256 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_3256 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_3256.conditional-content.conditional-content--false, #gsheet_if_stacks_in_3256.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_3256.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_3256.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_3256.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_3256.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_3256.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_3256.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_3256.colors-true.change-text h1, #gsheet_if_stacks_in_3256.colors-true.change-text h2, #gsheet_if_stacks_in_3256.colors-true.change-text h3, #gsheet_if_stacks_in_3256.colors-true.change-text h4, #gsheet_if_stacks_in_3256.colors-true.change-text h5, #gsheet_if_stacks_in_3256.colors-true.change-text h6, #gsheet_if_stacks_in_3256.colors-true.change-text p, #gsheet_if_stacks_in_3256.colors-true.change-text span, #gsheet_if_stacks_in_3256.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3256.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3256.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3256.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3256.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3256.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_3256.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3256.colors-false.change-text h1, #gsheet_if_stacks_in_3256.colors-false.change-text h2, #gsheet_if_stacks_in_3256.colors-false.change-text h3, #gsheet_if_stacks_in_3256.colors-false.change-text h4, #gsheet_if_stacks_in_3256.colors-false.change-text h5, #gsheet_if_stacks_in_3256.colors-false.change-text h6, #gsheet_if_stacks_in_3256.colors-false.change-text p, #gsheet_if_stacks_in_3256.colors-false.change-text span, #gsheet_if_stacks_in_3256.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3256.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3256.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3256.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_3256.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_3256.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_3256.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_3256.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_3256.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3258.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3258.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3258.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3258.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3258.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3258.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3258.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3258.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3258.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3258.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3258.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3258.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3258.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3258.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3258.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3258.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3258.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3258.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3258.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3258.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3258.gsheet--box h1, #gsheet_box_stacks_in_3258.gsheet--box h2, #gsheet_box_stacks_in_3258.gsheet--box h3, #gsheet_box_stacks_in_3258.gsheet--box h4, #gsheet_box_stacks_in_3258.gsheet--box h5, #gsheet_box_stacks_in_3258.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3258.gsheet--box a, #gsheet_box_stacks_in_3258.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3258.gsheet--box, #gsheet_box_stacks_in_3258.gsheet--box p, #gsheet_box_stacks_in_3258.gsheet--box span, #gsheet_box_stacks_in_3258.gsheet--box blockquote, #gsheet_box_stacks_in_3258.gsheet--box i {
    color: rgba(239, 160, 86, 1.00); }
  #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3258.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3258.gsheet--box .gsheet_box_ag_stacks_in_3258 {
    display: none; }
  #gsheet_box_stacks_in_3258.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3258.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3258.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3258.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3258.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_3260 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_3260.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_3260.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_3260 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_3260.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_3261 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_3261.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3261.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3261.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_3261.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3261.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3261.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3261.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3261.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3261.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3261.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3261.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3261.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3261.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3264.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3264.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3264.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3264.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3264.gsheet--box.main-bg-color {
    background: rgba(248, 248, 248, 1.00); }
    #gsheet_box_stacks_in_3264.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3264.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3264.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3264.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3264.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3264.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3264.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3264.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3264.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3264.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_3264.gsheet--box.padding-True {
    padding: 10px 15px 10px 15px; }
  #gsheet_box_stacks_in_3264.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3264.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3264.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3264.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3264.gsheet--box h1, #gsheet_box_stacks_in_3264.gsheet--box h2, #gsheet_box_stacks_in_3264.gsheet--box h3, #gsheet_box_stacks_in_3264.gsheet--box h4, #gsheet_box_stacks_in_3264.gsheet--box h5, #gsheet_box_stacks_in_3264.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3264.gsheet--box a, #gsheet_box_stacks_in_3264.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3264.gsheet--box, #gsheet_box_stacks_in_3264.gsheet--box p, #gsheet_box_stacks_in_3264.gsheet--box span, #gsheet_box_stacks_in_3264.gsheet--box blockquote, #gsheet_box_stacks_in_3264.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3264.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3264.gsheet--box .gsheet_box_ag_stacks_in_3264 {
    display: none; }
  #gsheet_box_stacks_in_3264.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3264.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3264.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3264.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 1200px) {
  #gsheet_box_stacks_in_3264.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3266.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3266.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3266.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3266.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3266.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3266.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3266.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3266.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3266.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3266.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3266.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3266.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3266.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3266.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3266.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3266.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3266.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3266.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3266.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3266.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3266.gsheet--box h1, #gsheet_box_stacks_in_3266.gsheet--box h2, #gsheet_box_stacks_in_3266.gsheet--box h3, #gsheet_box_stacks_in_3266.gsheet--box h4, #gsheet_box_stacks_in_3266.gsheet--box h5, #gsheet_box_stacks_in_3266.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3266.gsheet--box a, #gsheet_box_stacks_in_3266.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3266.gsheet--box, #gsheet_box_stacks_in_3266.gsheet--box p, #gsheet_box_stacks_in_3266.gsheet--box span, #gsheet_box_stacks_in_3266.gsheet--box blockquote, #gsheet_box_stacks_in_3266.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3266.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3266.gsheet--box .gsheet_box_ag_stacks_in_3266 {
    display: none; }
  #gsheet_box_stacks_in_3266.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3266.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3266.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3266.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3266.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_3268 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_3268.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3268.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3268.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_3268.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3268.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3268.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3268.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3268.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3268.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3268.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3268.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3268.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3268.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_3270 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_3270.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3270.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3270.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_3270.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3270.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3270.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3270.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3270.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3270.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3270.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3270.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3270.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3270.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3272.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3272.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3272.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3272.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3272.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3272.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3272.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3272.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3272.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3272.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3272.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3272.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3272.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3272.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3272.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3272.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3272.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3272.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3272.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3272.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3272.gsheet--box h1, #gsheet_box_stacks_in_3272.gsheet--box h2, #gsheet_box_stacks_in_3272.gsheet--box h3, #gsheet_box_stacks_in_3272.gsheet--box h4, #gsheet_box_stacks_in_3272.gsheet--box h5, #gsheet_box_stacks_in_3272.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3272.gsheet--box a, #gsheet_box_stacks_in_3272.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3272.gsheet--box, #gsheet_box_stacks_in_3272.gsheet--box p, #gsheet_box_stacks_in_3272.gsheet--box span, #gsheet_box_stacks_in_3272.gsheet--box blockquote, #gsheet_box_stacks_in_3272.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3272.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3272.gsheet--box .gsheet_box_ag_stacks_in_3272 {
    display: none; }
  #gsheet_box_stacks_in_3272.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3272.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3272.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3272.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3272.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_3274 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_3274.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3274.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3274.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_3274.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3274.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3274.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3274.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3274.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3274.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3274.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3274.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3274.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3274.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_3276 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_3276.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3276.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3276.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_3276.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3276.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3276.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3276.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3276.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3276.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3276.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3276.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3276.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3276.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3278.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3278.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3278.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3278.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3278.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3278.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3278.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3278.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3278.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3278.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3278.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3278.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3278.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3278.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3278.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3278.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3278.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3278.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3278.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3278.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3278.gsheet--box h1, #gsheet_box_stacks_in_3278.gsheet--box h2, #gsheet_box_stacks_in_3278.gsheet--box h3, #gsheet_box_stacks_in_3278.gsheet--box h4, #gsheet_box_stacks_in_3278.gsheet--box h5, #gsheet_box_stacks_in_3278.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3278.gsheet--box a, #gsheet_box_stacks_in_3278.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3278.gsheet--box, #gsheet_box_stacks_in_3278.gsheet--box p, #gsheet_box_stacks_in_3278.gsheet--box span, #gsheet_box_stacks_in_3278.gsheet--box blockquote, #gsheet_box_stacks_in_3278.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3278.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3278.gsheet--box .gsheet_box_ag_stacks_in_3278 {
    display: none; }
  #gsheet_box_stacks_in_3278.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3278.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3278.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3278.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3278.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_3280 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_3280.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3280.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3280.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_3280.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3280.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3280.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3280.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3280.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3280.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3280.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3280.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3280.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3280.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_3282 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_3282.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3282.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3282.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_3282.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3282.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3282.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3282.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3282.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3282.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3282.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3282.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3282.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3282.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_3284.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_3284.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3284.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3284.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_3284.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_3284.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3284.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_3284.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3284.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_3284.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_3284.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3284.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_3284.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_3284.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_3284.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_3284.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3284.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_3284.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3284.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_3284.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_3284.gsheet--box h1, #gsheet_box_stacks_in_3284.gsheet--box h2, #gsheet_box_stacks_in_3284.gsheet--box h3, #gsheet_box_stacks_in_3284.gsheet--box h4, #gsheet_box_stacks_in_3284.gsheet--box h5, #gsheet_box_stacks_in_3284.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3284.gsheet--box a, #gsheet_box_stacks_in_3284.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_3284.gsheet--box, #gsheet_box_stacks_in_3284.gsheet--box p, #gsheet_box_stacks_in_3284.gsheet--box span, #gsheet_box_stacks_in_3284.gsheet--box blockquote, #gsheet_box_stacks_in_3284.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_3284.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_3284.gsheet--box .gsheet_box_ag_stacks_in_3284 {
    display: none; }
  #gsheet_box_stacks_in_3284.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_3284.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_3284.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_3284.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_3284.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_3286 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_3286.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3286.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3286.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_3286.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3286.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3286.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3286.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3286.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3286.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3286.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3286.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3286.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3286.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_3288 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_3288.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_3288.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_3288.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_3288.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_3288.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_3288.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_3288.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_3288.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_3288.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_3288.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_3288.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_3288.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_3288.gsheet-text--upper {
    text-align: inherit; }
#stacks_in_2417 *,
#stacks_in_2417 *:before,
#stacks_in_2417 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2419 {
  overflow: visible;
}
#pureText_stacks_in_2419 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2419 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2419 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2419 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2419 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2419.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2419.fontSizeInheritOff, #pureText_stacks_in_2419.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_2419.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2419.lineHeightOn, #pureText_stacks_in_2419.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2419.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2419.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2419 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2419 p.insideText,
#pureText_stacks_in_2419 .insideText p,
#pureText_stacks_in_2419 h1.insideText,
#pureText_stacks_in_2419 h2.insideText,
#pureText_stacks_in_2419 h3.insideText,
#pureText_stacks_in_2419 h4.insideText,
#pureText_stacks_in_2419 h5.insideText,
#pureText_stacks_in_2419 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2419 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_2420 {
	font-size: 120%;
}
#stacks_in_2427 *,
#stacks_in_2427 *:before,
#stacks_in_2427 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2429 {
  overflow: visible;
}
#pureText_stacks_in_2429 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2429 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2429 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2429 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2429 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2429.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2429.fontSizeInheritOff, #pureText_stacks_in_2429.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2429.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2429.lineHeightOn, #pureText_stacks_in_2429.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2429.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2429.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2429 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2429 p.insideText,
#pureText_stacks_in_2429 .insideText p,
#pureText_stacks_in_2429 h1.insideText,
#pureText_stacks_in_2429 h2.insideText,
#pureText_stacks_in_2429 h3.insideText,
#pureText_stacks_in_2429 h4.insideText,
#pureText_stacks_in_2429 h5.insideText,
#pureText_stacks_in_2429 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2429 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2430 {
	word-spacing: -1px;
}
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2467.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2467.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2467.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2467.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2467.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2467.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2467.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2467.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2467.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2467.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2467.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2467.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2467.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2467.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2467.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2467.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2467.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2467.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2467.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2467.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2467.gsheet--box h1, #gsheet_box_stacks_in_2467.gsheet--box h2, #gsheet_box_stacks_in_2467.gsheet--box h3, #gsheet_box_stacks_in_2467.gsheet--box h4, #gsheet_box_stacks_in_2467.gsheet--box h5, #gsheet_box_stacks_in_2467.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2467.gsheet--box a, #gsheet_box_stacks_in_2467.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2467.gsheet--box, #gsheet_box_stacks_in_2467.gsheet--box p, #gsheet_box_stacks_in_2467.gsheet--box span, #gsheet_box_stacks_in_2467.gsheet--box blockquote, #gsheet_box_stacks_in_2467.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2467.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2467.gsheet--box .gsheet_box_ag_stacks_in_2467 {
    display: none; }
  #gsheet_box_stacks_in_2467.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2467.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2467.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2467.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2467.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2469.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 1300px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2469.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2469.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2469.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2469.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2469.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2469.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2469.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2469.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2469.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2469.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2469.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2469.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2469.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2469.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2469.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2469.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2469.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2469.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2469.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2469.gsheet--box h1, #gsheet_box_stacks_in_2469.gsheet--box h2, #gsheet_box_stacks_in_2469.gsheet--box h3, #gsheet_box_stacks_in_2469.gsheet--box h4, #gsheet_box_stacks_in_2469.gsheet--box h5, #gsheet_box_stacks_in_2469.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2469.gsheet--box a, #gsheet_box_stacks_in_2469.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2469.gsheet--box, #gsheet_box_stacks_in_2469.gsheet--box p, #gsheet_box_stacks_in_2469.gsheet--box span, #gsheet_box_stacks_in_2469.gsheet--box blockquote, #gsheet_box_stacks_in_2469.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2469.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2469.gsheet--box .gsheet_box_ag_stacks_in_2469 {
    display: none; }
  #gsheet_box_stacks_in_2469.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2469.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2469.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2469.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2469.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2471.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2471.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2471.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2471.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2471.gsheet--box.main-bg-color {
    background: rgba(0, 0, 0, 1.00); }
    #gsheet_box_stacks_in_2471.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2471.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2471.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2471.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2471.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2471.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2471.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2471.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2471.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2471.gsheet--box.padding-False {
    padding: 20px; }
  #gsheet_box_stacks_in_2471.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2471.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2471.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2471.gsheet--box.radius-False {
    border-radius: 20px; }
  #gsheet_box_stacks_in_2471.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2471.gsheet--box h1, #gsheet_box_stacks_in_2471.gsheet--box h2, #gsheet_box_stacks_in_2471.gsheet--box h3, #gsheet_box_stacks_in_2471.gsheet--box h4, #gsheet_box_stacks_in_2471.gsheet--box h5, #gsheet_box_stacks_in_2471.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2471.gsheet--box a, #gsheet_box_stacks_in_2471.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2471.gsheet--box, #gsheet_box_stacks_in_2471.gsheet--box p, #gsheet_box_stacks_in_2471.gsheet--box span, #gsheet_box_stacks_in_2471.gsheet--box blockquote, #gsheet_box_stacks_in_2471.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2471.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2471.gsheet--box .gsheet_box_ag_stacks_in_2471 {
    display: none; }
  #gsheet_box_stacks_in_2471.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2471.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2471.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2471.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 800px) {
  #gsheet_box_stacks_in_2471.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_stacks_in_2473 {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex: 1 0 auto;
  overflow: visible;
  box-sizing: border-box;
  flex-direction: column;
  max-width: 5000px; }
  #gsheet_stacks_in_2473 .gsheet--tutorial {
    display: none; }
  #gsheet_stacks_in_2473 .gsheet--data-notice {
    display: none; }
  #gsheet_stacks_in_2473.repeated-rows .gsheet--individual {
    display: none; }
  #gsheet_stacks_in_2473.cell-by-cell .gsheet--repeat {
    display: none; }
  #gsheet_stacks_in_2473.show-search .gsheet--search {
    display: block; }

#gsheet_search_stacks_in_2473.gsheet--search {
  display: none; }
  #gsheet_search_stacks_in_2473.gsheet--search input {
    width: 100%;
    height: auto;
    line-height: 1;
    box-shadow: none;
    border-style: solid;
    outline: none !important;
    margin-bottom: px;
    color: ;
    background: ;
    font-size: px;
    border-radius: px;
    border-color: ;
    padding: px px;
    border-width: px px px px; }

#gsheet_repeat_stacks_in_2473 {
  width: 100%;
  flex: 0 1 auto;
  overflow: visible;
  box-sizing: border-box; }
  #gsheet_repeat_stacks_in_2473 .gsheet--grid {
    width: calc(100% + 15px);
    margin: 0 auto -15px auto;
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    flex-direction: row;
    box-sizing: border-box;
    justify-content: flex-start; }
    #gsheet_repeat_stacks_in_2473 .gsheet--grid .gsheet--item {
      flex: 0 1 auto;
      padding-right: 15px;
      padding-bottom: 15px; }
      #gsheet_repeat_stacks_in_2473 .gsheet--grid .gsheet--item.row-show {
        display: flex; }
      #gsheet_repeat_stacks_in_2473 .gsheet--grid .gsheet--item.row-hide {
        display: none; }

@media (min-width: 1000px) {
  #gsheet_repeat_stacks_in_2473 .gsheet--grid .gsheet--item {
    width: calc(100%/4); } }

@media (max-width: 1000px) {
  #gsheet_repeat_stacks_in_2473 .gsheet--grid .gsheet--item {
    width: calc(100%/2); } }

@media (max-width: 600px) {
  #gsheet_repeat_stacks_in_2473 .gsheet--grid .gsheet--item {
    width: calc(100%/1); } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2475.gsheet--box {
  display: flex;
  position: relative;
  overflow: visible;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2475.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2475.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2475.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2475.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2475.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2475.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2475.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2475.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2475.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2475.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2475.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2475.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2475.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2475.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2475.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2475.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2475.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2475.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2475.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2475.gsheet--box h1, #gsheet_box_stacks_in_2475.gsheet--box h2, #gsheet_box_stacks_in_2475.gsheet--box h3, #gsheet_box_stacks_in_2475.gsheet--box h4, #gsheet_box_stacks_in_2475.gsheet--box h5, #gsheet_box_stacks_in_2475.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2475.gsheet--box a, #gsheet_box_stacks_in_2475.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2475.gsheet--box, #gsheet_box_stacks_in_2475.gsheet--box p, #gsheet_box_stacks_in_2475.gsheet--box span, #gsheet_box_stacks_in_2475.gsheet--box blockquote, #gsheet_box_stacks_in_2475.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2475.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2475.gsheet--box .gsheet_box_ag_stacks_in_2475 {
    display: none; }
  #gsheet_box_stacks_in_2475.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2475.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2475.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2475.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2475.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2477.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10); }
  #gsheet_box_stacks_in_2477.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2477.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2477.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2477.gsheet--box.main-bg-color {
    background: rgba(255, 255, 255, 1.00); }
    #gsheet_box_stacks_in_2477.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2477.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2477.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2477.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2477.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2477.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2477.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2477.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2477.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2477.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2477.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2477.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2477.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2477.gsheet--box.radius-False {
    border-radius: 10px; }
  #gsheet_box_stacks_in_2477.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2477.gsheet--box h1, #gsheet_box_stacks_in_2477.gsheet--box h2, #gsheet_box_stacks_in_2477.gsheet--box h3, #gsheet_box_stacks_in_2477.gsheet--box h4, #gsheet_box_stacks_in_2477.gsheet--box h5, #gsheet_box_stacks_in_2477.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2477.gsheet--box a, #gsheet_box_stacks_in_2477.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2477.gsheet--box, #gsheet_box_stacks_in_2477.gsheet--box p, #gsheet_box_stacks_in_2477.gsheet--box span, #gsheet_box_stacks_in_2477.gsheet--box blockquote, #gsheet_box_stacks_in_2477.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2477.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2477.gsheet--box .gsheet_box_ag_stacks_in_2477 {
    display: none; }
  #gsheet_box_stacks_in_2477.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2477.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2477.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2477.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2477.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_image_stacks_in_2479 {
  width: 100%;
  flex: 0 1 auto;
  display: flex;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  height: 200px;
  max-width: 1000px; }
  #gsheet_image_stacks_in_2479.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_2479.margin-False {
    margin: 0px; }
  #gsheet_image_stacks_in_2479.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_2479.radius-False {
    border-radius: 0px; }
  #gsheet_image_stacks_in_2479 div.gsheet--image, #gsheet_image_stacks_in_2479 img.gsheet--image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  #gsheet_image_stacks_in_2479 img {
    border: 0 !important;
    border-style: none !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2480.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 5000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2480.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2480.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2480.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2480.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2480.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2480.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2480.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2480.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2480.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2480.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2480.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2480.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2480.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2480.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_2480.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2480.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2480.gsheet--box.margin-True {
    margin: -30px 0px 0px 0px; }
  #gsheet_box_stacks_in_2480.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2480.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2480.gsheet--box h1, #gsheet_box_stacks_in_2480.gsheet--box h2, #gsheet_box_stacks_in_2480.gsheet--box h3, #gsheet_box_stacks_in_2480.gsheet--box h4, #gsheet_box_stacks_in_2480.gsheet--box h5, #gsheet_box_stacks_in_2480.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2480.gsheet--box a, #gsheet_box_stacks_in_2480.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2480.gsheet--box, #gsheet_box_stacks_in_2480.gsheet--box p, #gsheet_box_stacks_in_2480.gsheet--box span, #gsheet_box_stacks_in_2480.gsheet--box blockquote, #gsheet_box_stacks_in_2480.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2480.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2480.gsheet--box .gsheet_box_ag_stacks_in_2480 {
    display: none; }
  #gsheet_box_stacks_in_2480.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2480.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2480.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2480.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2480.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_if_stacks_in_2482 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_2482.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_2482.fill-grow .conditional-content--true, #gsheet_if_stacks_in_2482.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_2482.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_2482.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_2482.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_2482 .conditional-content--true, #gsheet_if_stacks_in_2482 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_2482 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_2482.conditional-content.conditional-content--false, #gsheet_if_stacks_in_2482.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_2482.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_2482.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_2482.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_2482.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_2482.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_2482.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_2482.colors-true.change-text h1, #gsheet_if_stacks_in_2482.colors-true.change-text h2, #gsheet_if_stacks_in_2482.colors-true.change-text h3, #gsheet_if_stacks_in_2482.colors-true.change-text h4, #gsheet_if_stacks_in_2482.colors-true.change-text h5, #gsheet_if_stacks_in_2482.colors-true.change-text h6, #gsheet_if_stacks_in_2482.colors-true.change-text p, #gsheet_if_stacks_in_2482.colors-true.change-text span, #gsheet_if_stacks_in_2482.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2482.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2482.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2482.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2482.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2482.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_2482.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2482.colors-false.change-text h1, #gsheet_if_stacks_in_2482.colors-false.change-text h2, #gsheet_if_stacks_in_2482.colors-false.change-text h3, #gsheet_if_stacks_in_2482.colors-false.change-text h4, #gsheet_if_stacks_in_2482.colors-false.change-text h5, #gsheet_if_stacks_in_2482.colors-false.change-text h6, #gsheet_if_stacks_in_2482.colors-false.change-text p, #gsheet_if_stacks_in_2482.colors-false.change-text span, #gsheet_if_stacks_in_2482.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2482.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2482.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2482.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2482.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_2482.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2482.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_2482.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_2482.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_2484 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_2484.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_2484.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_2484 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-color {
      background: rgba(128, 128, 4, 1.00); }
      #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(128, 128, 4, 1.00), rgba(90, 91, 7, 1.00)); }
      #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_2484 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_2484 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_2484 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_2484 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_2484 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_2484 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_2484 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_2484 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_2484 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_2487 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_2487.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_2487.fill-grow .conditional-content--true, #gsheet_if_stacks_in_2487.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_2487.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_2487.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_2487.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_2487 .conditional-content--true, #gsheet_if_stacks_in_2487 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_2487 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_2487.conditional-content.conditional-content--false, #gsheet_if_stacks_in_2487.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_2487.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_2487.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_2487.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_2487.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_2487.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_2487.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_2487.colors-true.change-text h1, #gsheet_if_stacks_in_2487.colors-true.change-text h2, #gsheet_if_stacks_in_2487.colors-true.change-text h3, #gsheet_if_stacks_in_2487.colors-true.change-text h4, #gsheet_if_stacks_in_2487.colors-true.change-text h5, #gsheet_if_stacks_in_2487.colors-true.change-text h6, #gsheet_if_stacks_in_2487.colors-true.change-text p, #gsheet_if_stacks_in_2487.colors-true.change-text span, #gsheet_if_stacks_in_2487.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2487.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2487.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2487.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2487.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2487.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_2487.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2487.colors-false.change-text h1, #gsheet_if_stacks_in_2487.colors-false.change-text h2, #gsheet_if_stacks_in_2487.colors-false.change-text h3, #gsheet_if_stacks_in_2487.colors-false.change-text h4, #gsheet_if_stacks_in_2487.colors-false.change-text h5, #gsheet_if_stacks_in_2487.colors-false.change-text h6, #gsheet_if_stacks_in_2487.colors-false.change-text p, #gsheet_if_stacks_in_2487.colors-false.change-text span, #gsheet_if_stacks_in_2487.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2487.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2487.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2487.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2487.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_2487.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2487.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_2487.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_2487.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_2489 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_2489.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_2489.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_2489 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-color {
      background: rgba(15, 128, 255, 1.00); }
      #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(15, 128, 255, 1.00), rgba(18, 101, 255, 1.00)); }
      #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_2489 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_2489 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_2489 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_2489 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_2489 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_2489 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_2489 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_2489 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_2489 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_2492 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_2492.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_2492.fill-grow .conditional-content--true, #gsheet_if_stacks_in_2492.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_2492.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_2492.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_2492.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_2492 .conditional-content--true, #gsheet_if_stacks_in_2492 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_2492 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_2492.conditional-content.conditional-content--false, #gsheet_if_stacks_in_2492.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_2492.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_2492.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_2492.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_2492.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_2492.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_2492.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_2492.colors-true.change-text h1, #gsheet_if_stacks_in_2492.colors-true.change-text h2, #gsheet_if_stacks_in_2492.colors-true.change-text h3, #gsheet_if_stacks_in_2492.colors-true.change-text h4, #gsheet_if_stacks_in_2492.colors-true.change-text h5, #gsheet_if_stacks_in_2492.colors-true.change-text h6, #gsheet_if_stacks_in_2492.colors-true.change-text p, #gsheet_if_stacks_in_2492.colors-true.change-text span, #gsheet_if_stacks_in_2492.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2492.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2492.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2492.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2492.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2492.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_2492.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2492.colors-false.change-text h1, #gsheet_if_stacks_in_2492.colors-false.change-text h2, #gsheet_if_stacks_in_2492.colors-false.change-text h3, #gsheet_if_stacks_in_2492.colors-false.change-text h4, #gsheet_if_stacks_in_2492.colors-false.change-text h5, #gsheet_if_stacks_in_2492.colors-false.change-text h6, #gsheet_if_stacks_in_2492.colors-false.change-text p, #gsheet_if_stacks_in_2492.colors-false.change-text span, #gsheet_if_stacks_in_2492.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2492.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2492.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2492.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2492.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_2492.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2492.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_2492.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_2492.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_2494 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_2494.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_2494.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_2494 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-color {
      background: rgba(251, 2, 7, 1.00); }
      #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(245, 207, 115, 1.00), rgba(241, 149, 63, 1.00)); }
      #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_2494 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_2494 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_2494 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_2494 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_2494 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_2494 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_2494 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_2494 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_2494 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_2497 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_2497.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_2497.fill-grow .conditional-content--true, #gsheet_if_stacks_in_2497.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_2497.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_2497.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_2497.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_2497 .conditional-content--true, #gsheet_if_stacks_in_2497 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_2497 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_2497.conditional-content.conditional-content--false, #gsheet_if_stacks_in_2497.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_2497.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_2497.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_2497.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_2497.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_2497.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_2497.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_2497.colors-true.change-text h1, #gsheet_if_stacks_in_2497.colors-true.change-text h2, #gsheet_if_stacks_in_2497.colors-true.change-text h3, #gsheet_if_stacks_in_2497.colors-true.change-text h4, #gsheet_if_stacks_in_2497.colors-true.change-text h5, #gsheet_if_stacks_in_2497.colors-true.change-text h6, #gsheet_if_stacks_in_2497.colors-true.change-text p, #gsheet_if_stacks_in_2497.colors-true.change-text span, #gsheet_if_stacks_in_2497.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2497.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2497.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2497.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2497.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2497.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_2497.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2497.colors-false.change-text h1, #gsheet_if_stacks_in_2497.colors-false.change-text h2, #gsheet_if_stacks_in_2497.colors-false.change-text h3, #gsheet_if_stacks_in_2497.colors-false.change-text h4, #gsheet_if_stacks_in_2497.colors-false.change-text h5, #gsheet_if_stacks_in_2497.colors-false.change-text h6, #gsheet_if_stacks_in_2497.colors-false.change-text p, #gsheet_if_stacks_in_2497.colors-false.change-text span, #gsheet_if_stacks_in_2497.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2497.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2497.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2497.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2497.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_2497.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2497.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_2497.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_2497.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_2499 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_2499.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_2499.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_2499 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(254, 252, 255, 1.00); }
    #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-color {
      background: rgba(200, 104, 13, 1.00); }
      #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(250, 250, 250, 1.00), rgba(189, 189, 189, 1.00)); }
      #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_2499 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_2499 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-color {
        background: rgba(253, 128, 8, 1.00); }
        #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_2499 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_2499 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_2499 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_2499 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_2499 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_2499 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_2499 a.gsheet--button.padding-False {
      padding: 12px; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2502.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2502.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2502.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2502.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2502.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2502.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2502.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2502.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2502.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2502.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2502.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2502.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2502.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2502.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2502.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_2502.gsheet--box.padding-True {
    padding: 20px 10px 10px 10px; }
  #gsheet_box_stacks_in_2502.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2502.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2502.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2502.gsheet--box.radius-True {
    border-radius: 0px 0px 10px 10px; }
  #gsheet_box_stacks_in_2502.gsheet--box h1, #gsheet_box_stacks_in_2502.gsheet--box h2, #gsheet_box_stacks_in_2502.gsheet--box h3, #gsheet_box_stacks_in_2502.gsheet--box h4, #gsheet_box_stacks_in_2502.gsheet--box h5, #gsheet_box_stacks_in_2502.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2502.gsheet--box a, #gsheet_box_stacks_in_2502.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2502.gsheet--box, #gsheet_box_stacks_in_2502.gsheet--box p, #gsheet_box_stacks_in_2502.gsheet--box span, #gsheet_box_stacks_in_2502.gsheet--box blockquote, #gsheet_box_stacks_in_2502.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2502.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2502.gsheet--box .gsheet_box_ag_stacks_in_2502 {
    display: none; }
  #gsheet_box_stacks_in_2502.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2502.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2502.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2502.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2502.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_2504 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 16px;
  line-height: 25.888000px; }
  #gsheet_text_stacks_in_2504.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2504.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2504.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_2504.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2504.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2504.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2504.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2504.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2504.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2504.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2504.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2504.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2504.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_2506 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 0.50);
  font-size: 12px;
  line-height: 19.416000px; }
  #gsheet_text_stacks_in_2506.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2506.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2506.margin-True {
    margin: 0px 0px 20px 0px; }
  #gsheet_text_stacks_in_2506.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2506.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2506.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2506.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2506.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2506.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2506.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2506.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2506.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2506.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_2508 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_2508.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_2508.fill-grow .conditional-content--true, #gsheet_if_stacks_in_2508.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_2508.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_2508.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_2508.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_2508 .conditional-content--true, #gsheet_if_stacks_in_2508 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_2508 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_2508.conditional-content.conditional-content--false, #gsheet_if_stacks_in_2508.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_2508.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_2508.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_2508.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_2508.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_2508.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_2508.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_2508.colors-true.change-text h1, #gsheet_if_stacks_in_2508.colors-true.change-text h2, #gsheet_if_stacks_in_2508.colors-true.change-text h3, #gsheet_if_stacks_in_2508.colors-true.change-text h4, #gsheet_if_stacks_in_2508.colors-true.change-text h5, #gsheet_if_stacks_in_2508.colors-true.change-text h6, #gsheet_if_stacks_in_2508.colors-true.change-text p, #gsheet_if_stacks_in_2508.colors-true.change-text span, #gsheet_if_stacks_in_2508.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2508.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2508.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2508.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2508.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2508.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_2508.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2508.colors-false.change-text h1, #gsheet_if_stacks_in_2508.colors-false.change-text h2, #gsheet_if_stacks_in_2508.colors-false.change-text h3, #gsheet_if_stacks_in_2508.colors-false.change-text h4, #gsheet_if_stacks_in_2508.colors-false.change-text h5, #gsheet_if_stacks_in_2508.colors-false.change-text h6, #gsheet_if_stacks_in_2508.colors-false.change-text p, #gsheet_if_stacks_in_2508.colors-false.change-text span, #gsheet_if_stacks_in_2508.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2508.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2508.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2508.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2508.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_2508.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2508.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_2508.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_2508.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2510.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2510.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2510.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2510.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2510.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2510.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2510.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2510.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2510.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2510.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2510.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2510.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2510.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2510.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2510.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2510.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2510.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2510.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2510.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2510.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2510.gsheet--box h1, #gsheet_box_stacks_in_2510.gsheet--box h2, #gsheet_box_stacks_in_2510.gsheet--box h3, #gsheet_box_stacks_in_2510.gsheet--box h4, #gsheet_box_stacks_in_2510.gsheet--box h5, #gsheet_box_stacks_in_2510.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2510.gsheet--box a, #gsheet_box_stacks_in_2510.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2510.gsheet--box, #gsheet_box_stacks_in_2510.gsheet--box p, #gsheet_box_stacks_in_2510.gsheet--box span, #gsheet_box_stacks_in_2510.gsheet--box blockquote, #gsheet_box_stacks_in_2510.gsheet--box i {
    color: rgba(116, 206, 87, 1.00); }
  #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2510.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2510.gsheet--box .gsheet_box_ag_stacks_in_2510 {
    display: none; }
  #gsheet_box_stacks_in_2510.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2510.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2510.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2510.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2510.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_2512 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_2512.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_2512.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_2512 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_2512.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_2513 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_2513.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2513.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2513.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_2513.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2513.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2513.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2513.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2513.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2513.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2513.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2513.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2513.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2513.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_2516 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_2516.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_2516.fill-grow .conditional-content--true, #gsheet_if_stacks_in_2516.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_2516.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_2516.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_2516.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_2516 .conditional-content--true, #gsheet_if_stacks_in_2516 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_2516 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_2516.conditional-content.conditional-content--false, #gsheet_if_stacks_in_2516.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_2516.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_2516.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_2516.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_2516.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_2516.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_2516.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_2516.colors-true.change-text h1, #gsheet_if_stacks_in_2516.colors-true.change-text h2, #gsheet_if_stacks_in_2516.colors-true.change-text h3, #gsheet_if_stacks_in_2516.colors-true.change-text h4, #gsheet_if_stacks_in_2516.colors-true.change-text h5, #gsheet_if_stacks_in_2516.colors-true.change-text h6, #gsheet_if_stacks_in_2516.colors-true.change-text p, #gsheet_if_stacks_in_2516.colors-true.change-text span, #gsheet_if_stacks_in_2516.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2516.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2516.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2516.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2516.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2516.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_2516.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2516.colors-false.change-text h1, #gsheet_if_stacks_in_2516.colors-false.change-text h2, #gsheet_if_stacks_in_2516.colors-false.change-text h3, #gsheet_if_stacks_in_2516.colors-false.change-text h4, #gsheet_if_stacks_in_2516.colors-false.change-text h5, #gsheet_if_stacks_in_2516.colors-false.change-text h6, #gsheet_if_stacks_in_2516.colors-false.change-text p, #gsheet_if_stacks_in_2516.colors-false.change-text span, #gsheet_if_stacks_in_2516.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2516.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2516.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2516.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2516.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_2516.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2516.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_2516.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_2516.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2518.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2518.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2518.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2518.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2518.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2518.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2518.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2518.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2518.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2518.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2518.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2518.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2518.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2518.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2518.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2518.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2518.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2518.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2518.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2518.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2518.gsheet--box h1, #gsheet_box_stacks_in_2518.gsheet--box h2, #gsheet_box_stacks_in_2518.gsheet--box h3, #gsheet_box_stacks_in_2518.gsheet--box h4, #gsheet_box_stacks_in_2518.gsheet--box h5, #gsheet_box_stacks_in_2518.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2518.gsheet--box a, #gsheet_box_stacks_in_2518.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2518.gsheet--box, #gsheet_box_stacks_in_2518.gsheet--box p, #gsheet_box_stacks_in_2518.gsheet--box span, #gsheet_box_stacks_in_2518.gsheet--box blockquote, #gsheet_box_stacks_in_2518.gsheet--box i {
    color: rgba(233, 87, 80, 1.00); }
  #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2518.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2518.gsheet--box .gsheet_box_ag_stacks_in_2518 {
    display: none; }
  #gsheet_box_stacks_in_2518.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2518.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2518.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2518.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2518.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_2520 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_2520.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_2520.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_2520 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_2520.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_2521 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_2521.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2521.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2521.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_2521.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2521.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2521.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2521.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2521.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2521.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2521.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2521.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2521.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2521.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_2524 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_2524.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_2524.fill-grow .conditional-content--true, #gsheet_if_stacks_in_2524.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_2524.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_2524.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_2524.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_2524 .conditional-content--true, #gsheet_if_stacks_in_2524 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_2524 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_2524.conditional-content.conditional-content--false, #gsheet_if_stacks_in_2524.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_2524.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_2524.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_2524.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_2524.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_2524.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_2524.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_2524.colors-true.change-text h1, #gsheet_if_stacks_in_2524.colors-true.change-text h2, #gsheet_if_stacks_in_2524.colors-true.change-text h3, #gsheet_if_stacks_in_2524.colors-true.change-text h4, #gsheet_if_stacks_in_2524.colors-true.change-text h5, #gsheet_if_stacks_in_2524.colors-true.change-text h6, #gsheet_if_stacks_in_2524.colors-true.change-text p, #gsheet_if_stacks_in_2524.colors-true.change-text span, #gsheet_if_stacks_in_2524.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2524.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2524.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2524.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2524.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2524.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_2524.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2524.colors-false.change-text h1, #gsheet_if_stacks_in_2524.colors-false.change-text h2, #gsheet_if_stacks_in_2524.colors-false.change-text h3, #gsheet_if_stacks_in_2524.colors-false.change-text h4, #gsheet_if_stacks_in_2524.colors-false.change-text h5, #gsheet_if_stacks_in_2524.colors-false.change-text h6, #gsheet_if_stacks_in_2524.colors-false.change-text p, #gsheet_if_stacks_in_2524.colors-false.change-text span, #gsheet_if_stacks_in_2524.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2524.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2524.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2524.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2524.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_2524.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2524.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_2524.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_2524.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2526.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2526.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2526.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2526.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2526.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2526.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2526.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2526.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2526.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2526.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2526.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2526.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2526.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2526.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2526.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2526.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2526.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2526.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2526.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2526.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2526.gsheet--box h1, #gsheet_box_stacks_in_2526.gsheet--box h2, #gsheet_box_stacks_in_2526.gsheet--box h3, #gsheet_box_stacks_in_2526.gsheet--box h4, #gsheet_box_stacks_in_2526.gsheet--box h5, #gsheet_box_stacks_in_2526.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2526.gsheet--box a, #gsheet_box_stacks_in_2526.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2526.gsheet--box, #gsheet_box_stacks_in_2526.gsheet--box p, #gsheet_box_stacks_in_2526.gsheet--box span, #gsheet_box_stacks_in_2526.gsheet--box blockquote, #gsheet_box_stacks_in_2526.gsheet--box i {
    color: rgba(117, 117, 117, 1.00); }
  #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2526.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2526.gsheet--box .gsheet_box_ag_stacks_in_2526 {
    display: none; }
  #gsheet_box_stacks_in_2526.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2526.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2526.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2526.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2526.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_2528 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_2528.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_2528.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_2528 i.gsheet--icon {
    color: rgba(251, 2, 7, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_2528.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_2529 {
  display: block;
  box-sizing: border-box;
  color: rgba(251, 2, 7, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_2529.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2529.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2529.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_2529.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2529.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2529.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2529.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2529.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2529.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2529.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2529.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2529.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2529.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_2532 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_2532.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_2532.fill-grow .conditional-content--true, #gsheet_if_stacks_in_2532.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_2532.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_2532.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_2532.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_2532 .conditional-content--true, #gsheet_if_stacks_in_2532 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_2532 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_2532.conditional-content.conditional-content--false, #gsheet_if_stacks_in_2532.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_2532.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_2532.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_2532.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_2532.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_2532.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_2532.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_2532.colors-true.change-text h1, #gsheet_if_stacks_in_2532.colors-true.change-text h2, #gsheet_if_stacks_in_2532.colors-true.change-text h3, #gsheet_if_stacks_in_2532.colors-true.change-text h4, #gsheet_if_stacks_in_2532.colors-true.change-text h5, #gsheet_if_stacks_in_2532.colors-true.change-text h6, #gsheet_if_stacks_in_2532.colors-true.change-text p, #gsheet_if_stacks_in_2532.colors-true.change-text span, #gsheet_if_stacks_in_2532.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2532.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2532.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2532.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2532.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2532.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_2532.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2532.colors-false.change-text h1, #gsheet_if_stacks_in_2532.colors-false.change-text h2, #gsheet_if_stacks_in_2532.colors-false.change-text h3, #gsheet_if_stacks_in_2532.colors-false.change-text h4, #gsheet_if_stacks_in_2532.colors-false.change-text h5, #gsheet_if_stacks_in_2532.colors-false.change-text h6, #gsheet_if_stacks_in_2532.colors-false.change-text p, #gsheet_if_stacks_in_2532.colors-false.change-text span, #gsheet_if_stacks_in_2532.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2532.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2532.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2532.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_2532.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_2532.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_2532.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_2532.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_2532.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2534.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2534.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2534.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2534.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2534.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2534.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2534.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2534.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2534.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2534.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2534.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2534.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2534.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2534.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2534.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2534.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2534.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2534.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2534.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2534.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2534.gsheet--box h1, #gsheet_box_stacks_in_2534.gsheet--box h2, #gsheet_box_stacks_in_2534.gsheet--box h3, #gsheet_box_stacks_in_2534.gsheet--box h4, #gsheet_box_stacks_in_2534.gsheet--box h5, #gsheet_box_stacks_in_2534.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2534.gsheet--box a, #gsheet_box_stacks_in_2534.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2534.gsheet--box, #gsheet_box_stacks_in_2534.gsheet--box p, #gsheet_box_stacks_in_2534.gsheet--box span, #gsheet_box_stacks_in_2534.gsheet--box blockquote, #gsheet_box_stacks_in_2534.gsheet--box i {
    color: rgba(239, 160, 86, 1.00); }
  #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2534.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2534.gsheet--box .gsheet_box_ag_stacks_in_2534 {
    display: none; }
  #gsheet_box_stacks_in_2534.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2534.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2534.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2534.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2534.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_2536 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_2536.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_2536.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_2536 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_2536.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_2537 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_2537.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2537.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2537.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_2537.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2537.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2537.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2537.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2537.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2537.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2537.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2537.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2537.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2537.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2540.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2540.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2540.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2540.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2540.gsheet--box.main-bg-color {
    background: rgba(248, 248, 248, 1.00); }
    #gsheet_box_stacks_in_2540.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2540.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2540.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2540.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2540.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2540.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2540.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2540.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2540.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2540.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_2540.gsheet--box.padding-True {
    padding: 10px 15px 10px 15px; }
  #gsheet_box_stacks_in_2540.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2540.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2540.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2540.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2540.gsheet--box h1, #gsheet_box_stacks_in_2540.gsheet--box h2, #gsheet_box_stacks_in_2540.gsheet--box h3, #gsheet_box_stacks_in_2540.gsheet--box h4, #gsheet_box_stacks_in_2540.gsheet--box h5, #gsheet_box_stacks_in_2540.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2540.gsheet--box a, #gsheet_box_stacks_in_2540.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2540.gsheet--box, #gsheet_box_stacks_in_2540.gsheet--box p, #gsheet_box_stacks_in_2540.gsheet--box span, #gsheet_box_stacks_in_2540.gsheet--box blockquote, #gsheet_box_stacks_in_2540.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2540.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2540.gsheet--box .gsheet_box_ag_stacks_in_2540 {
    display: none; }
  #gsheet_box_stacks_in_2540.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2540.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2540.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2540.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 1200px) {
  #gsheet_box_stacks_in_2540.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2542.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2542.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2542.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2542.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2542.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2542.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2542.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2542.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2542.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2542.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2542.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2542.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2542.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2542.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2542.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2542.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2542.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2542.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2542.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2542.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2542.gsheet--box h1, #gsheet_box_stacks_in_2542.gsheet--box h2, #gsheet_box_stacks_in_2542.gsheet--box h3, #gsheet_box_stacks_in_2542.gsheet--box h4, #gsheet_box_stacks_in_2542.gsheet--box h5, #gsheet_box_stacks_in_2542.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2542.gsheet--box a, #gsheet_box_stacks_in_2542.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2542.gsheet--box, #gsheet_box_stacks_in_2542.gsheet--box p, #gsheet_box_stacks_in_2542.gsheet--box span, #gsheet_box_stacks_in_2542.gsheet--box blockquote, #gsheet_box_stacks_in_2542.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2542.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2542.gsheet--box .gsheet_box_ag_stacks_in_2542 {
    display: none; }
  #gsheet_box_stacks_in_2542.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2542.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2542.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2542.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2542.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_2544 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_2544.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2544.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2544.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_2544.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2544.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2544.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2544.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2544.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2544.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2544.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2544.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2544.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2544.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_2546 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_2546.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2546.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2546.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_2546.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2546.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2546.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2546.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2546.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2546.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2546.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2546.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2546.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2546.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2548.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2548.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2548.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2548.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2548.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2548.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2548.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2548.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2548.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2548.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2548.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2548.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2548.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2548.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2548.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2548.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2548.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2548.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2548.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2548.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2548.gsheet--box h1, #gsheet_box_stacks_in_2548.gsheet--box h2, #gsheet_box_stacks_in_2548.gsheet--box h3, #gsheet_box_stacks_in_2548.gsheet--box h4, #gsheet_box_stacks_in_2548.gsheet--box h5, #gsheet_box_stacks_in_2548.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2548.gsheet--box a, #gsheet_box_stacks_in_2548.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2548.gsheet--box, #gsheet_box_stacks_in_2548.gsheet--box p, #gsheet_box_stacks_in_2548.gsheet--box span, #gsheet_box_stacks_in_2548.gsheet--box blockquote, #gsheet_box_stacks_in_2548.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2548.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2548.gsheet--box .gsheet_box_ag_stacks_in_2548 {
    display: none; }
  #gsheet_box_stacks_in_2548.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2548.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2548.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2548.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2548.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_2550 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_2550.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2550.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2550.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_2550.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2550.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2550.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2550.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2550.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2550.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2550.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2550.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2550.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2550.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_2552 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_2552.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2552.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2552.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_2552.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2552.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2552.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2552.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2552.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2552.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2552.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2552.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2552.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2552.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2554.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2554.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2554.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2554.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2554.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2554.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2554.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2554.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2554.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2554.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2554.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2554.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2554.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2554.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2554.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2554.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2554.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2554.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2554.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2554.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2554.gsheet--box h1, #gsheet_box_stacks_in_2554.gsheet--box h2, #gsheet_box_stacks_in_2554.gsheet--box h3, #gsheet_box_stacks_in_2554.gsheet--box h4, #gsheet_box_stacks_in_2554.gsheet--box h5, #gsheet_box_stacks_in_2554.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2554.gsheet--box a, #gsheet_box_stacks_in_2554.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2554.gsheet--box, #gsheet_box_stacks_in_2554.gsheet--box p, #gsheet_box_stacks_in_2554.gsheet--box span, #gsheet_box_stacks_in_2554.gsheet--box blockquote, #gsheet_box_stacks_in_2554.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2554.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2554.gsheet--box .gsheet_box_ag_stacks_in_2554 {
    display: none; }
  #gsheet_box_stacks_in_2554.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2554.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2554.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2554.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2554.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_2556 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_2556.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2556.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2556.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_2556.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2556.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2556.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2556.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2556.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2556.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2556.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2556.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2556.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2556.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_2558 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_2558.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2558.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2558.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_2558.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2558.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2558.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2558.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2558.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2558.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2558.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2558.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2558.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2558.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_2560.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_2560.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2560.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2560.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_2560.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_2560.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2560.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_2560.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2560.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_2560.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_2560.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2560.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_2560.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_2560.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_2560.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_2560.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2560.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_2560.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2560.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_2560.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_2560.gsheet--box h1, #gsheet_box_stacks_in_2560.gsheet--box h2, #gsheet_box_stacks_in_2560.gsheet--box h3, #gsheet_box_stacks_in_2560.gsheet--box h4, #gsheet_box_stacks_in_2560.gsheet--box h5, #gsheet_box_stacks_in_2560.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2560.gsheet--box a, #gsheet_box_stacks_in_2560.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_2560.gsheet--box, #gsheet_box_stacks_in_2560.gsheet--box p, #gsheet_box_stacks_in_2560.gsheet--box span, #gsheet_box_stacks_in_2560.gsheet--box blockquote, #gsheet_box_stacks_in_2560.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_2560.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_2560.gsheet--box .gsheet_box_ag_stacks_in_2560 {
    display: none; }
  #gsheet_box_stacks_in_2560.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_2560.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_2560.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_2560.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_2560.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_2562 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_2562.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2562.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2562.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_2562.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2562.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2562.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2562.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2562.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2562.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2562.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2562.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2562.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2562.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_2564 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_2564.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_2564.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_2564.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_2564.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_2564.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_2564.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_2564.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_2564.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_2564.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_2564.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_2564.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_2564.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_2564.gsheet-text--upper {
    text-align: inherit; }
#stacks_in_2416 *,
#stacks_in_2416 *:before,
#stacks_in_2416 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2422 {
  overflow: visible;
}
#pureText_stacks_in_2422 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2422 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2422 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2422 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2422 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2422.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2422.fontSizeInheritOff, #pureText_stacks_in_2422.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_2422.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2422.lineHeightOn, #pureText_stacks_in_2422.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2422.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2422.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2422 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2422 p.insideText,
#pureText_stacks_in_2422 .insideText p,
#pureText_stacks_in_2422 h1.insideText,
#pureText_stacks_in_2422 h2.insideText,
#pureText_stacks_in_2422 h3.insideText,
#pureText_stacks_in_2422 h4.insideText,
#pureText_stacks_in_2422 h5.insideText,
#pureText_stacks_in_2422 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2422 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_2423 {
	font-size: 120%;
}
#stacks_in_2431 *,
#stacks_in_2431 *:before,
#stacks_in_2431 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2433 {
  overflow: visible;
}
#pureText_stacks_in_2433 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2433 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2433 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2433 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2433 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2433.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2433.fontSizeInheritOff, #pureText_stacks_in_2433.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2433.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2433.lineHeightOn, #pureText_stacks_in_2433.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2433.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2433.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2433 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2433 p.insideText,
#pureText_stacks_in_2433 .insideText p,
#pureText_stacks_in_2433 h1.insideText,
#pureText_stacks_in_2433 h2.insideText,
#pureText_stacks_in_2433 h3.insideText,
#pureText_stacks_in_2433 h4.insideText,
#pureText_stacks_in_2433 h5.insideText,
#pureText_stacks_in_2433 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2433 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2434 {
	word-spacing: -1px;
}
#stacks_in_2415 *,
#stacks_in_2415 *:before,
#stacks_in_2415 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2425 {
  overflow: visible;
}
#pureText_stacks_in_2425 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2425 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2425 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2425 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2425 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2425.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2425.fontSizeInheritOff, #pureText_stacks_in_2425.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_2425.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2425.lineHeightOn, #pureText_stacks_in_2425.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2425.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2425.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2425 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2425 p.insideText,
#pureText_stacks_in_2425 .insideText p,
#pureText_stacks_in_2425 h1.insideText,
#pureText_stacks_in_2425 h2.insideText,
#pureText_stacks_in_2425 h3.insideText,
#pureText_stacks_in_2425 h4.insideText,
#pureText_stacks_in_2425 h5.insideText,
#pureText_stacks_in_2425 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2425 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_2426 {
	font-size: 120%;
}
#stacks_in_2435 *,
#stacks_in_2435 *:before,
#stacks_in_2435 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2437 {
  overflow: visible;
}
#pureText_stacks_in_2437 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2437 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2437 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2437 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2437 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2437.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2437.fontSizeInheritOff, #pureText_stacks_in_2437.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2437.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2437.lineHeightOn, #pureText_stacks_in_2437.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2437.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2437.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2437 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2437 p.insideText,
#pureText_stacks_in_2437 .insideText p,
#pureText_stacks_in_2437 h1.insideText,
#pureText_stacks_in_2437 h2.insideText,
#pureText_stacks_in_2437 h3.insideText,
#pureText_stacks_in_2437 h4.insideText,
#pureText_stacks_in_2437 h5.insideText,
#pureText_stacks_in_2437 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2437 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2438 {
	word-spacing: -1px;
}
#stacks_in_2411 *,
#stacks_in_2411 *:before,
#stacks_in_2411 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2413 {
  overflow: visible;
}
#pureText_stacks_in_2413 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2413 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2413 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2413 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2413 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2413.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2413.fontSizeInheritOff, #pureText_stacks_in_2413.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_2413.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2413.lineHeightOn, #pureText_stacks_in_2413.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2413.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2413.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2413 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2413 p.insideText,
#pureText_stacks_in_2413 .insideText p,
#pureText_stacks_in_2413 h1.insideText,
#pureText_stacks_in_2413 h2.insideText,
#pureText_stacks_in_2413 h3.insideText,
#pureText_stacks_in_2413 h4.insideText,
#pureText_stacks_in_2413 h5.insideText,
#pureText_stacks_in_2413 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2413 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_2414 {
	font-size: 120%;
}
#stacks_in_2439 *,
#stacks_in_2439 *:before,
#stacks_in_2439 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2441 {
  overflow: visible;
}
#pureText_stacks_in_2441 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2441 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2441 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2441 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2441 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2441.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2441.fontSizeInheritOff, #pureText_stacks_in_2441.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2441.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2441.lineHeightOn, #pureText_stacks_in_2441.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2441.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2441.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2441 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2441 p.insideText,
#pureText_stacks_in_2441 .insideText p,
#pureText_stacks_in_2441 h1.insideText,
#pureText_stacks_in_2441 h2.insideText,
#pureText_stacks_in_2441 h3.insideText,
#pureText_stacks_in_2441 h4.insideText,
#pureText_stacks_in_2441 h5.insideText,
#pureText_stacks_in_2441 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2441 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2442 {
	word-spacing: -1px;
}
#stacks_in_277 *,
#stacks_in_277 *:before,
#stacks_in_277 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_279 {
  overflow: visible;
}
#pureText_stacks_in_279 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_279 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_279 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_279 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_279 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_279.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_279.fontSizeInheritOff, #pureText_stacks_in_279.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_279.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_279.lineHeightOn, #pureText_stacks_in_279.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_279.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_279.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_279 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_279 p.insideText,
#pureText_stacks_in_279 .insideText p,
#pureText_stacks_in_279 h1.insideText,
#pureText_stacks_in_279 h2.insideText,
#pureText_stacks_in_279 h3.insideText,
#pureText_stacks_in_279 h4.insideText,
#pureText_stacks_in_279 h5.insideText,
#pureText_stacks_in_279 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_279 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_280 {
	font-size: 120%;
}
#stacks_in_2443 *,
#stacks_in_2443 *:before,
#stacks_in_2443 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2445 {
  overflow: visible;
}
#pureText_stacks_in_2445 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2445 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2445 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2445 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2445 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2445.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2445.fontSizeInheritOff, #pureText_stacks_in_2445.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2445.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2445.lineHeightOn, #pureText_stacks_in_2445.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2445.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2445.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2445 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2445 p.insideText,
#pureText_stacks_in_2445 .insideText p,
#pureText_stacks_in_2445 h1.insideText,
#pureText_stacks_in_2445 h2.insideText,
#pureText_stacks_in_2445 h3.insideText,
#pureText_stacks_in_2445 h4.insideText,
#pureText_stacks_in_2445 h5.insideText,
#pureText_stacks_in_2445 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2445 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2446 {
	word-spacing: -1px;
}
#stacks_in_2407 *,
#stacks_in_2407 *:before,
#stacks_in_2407 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2409 {
  overflow: visible;
}
#pureText_stacks_in_2409 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2409 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2409 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2409 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2409 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2409.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2409.fontSizeInheritOff, #pureText_stacks_in_2409.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_2409.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2409.lineHeightOn, #pureText_stacks_in_2409.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2409.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2409.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2409 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2409 p.insideText,
#pureText_stacks_in_2409 .insideText p,
#pureText_stacks_in_2409 h1.insideText,
#pureText_stacks_in_2409 h2.insideText,
#pureText_stacks_in_2409 h3.insideText,
#pureText_stacks_in_2409 h4.insideText,
#pureText_stacks_in_2409 h5.insideText,
#pureText_stacks_in_2409 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2409 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_2410 {
	font-size: 120%;
}
#stacks_in_2447 *,
#stacks_in_2447 *:before,
#stacks_in_2447 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2449 {
  overflow: visible;
}
#pureText_stacks_in_2449 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2449 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2449 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2449 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2449 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2449.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2449.fontSizeInheritOff, #pureText_stacks_in_2449.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2449.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2449.lineHeightOn, #pureText_stacks_in_2449.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2449.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2449.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2449 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2449 p.insideText,
#pureText_stacks_in_2449 .insideText p,
#pureText_stacks_in_2449 h1.insideText,
#pureText_stacks_in_2449 h2.insideText,
#pureText_stacks_in_2449 h3.insideText,
#pureText_stacks_in_2449 h4.insideText,
#pureText_stacks_in_2449 h5.insideText,
#pureText_stacks_in_2449 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2449 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2450 {
	word-spacing: -1px;
}
#stacks_in_2403 *,
#stacks_in_2403 *:before,
#stacks_in_2403 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2405 {
  overflow: visible;
}
#pureText_stacks_in_2405 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2405 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2405 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2405 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2405 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2405.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2405.fontSizeInheritOff, #pureText_stacks_in_2405.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_2405.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2405.lineHeightOn, #pureText_stacks_in_2405.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2405.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2405.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2405 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2405 p.insideText,
#pureText_stacks_in_2405 .insideText p,
#pureText_stacks_in_2405 h1.insideText,
#pureText_stacks_in_2405 h2.insideText,
#pureText_stacks_in_2405 h3.insideText,
#pureText_stacks_in_2405 h4.insideText,
#pureText_stacks_in_2405 h5.insideText,
#pureText_stacks_in_2405 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2405 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_2406 {
	font-size: 120%;
}
#stacks_in_2448 *,
#stacks_in_2448 *:before,
#stacks_in_2448 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2451 {
  overflow: visible;
}
#pureText_stacks_in_2451 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2451 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2451 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2451 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2451 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2451.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2451.fontSizeInheritOff, #pureText_stacks_in_2451.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2451.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2451.lineHeightOn, #pureText_stacks_in_2451.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2451.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2451.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2451 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2451 p.insideText,
#pureText_stacks_in_2451 .insideText p,
#pureText_stacks_in_2451 h1.insideText,
#pureText_stacks_in_2451 h2.insideText,
#pureText_stacks_in_2451 h3.insideText,
#pureText_stacks_in_2451 h4.insideText,
#pureText_stacks_in_2451 h5.insideText,
#pureText_stacks_in_2451 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2451 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2452 {
	word-spacing: -1px;
}
#stacks_in_2399 *,
#stacks_in_2399 *:before,
#stacks_in_2399 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2401 {
  overflow: visible;
}
#pureText_stacks_in_2401 .insideText {
  
    font-size: 20px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2401 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2401 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2401 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2401 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2401.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2401.fontSizeInheritOff, #pureText_stacks_in_2401.fontSizeInheritOff span {
  font-size: 20px !important;
  line-height: 20px;
}
#pureText_stacks_in_2401.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2401.lineHeightOn, #pureText_stacks_in_2401.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2401.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2401.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2401 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2401 p.insideText,
#pureText_stacks_in_2401 .insideText p,
#pureText_stacks_in_2401 h1.insideText,
#pureText_stacks_in_2401 h2.insideText,
#pureText_stacks_in_2401 h3.insideText,
#pureText_stacks_in_2401 h4.insideText,
#pureText_stacks_in_2401 h5.insideText,
#pureText_stacks_in_2401 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2401 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_2402 {
	font-size: 120%;
}
#stacks_in_2453 *,
#stacks_in_2453 *:before,
#stacks_in_2453 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2454 {
  overflow: visible;
}
#pureText_stacks_in_2454 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2454 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2454 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2454 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2454 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2454.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2454.fontSizeInheritOff, #pureText_stacks_in_2454.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2454.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2454.lineHeightOn, #pureText_stacks_in_2454.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2454.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2454.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2454 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2454 p.insideText,
#pureText_stacks_in_2454 .insideText p,
#pureText_stacks_in_2454 h1.insideText,
#pureText_stacks_in_2454 h2.insideText,
#pureText_stacks_in_2454 h3.insideText,
#pureText_stacks_in_2454 h4.insideText,
#pureText_stacks_in_2454 h5.insideText,
#pureText_stacks_in_2454 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2454 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2455 {
	word-spacing: -1px;
}
#stacks_in_2391.aspen_split{
	position: relative;
	font-size: 15px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_2391.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_2391.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_2391.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_2391.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.3;
	
	
}

#stacks_in_2391.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_2391 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_2391.aspen_split .max_width_wrap_content{
	max-width: 4000px;
	margin: 0 auto;
}

#stacks_in_2391.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1.00), rgba(255, 255, 255, 1.00));
}

 
#stacks_in_2391.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_2391.aspen_split h1, 
#stacks_in_2391.aspen_split h2,
#stacks_in_2391.aspen_split h3, 
#stacks_in_2391.aspen_split h4, 
#stacks_in_2391.aspen_split h5, 
#stacks_in_2391.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_2391.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_2391.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}#stacks_in_2393 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_2393 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_2393 .fluid-image.unlimited img{width:100% !important}#stacks_in_2393 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_2393 .fluid-image.align-left img{float:left}#stacks_in_2393 .fluid-image.align-right img{float:right}

#stacks_in_2393 {
	background-color: rgba(0, 0, 0, 1.00);
}
#stacks_in_23.aspen_split{
	position: relative;
	font-size: 15px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 4000px){
	#stacks_in_23.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_23.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_23.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_23.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.3;
	
	background-size: cover;
}

#stacks_in_23.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_23 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_23.aspen_split .max_width_wrap_content{
	max-width: 2000px;
	margin: 0 auto;
}

#stacks_in_23.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00));
}

 
#stacks_in_23.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_23.aspen_split h1, 
#stacks_in_23.aspen_split h2,
#stacks_in_23.aspen_split h3, 
#stacks_in_23.aspen_split h4, 
#stacks_in_23.aspen_split h5, 
#stacks_in_23.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_23.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_23.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}#stacks_in_1021_1.aspen_split{
	position: relative;
	font-size: 15px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1021_1.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_1021_1.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1021_1.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_1021_1.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.0;
	
	
}


#stacks_in_1021_1.aspen_split .max_width_wrap_content{
	max-width: 3300px;
	margin: 0 auto;
}

#stacks_in_1021_1.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00));
}

 
#stacks_in_1021_1.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1021_1.aspen_split h1, 
#stacks_in_1021_1.aspen_split h2,
#stacks_in_1021_1.aspen_split h3, 
#stacks_in_1021_1.aspen_split h4, 
#stacks_in_1021_1.aspen_split h5, 
#stacks_in_1021_1.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_1021_1.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1021_1.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_1021_298 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_1021_298.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_1021_298.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_1021_298.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_1021_298.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_1021_298.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_1021_298.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_1021_298.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_1021_298.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_1021_298.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_1021_298.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_1021_298.RC4_LF.RC4_Goff, .stacks_in_1021_298.RC4_LL.RC4_Goff, .stacks_in_1021_298.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_1021_298.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_1021_298.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_1021_298.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_1021_298.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_1021_298.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC5_LF.RC5_Goff, .stacks_in_1021_298.RC5_LL.RC5_Goff, .stacks_in_1021_298.RC5_RF.RC5_Goff, .stacks_in_1021_298.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_1021_298.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_1021_298.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_1021_298.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_1021_298.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_1021_298.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC6_LF.RC6_Goff,
.stacks_in_1021_298.RC6_LL.RC6_Goff,
.stacks_in_1021_298.RC6_RF.RC6_Goff,
.stacks_in_1021_298.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_1021_298.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_1021_298.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_1021_298.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_1021_298.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_1021_298.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_1021_298.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_1021_298.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_1021_298.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_1021_298.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_1021_298.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_1021_298.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_1021_298.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_1021_298.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_1021_298.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC3_R.RespCol1,
  .stacks_in_1021_298.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1021_298.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_1021_298.RC3_L,
  .stacks_in_1021_298.RC3_R.RespCol2,
  .stacks_in_1021_298.RC3_R,
  .stacks_in_1021_298.RC3_R.RespCol1,
  .stacks_in_1021_298.RC3_RS.RespCol2,
  .stacks_in_1021_298.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_1021_298.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_1021_298.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_1021_298.RC4_L {
  float: left;
}
.stacks_in_1021_298.RC4_R {
  float: left;
}
.stacks_in_1021_298.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_1021_298.RC4_S {
  width: 23.6%;
}
.stacks_in_1021_298.RC4_LF,
.stacks_in_1021_298.RC4_LL,
.stacks_in_1021_298.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_1021_298.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_1021_298.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_1021_298.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1021_298.RC4_S {
    width: 49%;
  }
  .stacks_in_1021_298.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_1021_298.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_1021_298.RC4_R {
    float:left;
  }
  .stacks_in_1021_298.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC4_S.RC4_Goff,
  .stacks_in_1021_298.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_1021_298.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC4_S.RC4_Goff,
  .stacks_in_1021_298.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_1021_298.RC5_L {
  float: left;
}
.stacks_in_1021_298.RC5_R {
  float: left;
}
.stacks_in_1021_298.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_1021_298.RC5_S {
  width: 18.4%;
}
.stacks_in_1021_298.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RC5_LF,
.stacks_in_1021_298.RC5_LL,
.stacks_in_1021_298.RC5_RF,
.stacks_in_1021_298.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_1021_298.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_1021_298.RC5, .stacks_in_1021_298.RC5_S {
    width: 49%;
  }
  .stacks_in_1021_298.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC5.RespColone5_Last,
  .stacks_in_1021_298.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_1021_298.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RespColone5_Last.RC5_Goff,
  .stacks_in_1021_298.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1021_298.RC5.RespCol2,
  .stacks_in_1021_298.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_1021_298.RC5_LF.RespCol2,
  .stacks_in_1021_298.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC5.RespColone5_First.RespCol2,
  .stacks_in_1021_298.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_1021_298.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_1021_298.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_1021_298.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_1021_298.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_1021_298.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_1021_298.RC5.RC5_LL.RespCol2,
  .stacks_in_1021_298.RC5.RC5_LF.RespCol2,
  .stacks_in_1021_298.RC5.RC5_LL.RespCol1,
  .stacks_in_1021_298.RC5.RC5_LF.RespCol1,
  .stacks_in_1021_298.RC5_S.RC5_LL.RespCol2,
  .stacks_in_1021_298.RC5_S.RC5_LF.RespCol2,
  .stacks_in_1021_298.RC5_S.RC5_LL.RespCol1,
  .stacks_in_1021_298.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC5.RC5_Goff,
  .stacks_in_1021_298.RC5_S.RC5_Goff,
  .stacks_in_1021_298.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_1021_298.RC6_L,
.stacks_in_1021_298.RC6_L1 {
  float: left;
}
.stacks_in_1021_298.RC6_R,
.stacks_in_1021_298.RC6_R1 {
  float: left;
}
.stacks_in_1021_298.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_1021_298.RC6_S {
  width: 15.2%;
}
.stacks_in_1021_298.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RC6_LF,
.stacks_in_1021_298.RC6_LL,
.stacks_in_1021_298.RC6_RF,
.stacks_in_1021_298.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_1021_298.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_1021_298.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_1021_298.RC6,
  .stacks_in_1021_298.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1021_298.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC6.RC6_Goff,
  .stacks_in_1021_298.RC6_S.RC6_Goff,
  .stacks_in_1021_298.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_1021_298.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_1021_298.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_1021_298.RC6,
  .stacks_in_1021_298.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

#stacks_in_1021_790 {
	padding: 0px 10px 0px 10px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_6 {
  overflow: visible;
}
#pureText_stacks_in_1021_6 .insideText {
  
    font-size: 14px;
  
  
    line-height: 26px;
  
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_6 a {
  color: #999999 !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_6 a:hover {
  color: #BEFF12 !important;
}
/*
#pureText_stacks_in_1021_6 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_6 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_6.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_6.fontSizeInheritOff, #pureText_stacks_in_1021_6.fontSizeInheritOff span {
  font-size: 14px !important;
  line-height: 14px;
}
#pureText_stacks_in_1021_6.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_1021_6.lineHeightOn, #pureText_stacks_in_1021_6.lineHeightOn span {
  line-height: 26px !important;
}
*/
#pureText_stacks_in_1021_6.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_6.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_6 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_6 p.insideText,
#pureText_stacks_in_1021_6 .insideText p,
#pureText_stacks_in_1021_6 h1.insideText,
#pureText_stacks_in_1021_6 h2.insideText,
#pureText_stacks_in_1021_6 h3.insideText,
#pureText_stacks_in_1021_6 h4.insideText,
#pureText_stacks_in_1021_6 h5.insideText,
#pureText_stacks_in_1021_6 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_6 {
	padding: 10px 0px 0px 10px;
}

#stacks_in_1021_7 {
	word-spacing: -1px;
}

#stacks_in_1021_3 {
	padding: 0px 20px 0px 0px;
}
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_223.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_223.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box h1, #gsheet_box_stacks_in_1021_223.gsheet--box h2, #gsheet_box_stacks_in_1021_223.gsheet--box h3, #gsheet_box_stacks_in_1021_223.gsheet--box h4, #gsheet_box_stacks_in_1021_223.gsheet--box h5, #gsheet_box_stacks_in_1021_223.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_223.gsheet--box a, #gsheet_box_stacks_in_1021_223.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_223.gsheet--box, #gsheet_box_stacks_in_1021_223.gsheet--box p, #gsheet_box_stacks_in_1021_223.gsheet--box span, #gsheet_box_stacks_in_1021_223.gsheet--box blockquote, #gsheet_box_stacks_in_1021_223.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_223.gsheet--box .gsheet_box_ag_stacks_in_1021_223 {
    display: none; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_223.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_225.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 1300px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_225.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box h1, #gsheet_box_stacks_in_1021_225.gsheet--box h2, #gsheet_box_stacks_in_1021_225.gsheet--box h3, #gsheet_box_stacks_in_1021_225.gsheet--box h4, #gsheet_box_stacks_in_1021_225.gsheet--box h5, #gsheet_box_stacks_in_1021_225.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_225.gsheet--box a, #gsheet_box_stacks_in_1021_225.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_225.gsheet--box, #gsheet_box_stacks_in_1021_225.gsheet--box p, #gsheet_box_stacks_in_1021_225.gsheet--box span, #gsheet_box_stacks_in_1021_225.gsheet--box blockquote, #gsheet_box_stacks_in_1021_225.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_225.gsheet--box .gsheet_box_ag_stacks_in_1021_225 {
    display: none; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_225.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_232.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_232.gsheet--box.padding-False {
    padding: 20px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.radius-False {
    border-radius: 20px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box h1, #gsheet_box_stacks_in_1021_232.gsheet--box h2, #gsheet_box_stacks_in_1021_232.gsheet--box h3, #gsheet_box_stacks_in_1021_232.gsheet--box h4, #gsheet_box_stacks_in_1021_232.gsheet--box h5, #gsheet_box_stacks_in_1021_232.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_232.gsheet--box a, #gsheet_box_stacks_in_1021_232.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_232.gsheet--box, #gsheet_box_stacks_in_1021_232.gsheet--box p, #gsheet_box_stacks_in_1021_232.gsheet--box span, #gsheet_box_stacks_in_1021_232.gsheet--box blockquote, #gsheet_box_stacks_in_1021_232.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_232.gsheet--box .gsheet_box_ag_stacks_in_1021_232 {
    display: none; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_232.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 800px) {
  #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_stacks_in_1021_234 {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex: 1 0 auto;
  overflow: visible;
  box-sizing: border-box;
  flex-direction: column;
  max-width: 5000px; }
  #gsheet_stacks_in_1021_234 .gsheet--tutorial {
    display: none; }
  #gsheet_stacks_in_1021_234 .gsheet--data-notice {
    display: none; }
  #gsheet_stacks_in_1021_234.repeated-rows .gsheet--individual {
    display: none; }
  #gsheet_stacks_in_1021_234.cell-by-cell .gsheet--repeat {
    display: none; }
  #gsheet_stacks_in_1021_234.show-search .gsheet--search {
    display: block; }

#gsheet_search_stacks_in_1021_234.gsheet--search {
  display: none; }
  #gsheet_search_stacks_in_1021_234.gsheet--search input {
    width: 100%;
    height: auto;
    line-height: 1;
    box-shadow: none;
    border-style: solid;
    outline: none !important;
    margin-bottom: px;
    color: ;
    background: ;
    font-size: px;
    border-radius: px;
    border-color: ;
    padding: px px;
    border-width: px px px px; }

#gsheet_repeat_stacks_in_1021_234 {
  width: 100%;
  flex: 0 1 auto;
  overflow: visible;
  box-sizing: border-box; }
  #gsheet_repeat_stacks_in_1021_234 .gsheet--grid {
    width: calc(100% + 15px);
    margin: 0 auto -15px auto;
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    flex-direction: row;
    box-sizing: border-box;
    justify-content: flex-start; }
    #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item {
      flex: 0 1 auto;
      padding-right: 15px;
      padding-bottom: 15px; }
      #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item.row-show {
        display: flex; }
      #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item.row-hide {
        display: none; }

@media (min-width: 1000px) {
  #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item {
    width: calc(100%/4); } }

@media (max-width: 1000px) {
  #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item {
    width: calc(100%/2); } }

@media (max-width: 600px) {
  #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item {
    width: calc(100%/1); } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_236.gsheet--box {
  display: flex;
  position: relative;
  overflow: visible;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_236.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box h1, #gsheet_box_stacks_in_1021_236.gsheet--box h2, #gsheet_box_stacks_in_1021_236.gsheet--box h3, #gsheet_box_stacks_in_1021_236.gsheet--box h4, #gsheet_box_stacks_in_1021_236.gsheet--box h5, #gsheet_box_stacks_in_1021_236.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_236.gsheet--box a, #gsheet_box_stacks_in_1021_236.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_236.gsheet--box, #gsheet_box_stacks_in_1021_236.gsheet--box p, #gsheet_box_stacks_in_1021_236.gsheet--box span, #gsheet_box_stacks_in_1021_236.gsheet--box blockquote, #gsheet_box_stacks_in_1021_236.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_236.gsheet--box .gsheet_box_ag_stacks_in_1021_236 {
    display: none; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_236.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_238.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10); }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-color {
    background: rgba(255, 255, 255, 1.00); }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_238.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.radius-False {
    border-radius: 10px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box h1, #gsheet_box_stacks_in_1021_238.gsheet--box h2, #gsheet_box_stacks_in_1021_238.gsheet--box h3, #gsheet_box_stacks_in_1021_238.gsheet--box h4, #gsheet_box_stacks_in_1021_238.gsheet--box h5, #gsheet_box_stacks_in_1021_238.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_238.gsheet--box a, #gsheet_box_stacks_in_1021_238.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_238.gsheet--box, #gsheet_box_stacks_in_1021_238.gsheet--box p, #gsheet_box_stacks_in_1021_238.gsheet--box span, #gsheet_box_stacks_in_1021_238.gsheet--box blockquote, #gsheet_box_stacks_in_1021_238.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_238.gsheet--box .gsheet_box_ag_stacks_in_1021_238 {
    display: none; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_238.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_image_stacks_in_1021_240 {
  width: 100%;
  flex: 0 1 auto;
  display: flex;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  height: 200px;
  max-width: 1000px; }
  #gsheet_image_stacks_in_1021_240.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_1021_240.margin-False {
    margin: 0px; }
  #gsheet_image_stacks_in_1021_240.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_1021_240.radius-False {
    border-radius: 0px; }
  #gsheet_image_stacks_in_1021_240 div.gsheet--image, #gsheet_image_stacks_in_1021_240 img.gsheet--image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  #gsheet_image_stacks_in_1021_240 img {
    border: 0 !important;
    border-style: none !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_241.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 5000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_241.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.margin-True {
    margin: -30px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box h1, #gsheet_box_stacks_in_1021_241.gsheet--box h2, #gsheet_box_stacks_in_1021_241.gsheet--box h3, #gsheet_box_stacks_in_1021_241.gsheet--box h4, #gsheet_box_stacks_in_1021_241.gsheet--box h5, #gsheet_box_stacks_in_1021_241.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_241.gsheet--box a, #gsheet_box_stacks_in_1021_241.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_241.gsheet--box, #gsheet_box_stacks_in_1021_241.gsheet--box p, #gsheet_box_stacks_in_1021_241.gsheet--box span, #gsheet_box_stacks_in_1021_241.gsheet--box blockquote, #gsheet_box_stacks_in_1021_241.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_241.gsheet--box .gsheet_box_ag_stacks_in_1021_241 {
    display: none; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_241.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_if_stacks_in_1021_243 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_243.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_243.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_243.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_243.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_243.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_243.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_243 .conditional-content--true, #gsheet_if_stacks_in_1021_243 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_243 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_243.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_243.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_243.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_243.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_243.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_243.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_243.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_243.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-text h1, #gsheet_if_stacks_in_1021_243.colors-true.change-text h2, #gsheet_if_stacks_in_1021_243.colors-true.change-text h3, #gsheet_if_stacks_in_1021_243.colors-true.change-text h4, #gsheet_if_stacks_in_1021_243.colors-true.change-text h5, #gsheet_if_stacks_in_1021_243.colors-true.change-text h6, #gsheet_if_stacks_in_1021_243.colors-true.change-text p, #gsheet_if_stacks_in_1021_243.colors-true.change-text span, #gsheet_if_stacks_in_1021_243.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_243.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-text h1, #gsheet_if_stacks_in_1021_243.colors-false.change-text h2, #gsheet_if_stacks_in_1021_243.colors-false.change-text h3, #gsheet_if_stacks_in_1021_243.colors-false.change-text h4, #gsheet_if_stacks_in_1021_243.colors-false.change-text h5, #gsheet_if_stacks_in_1021_243.colors-false.change-text h6, #gsheet_if_stacks_in_1021_243.colors-false.change-text p, #gsheet_if_stacks_in_1021_243.colors-false.change-text span, #gsheet_if_stacks_in_1021_243.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_243.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_243.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_243.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_245 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_245.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_245.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_245 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-color {
      background: rgba(128, 128, 4, 1.00); }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(165, 233, 85, 1.00), rgba(99, 206, 63, 1.00)); }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover {
      color: rgba(255, 255, 255, 1.00); }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.padding-False {
      padding: 12px; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_248.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_248.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.padding-True {
    padding: 20px 10px 10px 10px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.radius-True {
    border-radius: 0px 0px 10px 10px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box h1, #gsheet_box_stacks_in_1021_248.gsheet--box h2, #gsheet_box_stacks_in_1021_248.gsheet--box h3, #gsheet_box_stacks_in_1021_248.gsheet--box h4, #gsheet_box_stacks_in_1021_248.gsheet--box h5, #gsheet_box_stacks_in_1021_248.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_248.gsheet--box a, #gsheet_box_stacks_in_1021_248.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_248.gsheet--box, #gsheet_box_stacks_in_1021_248.gsheet--box p, #gsheet_box_stacks_in_1021_248.gsheet--box span, #gsheet_box_stacks_in_1021_248.gsheet--box blockquote, #gsheet_box_stacks_in_1021_248.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_248.gsheet--box .gsheet_box_ag_stacks_in_1021_248 {
    display: none; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_248.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_250 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 16px;
  line-height: 25.888000px; }
  #gsheet_text_stacks_in_1021_250.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_250.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_250.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_250.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_250.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_252 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 0.50);
  font-size: 12px;
  line-height: 19.416000px; }
  #gsheet_text_stacks_in_1021_252.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_252.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_252.margin-True {
    margin: 0px 0px 20px 0px; }
  #gsheet_text_stacks_in_1021_252.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_252.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_254 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_254.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_254.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_254.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_254.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_254.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_254.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_254 .conditional-content--true, #gsheet_if_stacks_in_1021_254 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_254 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_254.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_254.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_254.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_254.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_254.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_254.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_254.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_254.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-text h1, #gsheet_if_stacks_in_1021_254.colors-true.change-text h2, #gsheet_if_stacks_in_1021_254.colors-true.change-text h3, #gsheet_if_stacks_in_1021_254.colors-true.change-text h4, #gsheet_if_stacks_in_1021_254.colors-true.change-text h5, #gsheet_if_stacks_in_1021_254.colors-true.change-text h6, #gsheet_if_stacks_in_1021_254.colors-true.change-text p, #gsheet_if_stacks_in_1021_254.colors-true.change-text span, #gsheet_if_stacks_in_1021_254.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_254.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-text h1, #gsheet_if_stacks_in_1021_254.colors-false.change-text h2, #gsheet_if_stacks_in_1021_254.colors-false.change-text h3, #gsheet_if_stacks_in_1021_254.colors-false.change-text h4, #gsheet_if_stacks_in_1021_254.colors-false.change-text h5, #gsheet_if_stacks_in_1021_254.colors-false.change-text h6, #gsheet_if_stacks_in_1021_254.colors-false.change-text p, #gsheet_if_stacks_in_1021_254.colors-false.change-text span, #gsheet_if_stacks_in_1021_254.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_254.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_254.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_254.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_256.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_256.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box h1, #gsheet_box_stacks_in_1021_256.gsheet--box h2, #gsheet_box_stacks_in_1021_256.gsheet--box h3, #gsheet_box_stacks_in_1021_256.gsheet--box h4, #gsheet_box_stacks_in_1021_256.gsheet--box h5, #gsheet_box_stacks_in_1021_256.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_256.gsheet--box a, #gsheet_box_stacks_in_1021_256.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_256.gsheet--box, #gsheet_box_stacks_in_1021_256.gsheet--box p, #gsheet_box_stacks_in_1021_256.gsheet--box span, #gsheet_box_stacks_in_1021_256.gsheet--box blockquote, #gsheet_box_stacks_in_1021_256.gsheet--box i {
    color: rgba(116, 206, 87, 1.00); }
  #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_256.gsheet--box .gsheet_box_ag_stacks_in_1021_256 {
    display: none; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_256.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_258 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_258.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_258.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_258 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_258.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_259 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_259.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_259.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_259.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_259.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_259.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_262.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-color {
    background: rgba(248, 248, 248, 1.00); }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_262.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.padding-True {
    padding: 10px 15px 10px 15px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box h1, #gsheet_box_stacks_in_1021_262.gsheet--box h2, #gsheet_box_stacks_in_1021_262.gsheet--box h3, #gsheet_box_stacks_in_1021_262.gsheet--box h4, #gsheet_box_stacks_in_1021_262.gsheet--box h5, #gsheet_box_stacks_in_1021_262.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_262.gsheet--box a, #gsheet_box_stacks_in_1021_262.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_262.gsheet--box, #gsheet_box_stacks_in_1021_262.gsheet--box p, #gsheet_box_stacks_in_1021_262.gsheet--box span, #gsheet_box_stacks_in_1021_262.gsheet--box blockquote, #gsheet_box_stacks_in_1021_262.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_262.gsheet--box .gsheet_box_ag_stacks_in_1021_262 {
    display: none; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_262.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 1200px) {
  #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_264.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_264.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box h1, #gsheet_box_stacks_in_1021_264.gsheet--box h2, #gsheet_box_stacks_in_1021_264.gsheet--box h3, #gsheet_box_stacks_in_1021_264.gsheet--box h4, #gsheet_box_stacks_in_1021_264.gsheet--box h5, #gsheet_box_stacks_in_1021_264.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_264.gsheet--box a, #gsheet_box_stacks_in_1021_264.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_264.gsheet--box, #gsheet_box_stacks_in_1021_264.gsheet--box p, #gsheet_box_stacks_in_1021_264.gsheet--box span, #gsheet_box_stacks_in_1021_264.gsheet--box blockquote, #gsheet_box_stacks_in_1021_264.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_264.gsheet--box .gsheet_box_ag_stacks_in_1021_264 {
    display: none; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_264.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_266 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_266.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_266.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_266.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_266.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_266.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_268 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_268.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_268.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_268.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_268.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_268.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_270.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_270.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box h1, #gsheet_box_stacks_in_1021_270.gsheet--box h2, #gsheet_box_stacks_in_1021_270.gsheet--box h3, #gsheet_box_stacks_in_1021_270.gsheet--box h4, #gsheet_box_stacks_in_1021_270.gsheet--box h5, #gsheet_box_stacks_in_1021_270.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_270.gsheet--box a, #gsheet_box_stacks_in_1021_270.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_270.gsheet--box, #gsheet_box_stacks_in_1021_270.gsheet--box p, #gsheet_box_stacks_in_1021_270.gsheet--box span, #gsheet_box_stacks_in_1021_270.gsheet--box blockquote, #gsheet_box_stacks_in_1021_270.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_270.gsheet--box .gsheet_box_ag_stacks_in_1021_270 {
    display: none; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_270.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_272 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_272.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_272.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_272.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_272.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_272.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_274 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_274.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_274.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_274.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_274.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_274.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_276.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_276.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box h1, #gsheet_box_stacks_in_1021_276.gsheet--box h2, #gsheet_box_stacks_in_1021_276.gsheet--box h3, #gsheet_box_stacks_in_1021_276.gsheet--box h4, #gsheet_box_stacks_in_1021_276.gsheet--box h5, #gsheet_box_stacks_in_1021_276.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_276.gsheet--box a, #gsheet_box_stacks_in_1021_276.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_276.gsheet--box, #gsheet_box_stacks_in_1021_276.gsheet--box p, #gsheet_box_stacks_in_1021_276.gsheet--box span, #gsheet_box_stacks_in_1021_276.gsheet--box blockquote, #gsheet_box_stacks_in_1021_276.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_276.gsheet--box .gsheet_box_ag_stacks_in_1021_276 {
    display: none; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_276.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_278 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_278.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_278.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_278.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_278.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_278.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_280 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_280.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_280.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_280.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_280.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_280.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_282.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_282.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box h1, #gsheet_box_stacks_in_1021_282.gsheet--box h2, #gsheet_box_stacks_in_1021_282.gsheet--box h3, #gsheet_box_stacks_in_1021_282.gsheet--box h4, #gsheet_box_stacks_in_1021_282.gsheet--box h5, #gsheet_box_stacks_in_1021_282.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_282.gsheet--box a, #gsheet_box_stacks_in_1021_282.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_282.gsheet--box, #gsheet_box_stacks_in_1021_282.gsheet--box p, #gsheet_box_stacks_in_1021_282.gsheet--box span, #gsheet_box_stacks_in_1021_282.gsheet--box blockquote, #gsheet_box_stacks_in_1021_282.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_282.gsheet--box .gsheet_box_ag_stacks_in_1021_282 {
    display: none; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_282.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_284 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_284.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_284.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_284.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_284.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_284.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_286 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_286.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_286.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_286.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_286.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_286.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1314.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box h1, #gsheet_box_stacks_in_1021_1314.gsheet--box h2, #gsheet_box_stacks_in_1021_1314.gsheet--box h3, #gsheet_box_stacks_in_1021_1314.gsheet--box h4, #gsheet_box_stacks_in_1021_1314.gsheet--box h5, #gsheet_box_stacks_in_1021_1314.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box a, #gsheet_box_stacks_in_1021_1314.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box, #gsheet_box_stacks_in_1021_1314.gsheet--box p, #gsheet_box_stacks_in_1021_1314.gsheet--box span, #gsheet_box_stacks_in_1021_1314.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1314.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box .gsheet_box_ag_stacks_in_1021_1314 {
    display: none; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1316.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 1300px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box h1, #gsheet_box_stacks_in_1021_1316.gsheet--box h2, #gsheet_box_stacks_in_1021_1316.gsheet--box h3, #gsheet_box_stacks_in_1021_1316.gsheet--box h4, #gsheet_box_stacks_in_1021_1316.gsheet--box h5, #gsheet_box_stacks_in_1021_1316.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box a, #gsheet_box_stacks_in_1021_1316.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box, #gsheet_box_stacks_in_1021_1316.gsheet--box p, #gsheet_box_stacks_in_1021_1316.gsheet--box span, #gsheet_box_stacks_in_1021_1316.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1316.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box .gsheet_box_ag_stacks_in_1021_1316 {
    display: none; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1318.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-color {
    background: rgba(0, 0, 0, 1.00); }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.padding-False {
    padding: 20px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.radius-False {
    border-radius: 20px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box h1, #gsheet_box_stacks_in_1021_1318.gsheet--box h2, #gsheet_box_stacks_in_1021_1318.gsheet--box h3, #gsheet_box_stacks_in_1021_1318.gsheet--box h4, #gsheet_box_stacks_in_1021_1318.gsheet--box h5, #gsheet_box_stacks_in_1021_1318.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box a, #gsheet_box_stacks_in_1021_1318.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box, #gsheet_box_stacks_in_1021_1318.gsheet--box p, #gsheet_box_stacks_in_1021_1318.gsheet--box span, #gsheet_box_stacks_in_1021_1318.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1318.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box .gsheet_box_ag_stacks_in_1021_1318 {
    display: none; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 800px) {
  #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_stacks_in_1021_1320 {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex: 1 0 auto;
  overflow: visible;
  box-sizing: border-box;
  flex-direction: column;
  max-width: 5000px; }
  #gsheet_stacks_in_1021_1320 .gsheet--tutorial {
    display: none; }
  #gsheet_stacks_in_1021_1320 .gsheet--data-notice {
    display: none; }
  #gsheet_stacks_in_1021_1320.repeated-rows .gsheet--individual {
    display: none; }
  #gsheet_stacks_in_1021_1320.cell-by-cell .gsheet--repeat {
    display: none; }
  #gsheet_stacks_in_1021_1320.show-search .gsheet--search {
    display: block; }

#gsheet_search_stacks_in_1021_1320.gsheet--search {
  display: none; }
  #gsheet_search_stacks_in_1021_1320.gsheet--search input {
    width: 100%;
    height: auto;
    line-height: 1;
    box-shadow: none;
    border-style: solid;
    outline: none !important;
    margin-bottom: px;
    color: ;
    background: ;
    font-size: px;
    border-radius: px;
    border-color: ;
    padding: px px;
    border-width: px px px px; }

#gsheet_repeat_stacks_in_1021_1320 {
  width: 100%;
  flex: 0 1 auto;
  overflow: visible;
  box-sizing: border-box; }
  #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid {
    width: calc(100% + 15px);
    margin: 0 auto -15px auto;
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    flex-direction: row;
    box-sizing: border-box;
    justify-content: flex-start; }
    #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item {
      flex: 0 1 auto;
      padding-right: 15px;
      padding-bottom: 15px; }
      #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item.row-show {
        display: flex; }
      #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item.row-hide {
        display: none; }

@media (min-width: 1000px) {
  #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item {
    width: calc(100%/4); } }

@media (max-width: 1000px) {
  #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item {
    width: calc(100%/2); } }

@media (max-width: 600px) {
  #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item {
    width: calc(100%/1); } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1322.gsheet--box {
  display: flex;
  position: relative;
  overflow: visible;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box h1, #gsheet_box_stacks_in_1021_1322.gsheet--box h2, #gsheet_box_stacks_in_1021_1322.gsheet--box h3, #gsheet_box_stacks_in_1021_1322.gsheet--box h4, #gsheet_box_stacks_in_1021_1322.gsheet--box h5, #gsheet_box_stacks_in_1021_1322.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box a, #gsheet_box_stacks_in_1021_1322.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box, #gsheet_box_stacks_in_1021_1322.gsheet--box p, #gsheet_box_stacks_in_1021_1322.gsheet--box span, #gsheet_box_stacks_in_1021_1322.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1322.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box .gsheet_box_ag_stacks_in_1021_1322 {
    display: none; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1324.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-color {
    background: rgba(255, 255, 255, 1.00); }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.radius-False {
    border-radius: 10px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box h1, #gsheet_box_stacks_in_1021_1324.gsheet--box h2, #gsheet_box_stacks_in_1021_1324.gsheet--box h3, #gsheet_box_stacks_in_1021_1324.gsheet--box h4, #gsheet_box_stacks_in_1021_1324.gsheet--box h5, #gsheet_box_stacks_in_1021_1324.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box a, #gsheet_box_stacks_in_1021_1324.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box, #gsheet_box_stacks_in_1021_1324.gsheet--box p, #gsheet_box_stacks_in_1021_1324.gsheet--box span, #gsheet_box_stacks_in_1021_1324.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1324.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box .gsheet_box_ag_stacks_in_1021_1324 {
    display: none; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_image_stacks_in_1021_1326 {
  width: 100%;
  flex: 0 1 auto;
  display: flex;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  height: 200px;
  max-width: 1000px; }
  #gsheet_image_stacks_in_1021_1326.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_1021_1326.margin-False {
    margin: 0px; }
  #gsheet_image_stacks_in_1021_1326.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_1021_1326.radius-False {
    border-radius: 0px; }
  #gsheet_image_stacks_in_1021_1326 div.gsheet--image, #gsheet_image_stacks_in_1021_1326 img.gsheet--image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  #gsheet_image_stacks_in_1021_1326 img {
    border: 0 !important;
    border-style: none !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1327.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 5000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.margin-True {
    margin: -30px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box h1, #gsheet_box_stacks_in_1021_1327.gsheet--box h2, #gsheet_box_stacks_in_1021_1327.gsheet--box h3, #gsheet_box_stacks_in_1021_1327.gsheet--box h4, #gsheet_box_stacks_in_1021_1327.gsheet--box h5, #gsheet_box_stacks_in_1021_1327.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box a, #gsheet_box_stacks_in_1021_1327.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box, #gsheet_box_stacks_in_1021_1327.gsheet--box p, #gsheet_box_stacks_in_1021_1327.gsheet--box span, #gsheet_box_stacks_in_1021_1327.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1327.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box .gsheet_box_ag_stacks_in_1021_1327 {
    display: none; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_if_stacks_in_1021_1329 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1329.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1329.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1329.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1329.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1329.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1329.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1329 .conditional-content--true, #gsheet_if_stacks_in_1021_1329 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1329 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1329.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1329.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1329.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1329.colors-true.change-text p, #gsheet_if_stacks_in_1021_1329.colors-true.change-text span, #gsheet_if_stacks_in_1021_1329.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1329.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1329.colors-false.change-text p, #gsheet_if_stacks_in_1021_1329.colors-false.change-text span, #gsheet_if_stacks_in_1021_1329.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1329.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1329.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1329.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_1331 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_1331.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_1331.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_1331 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-color {
      background: rgba(128, 128, 4, 1.00); }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(128, 128, 4, 1.00), rgba(90, 91, 7, 1.00)); }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_1021_1334 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1334.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1334.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1334.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1334.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1334.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1334.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1334 .conditional-content--true, #gsheet_if_stacks_in_1021_1334 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1334 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1334.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1334.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1334.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1334.colors-true.change-text p, #gsheet_if_stacks_in_1021_1334.colors-true.change-text span, #gsheet_if_stacks_in_1021_1334.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1334.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1334.colors-false.change-text p, #gsheet_if_stacks_in_1021_1334.colors-false.change-text span, #gsheet_if_stacks_in_1021_1334.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1334.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1334.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1334.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_1336 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_1336.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_1336.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_1336 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-color {
      background: rgba(15, 128, 255, 1.00); }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(15, 128, 255, 1.00), rgba(18, 101, 255, 1.00)); }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_1021_1339 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1339.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1339.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1339.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1339.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1339.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1339.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1339 .conditional-content--true, #gsheet_if_stacks_in_1021_1339 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1339 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1339.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1339.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1339.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1339.colors-true.change-text p, #gsheet_if_stacks_in_1021_1339.colors-true.change-text span, #gsheet_if_stacks_in_1021_1339.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1339.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1339.colors-false.change-text p, #gsheet_if_stacks_in_1021_1339.colors-false.change-text span, #gsheet_if_stacks_in_1021_1339.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1339.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1339.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1339.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_1341 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_1341.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_1341.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_1341 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-color {
      background: rgba(251, 2, 7, 1.00); }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(245, 207, 115, 1.00), rgba(241, 149, 63, 1.00)); }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_1021_1344 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1344.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1344.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1344.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1344.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1344.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1344.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1344 .conditional-content--true, #gsheet_if_stacks_in_1021_1344 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1344 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1344.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1344.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1344.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1344.colors-true.change-text p, #gsheet_if_stacks_in_1021_1344.colors-true.change-text span, #gsheet_if_stacks_in_1021_1344.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1344.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1344.colors-false.change-text p, #gsheet_if_stacks_in_1021_1344.colors-false.change-text span, #gsheet_if_stacks_in_1021_1344.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1344.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1344.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1344.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_1346 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_1346.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_1346.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_1346 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(254, 252, 255, 1.00); }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-color {
      background: rgba(200, 104, 13, 1.00); }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(250, 250, 250, 1.00), rgba(189, 189, 189, 1.00)); }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-color {
        background: rgba(253, 128, 8, 1.00); }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.padding-False {
      padding: 12px; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1349.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.padding-True {
    padding: 20px 10px 10px 10px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.radius-True {
    border-radius: 0px 0px 10px 10px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box h1, #gsheet_box_stacks_in_1021_1349.gsheet--box h2, #gsheet_box_stacks_in_1021_1349.gsheet--box h3, #gsheet_box_stacks_in_1021_1349.gsheet--box h4, #gsheet_box_stacks_in_1021_1349.gsheet--box h5, #gsheet_box_stacks_in_1021_1349.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box a, #gsheet_box_stacks_in_1021_1349.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box, #gsheet_box_stacks_in_1021_1349.gsheet--box p, #gsheet_box_stacks_in_1021_1349.gsheet--box span, #gsheet_box_stacks_in_1021_1349.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1349.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box .gsheet_box_ag_stacks_in_1021_1349 {
    display: none; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_1351 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 16px;
  line-height: 25.888000px; }
  #gsheet_text_stacks_in_1021_1351.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1351.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1351.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1351.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1351.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_1353 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 0.50);
  font-size: 12px;
  line-height: 19.416000px; }
  #gsheet_text_stacks_in_1021_1353.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1353.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1353.margin-True {
    margin: 0px 0px 20px 0px; }
  #gsheet_text_stacks_in_1021_1353.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1353.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_1355 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1355.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1355.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1355.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1355.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1355.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1355.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1355 .conditional-content--true, #gsheet_if_stacks_in_1021_1355 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1355 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1355.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1355.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1355.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1355.colors-true.change-text p, #gsheet_if_stacks_in_1021_1355.colors-true.change-text span, #gsheet_if_stacks_in_1021_1355.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1355.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1355.colors-false.change-text p, #gsheet_if_stacks_in_1021_1355.colors-false.change-text span, #gsheet_if_stacks_in_1021_1355.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1355.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1355.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1355.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1357.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box h1, #gsheet_box_stacks_in_1021_1357.gsheet--box h2, #gsheet_box_stacks_in_1021_1357.gsheet--box h3, #gsheet_box_stacks_in_1021_1357.gsheet--box h4, #gsheet_box_stacks_in_1021_1357.gsheet--box h5, #gsheet_box_stacks_in_1021_1357.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box a, #gsheet_box_stacks_in_1021_1357.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box, #gsheet_box_stacks_in_1021_1357.gsheet--box p, #gsheet_box_stacks_in_1021_1357.gsheet--box span, #gsheet_box_stacks_in_1021_1357.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1357.gsheet--box i {
    color: rgba(116, 206, 87, 1.00); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box .gsheet_box_ag_stacks_in_1021_1357 {
    display: none; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_1359 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_1359.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_1359.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_1359 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_1359.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_1360 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1360.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1360.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1360.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1360.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1360.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_1363 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1363.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1363.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1363.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1363.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1363.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1363.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1363 .conditional-content--true, #gsheet_if_stacks_in_1021_1363 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1363 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1363.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1363.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1363.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1363.colors-true.change-text p, #gsheet_if_stacks_in_1021_1363.colors-true.change-text span, #gsheet_if_stacks_in_1021_1363.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1363.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1363.colors-false.change-text p, #gsheet_if_stacks_in_1021_1363.colors-false.change-text span, #gsheet_if_stacks_in_1021_1363.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1363.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1363.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1363.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1365.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box h1, #gsheet_box_stacks_in_1021_1365.gsheet--box h2, #gsheet_box_stacks_in_1021_1365.gsheet--box h3, #gsheet_box_stacks_in_1021_1365.gsheet--box h4, #gsheet_box_stacks_in_1021_1365.gsheet--box h5, #gsheet_box_stacks_in_1021_1365.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box a, #gsheet_box_stacks_in_1021_1365.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box, #gsheet_box_stacks_in_1021_1365.gsheet--box p, #gsheet_box_stacks_in_1021_1365.gsheet--box span, #gsheet_box_stacks_in_1021_1365.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1365.gsheet--box i {
    color: rgba(233, 87, 80, 1.00); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box .gsheet_box_ag_stacks_in_1021_1365 {
    display: none; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_1367 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_1367.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_1367.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_1367 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_1367.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_1368 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1368.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1368.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1368.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1368.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1368.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_1371 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1371.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1371.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1371.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1371.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1371.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1371.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1371 .conditional-content--true, #gsheet_if_stacks_in_1021_1371 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1371 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1371.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1371.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1371.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1371.colors-true.change-text p, #gsheet_if_stacks_in_1021_1371.colors-true.change-text span, #gsheet_if_stacks_in_1021_1371.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1371.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1371.colors-false.change-text p, #gsheet_if_stacks_in_1021_1371.colors-false.change-text span, #gsheet_if_stacks_in_1021_1371.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1371.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1371.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1371.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1373.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box h1, #gsheet_box_stacks_in_1021_1373.gsheet--box h2, #gsheet_box_stacks_in_1021_1373.gsheet--box h3, #gsheet_box_stacks_in_1021_1373.gsheet--box h4, #gsheet_box_stacks_in_1021_1373.gsheet--box h5, #gsheet_box_stacks_in_1021_1373.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box a, #gsheet_box_stacks_in_1021_1373.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box, #gsheet_box_stacks_in_1021_1373.gsheet--box p, #gsheet_box_stacks_in_1021_1373.gsheet--box span, #gsheet_box_stacks_in_1021_1373.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1373.gsheet--box i {
    color: rgba(117, 117, 117, 1.00); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box .gsheet_box_ag_stacks_in_1021_1373 {
    display: none; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_1375 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_1375.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_1375.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_1375 i.gsheet--icon {
    color: rgba(251, 2, 7, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_1375.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_1376 {
  display: block;
  box-sizing: border-box;
  color: rgba(251, 2, 7, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1376.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1376.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1376.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1376.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1376.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_1379 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1379.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1379.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1379.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1379.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1379.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1379.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1379 .conditional-content--true, #gsheet_if_stacks_in_1021_1379 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1379 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1379.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1379.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1379.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1379.colors-true.change-text p, #gsheet_if_stacks_in_1021_1379.colors-true.change-text span, #gsheet_if_stacks_in_1021_1379.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1379.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1379.colors-false.change-text p, #gsheet_if_stacks_in_1021_1379.colors-false.change-text span, #gsheet_if_stacks_in_1021_1379.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1379.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1379.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1379.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1381.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box h1, #gsheet_box_stacks_in_1021_1381.gsheet--box h2, #gsheet_box_stacks_in_1021_1381.gsheet--box h3, #gsheet_box_stacks_in_1021_1381.gsheet--box h4, #gsheet_box_stacks_in_1021_1381.gsheet--box h5, #gsheet_box_stacks_in_1021_1381.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box a, #gsheet_box_stacks_in_1021_1381.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box, #gsheet_box_stacks_in_1021_1381.gsheet--box p, #gsheet_box_stacks_in_1021_1381.gsheet--box span, #gsheet_box_stacks_in_1021_1381.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1381.gsheet--box i {
    color: rgba(239, 160, 86, 1.00); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box .gsheet_box_ag_stacks_in_1021_1381 {
    display: none; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_1383 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_1383.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_1383.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_1383 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_1383.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_1384 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1384.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1384.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1384.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1384.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1384.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1387.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-color {
    background: rgba(248, 248, 248, 1.00); }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.padding-True {
    padding: 10px 15px 10px 15px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box h1, #gsheet_box_stacks_in_1021_1387.gsheet--box h2, #gsheet_box_stacks_in_1021_1387.gsheet--box h3, #gsheet_box_stacks_in_1021_1387.gsheet--box h4, #gsheet_box_stacks_in_1021_1387.gsheet--box h5, #gsheet_box_stacks_in_1021_1387.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box a, #gsheet_box_stacks_in_1021_1387.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box, #gsheet_box_stacks_in_1021_1387.gsheet--box p, #gsheet_box_stacks_in_1021_1387.gsheet--box span, #gsheet_box_stacks_in_1021_1387.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1387.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box .gsheet_box_ag_stacks_in_1021_1387 {
    display: none; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 1200px) {
  #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1389.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box h1, #gsheet_box_stacks_in_1021_1389.gsheet--box h2, #gsheet_box_stacks_in_1021_1389.gsheet--box h3, #gsheet_box_stacks_in_1021_1389.gsheet--box h4, #gsheet_box_stacks_in_1021_1389.gsheet--box h5, #gsheet_box_stacks_in_1021_1389.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box a, #gsheet_box_stacks_in_1021_1389.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box, #gsheet_box_stacks_in_1021_1389.gsheet--box p, #gsheet_box_stacks_in_1021_1389.gsheet--box span, #gsheet_box_stacks_in_1021_1389.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1389.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box .gsheet_box_ag_stacks_in_1021_1389 {
    display: none; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_1391 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1391.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1391.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1391.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1391.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1391.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_1393 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_1393.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1393.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1393.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1393.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1393.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1401.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box h1, #gsheet_box_stacks_in_1021_1401.gsheet--box h2, #gsheet_box_stacks_in_1021_1401.gsheet--box h3, #gsheet_box_stacks_in_1021_1401.gsheet--box h4, #gsheet_box_stacks_in_1021_1401.gsheet--box h5, #gsheet_box_stacks_in_1021_1401.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box a, #gsheet_box_stacks_in_1021_1401.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box, #gsheet_box_stacks_in_1021_1401.gsheet--box p, #gsheet_box_stacks_in_1021_1401.gsheet--box span, #gsheet_box_stacks_in_1021_1401.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1401.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box .gsheet_box_ag_stacks_in_1021_1401 {
    display: none; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_1403 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1403.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1403.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1403.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1403.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1403.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_1405 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_1405.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1405.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1405.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1405.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1405.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1407.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box h1, #gsheet_box_stacks_in_1021_1407.gsheet--box h2, #gsheet_box_stacks_in_1021_1407.gsheet--box h3, #gsheet_box_stacks_in_1021_1407.gsheet--box h4, #gsheet_box_stacks_in_1021_1407.gsheet--box h5, #gsheet_box_stacks_in_1021_1407.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box a, #gsheet_box_stacks_in_1021_1407.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box, #gsheet_box_stacks_in_1021_1407.gsheet--box p, #gsheet_box_stacks_in_1021_1407.gsheet--box span, #gsheet_box_stacks_in_1021_1407.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1407.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box .gsheet_box_ag_stacks_in_1021_1407 {
    display: none; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_1409 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1409.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1409.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1409.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1409.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1409.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_1411 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_1411.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1411.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1411.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1411.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1411.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--upper {
    text-align: inherit; }
#stacks_in_1021_1414 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1021_1414 .jwresp_col_wrapper{margin:0;width:49%;float:left;position:relative;overflow:auto}#stacks_in_1021_1414 .jwresp_col_wrapper.right{float:right}#stacks_in_1021_1414 .jwresp_col{overflow:hidden;width:48%;float:left;margin:0}#stacks_in_1021_1414 #jwresp_col2_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col4_stacks_in_1021_1414{float:right}#stacks_in_1021_1414 #jwresp_col1_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col3_stacks_in_1021_1414{margin-right:2} @media screen and (max-width:770px){#stacks_in_1021_1414 .jwresp_col_wrapper.left,#stacks_in_1021_1414 .jwresp_col_wrapper.right{width:100%;float:none;clear:both}#stacks_in_1021_1414 .jwresp_col_wrapper.left{margin-bottom:20px}#stacks_in_1021_1414 .jwresp_col{width:49%}#stacks_in_1021_1414 #jwresp_col1_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col3_stacks_in_1021_1414{margin:0}}  @media screen and (max-width:500px){#stacks_in_1021_1414 .jwresp_col{width:100%;display:block}#stacks_in_1021_1414 #jwresp_col1_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col2_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col3_stacks_in_1021_1414{margin:0;margin-bottom:20px}#stacks_in_1021_1414 #jwresp_col4_stacks_in_1021_1414{margin:0}#stacks_in_1021_1414 .jwresp_col_wrapper.left{margin-bottom:0}}

#stacks_in_1021_1414 {
	padding: 40px 30px 0px 30px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1419 {
  overflow: visible;
}
#pureText_stacks_in_1021_1419 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1419 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1419 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1419 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1419 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1419.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1419.fontSizeInheritOff, #pureText_stacks_in_1021_1419.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1419.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1419.lineHeightOn, #pureText_stacks_in_1021_1419.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1419.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1419.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1419 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1419 p.insideText,
#pureText_stacks_in_1021_1419 .insideText p,
#pureText_stacks_in_1021_1419 h1.insideText,
#pureText_stacks_in_1021_1419 h2.insideText,
#pureText_stacks_in_1021_1419 h3.insideText,
#pureText_stacks_in_1021_1419 h4.insideText,
#pureText_stacks_in_1021_1419 h5.insideText,
#pureText_stacks_in_1021_1419 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1419 {
	padding: 0px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1427 {
  overflow: visible;
}
#pureText_stacks_in_1021_1427 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1427 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1427 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1427 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1427 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1427.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1427.fontSizeInheritOff, #pureText_stacks_in_1021_1427.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1427.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1427.lineHeightOn, #pureText_stacks_in_1021_1427.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1427.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1427.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1427 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1427 p.insideText,
#pureText_stacks_in_1021_1427 .insideText p,
#pureText_stacks_in_1021_1427 h1.insideText,
#pureText_stacks_in_1021_1427 h2.insideText,
#pureText_stacks_in_1021_1427 h3.insideText,
#pureText_stacks_in_1021_1427 h4.insideText,
#pureText_stacks_in_1021_1427 h5.insideText,
#pureText_stacks_in_1021_1427 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1427 {
	padding: 10px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1421 {
  overflow: visible;
}
#pureText_stacks_in_1021_1421 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1421 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1421 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1421 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1421 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1421.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1421.fontSizeInheritOff, #pureText_stacks_in_1021_1421.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1421.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1421.lineHeightOn, #pureText_stacks_in_1021_1421.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1421.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1421.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1421 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1421 p.insideText,
#pureText_stacks_in_1021_1421 .insideText p,
#pureText_stacks_in_1021_1421 h1.insideText,
#pureText_stacks_in_1021_1421 h2.insideText,
#pureText_stacks_in_1021_1421 h3.insideText,
#pureText_stacks_in_1021_1421 h4.insideText,
#pureText_stacks_in_1021_1421 h5.insideText,
#pureText_stacks_in_1021_1421 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1421 {
	padding: 0px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1429 {
  overflow: visible;
}
#pureText_stacks_in_1021_1429 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1429 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1429 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1429 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1429 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1429.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1429.fontSizeInheritOff, #pureText_stacks_in_1021_1429.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1429.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1429.lineHeightOn, #pureText_stacks_in_1021_1429.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1429.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1429.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1429 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1429 p.insideText,
#pureText_stacks_in_1021_1429 .insideText p,
#pureText_stacks_in_1021_1429 h1.insideText,
#pureText_stacks_in_1021_1429 h2.insideText,
#pureText_stacks_in_1021_1429 h3.insideText,
#pureText_stacks_in_1021_1429 h4.insideText,
#pureText_stacks_in_1021_1429 h5.insideText,
#pureText_stacks_in_1021_1429 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1429 {
	padding: 10px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1423 {
  overflow: visible;
}
#pureText_stacks_in_1021_1423 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1423 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1423 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1423 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1423 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1423.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1423.fontSizeInheritOff, #pureText_stacks_in_1021_1423.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1423.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1423.lineHeightOn, #pureText_stacks_in_1021_1423.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1423.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1423.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1423 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1423 p.insideText,
#pureText_stacks_in_1021_1423 .insideText p,
#pureText_stacks_in_1021_1423 h1.insideText,
#pureText_stacks_in_1021_1423 h2.insideText,
#pureText_stacks_in_1021_1423 h3.insideText,
#pureText_stacks_in_1021_1423 h4.insideText,
#pureText_stacks_in_1021_1423 h5.insideText,
#pureText_stacks_in_1021_1423 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1423 {
	padding: 0px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1431 {
  overflow: visible;
}
#pureText_stacks_in_1021_1431 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1431 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1431 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1431 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1431 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1431.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1431.fontSizeInheritOff, #pureText_stacks_in_1021_1431.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1431.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1431.lineHeightOn, #pureText_stacks_in_1021_1431.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1431.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1431.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1431 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1431 p.insideText,
#pureText_stacks_in_1021_1431 .insideText p,
#pureText_stacks_in_1021_1431 h1.insideText,
#pureText_stacks_in_1021_1431 h2.insideText,
#pureText_stacks_in_1021_1431 h3.insideText,
#pureText_stacks_in_1021_1431 h4.insideText,
#pureText_stacks_in_1021_1431 h5.insideText,
#pureText_stacks_in_1021_1431 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1431 {
	padding: 10px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1425 {
  overflow: visible;
}
#pureText_stacks_in_1021_1425 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1425 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1425 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1425 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1425 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1425.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1425.fontSizeInheritOff, #pureText_stacks_in_1021_1425.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1425.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1425.lineHeightOn, #pureText_stacks_in_1021_1425.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1425.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1425.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1425 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1425 p.insideText,
#pureText_stacks_in_1021_1425 .insideText p,
#pureText_stacks_in_1021_1425 h1.insideText,
#pureText_stacks_in_1021_1425 h2.insideText,
#pureText_stacks_in_1021_1425 h3.insideText,
#pureText_stacks_in_1021_1425 h4.insideText,
#pureText_stacks_in_1021_1425 h5.insideText,
#pureText_stacks_in_1021_1425 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1425 {
	padding: 0px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1433 {
  overflow: visible;
}
#pureText_stacks_in_1021_1433 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1433 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1433 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1433 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1433 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1433.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1433.fontSizeInheritOff, #pureText_stacks_in_1021_1433.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1433.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1433.lineHeightOn, #pureText_stacks_in_1021_1433.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1433.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1433.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1433 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1433 p.insideText,
#pureText_stacks_in_1021_1433 .insideText p,
#pureText_stacks_in_1021_1433 h1.insideText,
#pureText_stacks_in_1021_1433 h2.insideText,
#pureText_stacks_in_1021_1433 h3.insideText,
#pureText_stacks_in_1021_1433 h4.insideText,
#pureText_stacks_in_1021_1433 h5.insideText,
#pureText_stacks_in_1021_1433 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1433 {
	padding: 10px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_9 {
  overflow: visible;
}
#pureText_stacks_in_1021_9 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_9 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_9 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_9 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_9 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_9.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_9.fontSizeInheritOff, #pureText_stacks_in_1021_9.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_9.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_9.lineHeightOn, #pureText_stacks_in_1021_9.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_9.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_9.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_9 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_9 p.insideText,
#pureText_stacks_in_1021_9 .insideText p,
#pureText_stacks_in_1021_9 h1.insideText,
#pureText_stacks_in_1021_9 h2.insideText,
#pureText_stacks_in_1021_9 h3.insideText,
#pureText_stacks_in_1021_9 h4.insideText,
#pureText_stacks_in_1021_9 h5.insideText,
#pureText_stacks_in_1021_9 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_9 {
	padding: 60px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_11 {
  overflow: visible;
}
#pureText_stacks_in_1021_11 .insideText {
  
    font-size: 12px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_11 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_11 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_11 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_11 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_11.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_11.fontSizeInheritOff, #pureText_stacks_in_1021_11.fontSizeInheritOff span {
  font-size: 12px !important;
  line-height: 12px;
}
#pureText_stacks_in_1021_11.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_11.lineHeightOn, #pureText_stacks_in_1021_11.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_11.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_11.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_11 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_11 p.insideText,
#pureText_stacks_in_1021_11 .insideText p,
#pureText_stacks_in_1021_11 h1.insideText,
#pureText_stacks_in_1021_11 h2.insideText,
#pureText_stacks_in_1021_11 h3.insideText,
#pureText_stacks_in_1021_11 h4.insideText,
#pureText_stacks_in_1021_11 h5.insideText,
#pureText_stacks_in_1021_11 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_11 {
	padding: 10px 20px 10px 20px;
}
