/*!*****************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-1.use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/btn-scroll-top/style.scss ***!
  \*****************************************************************************************************************************************************************************************************/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/**
 * Helper mixins
*/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
https://toward.studio/latest/making-css-gradients-smooth
*/
.btn-scroll-top {
  position: fixed;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  bottom: 108px;
  right: 12px;
}
.btn-scroll-top__inner {
  position: absolute;
  right: 0;
  top: -48px;
}
@media (min-width: 768px) {
  .btn-scroll-top__inner {
    top: -62px;
  }
}
.btn-scroll-top__inner::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #202020 url("/themes/custom/proplan/dist/images/content/arrow-top.svg") no-repeat center center;
}
@media (min-width: 768px) {
  .btn-scroll-top__inner::before {
    width: 62px;
    height: 62px;
  }
}
@media (min-width: 768px) and (max-width: 821px) {
  .btn-scroll-top {
    bottom: 127px;
    right: 103px;
  }
}
@media (min-width: 822px) and (max-width: 1280px) {
  .btn-scroll-top {
    bottom: 107px;
    right: 103px;
  }
}
@media (min-width: 1281px) {
  .btn-scroll-top {
    bottom: 8%;
    right: 248px;
  }
}
.btn-scroll-top_mode_white {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 14px 70px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 14px 70px rgba(0, 0, 0, 0.2);
}
.btn-scroll-top_visible {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}
.btn-scroll-top:hover .btn-scroll-top__inner::before {
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: arrow-btn-hover;
          animation-name: arrow-btn-hover;
}
@-webkit-keyframes arrow-btn-hover {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: -10px;
  }
  100% {
    margin-top: 0px;
  }
}
@keyframes arrow-btn-hover {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: -10px;
  }
  100% {
    margin-top: 0px;
  }
}
