/*  ----------------------------------------------------------------------------
    responsive settings
*/
/* responsive landscape tablet */
/* responsive portrait tablet */
/* responsive portrait phone */
/*  ----------------------------------------------------------------------------
    from bootstrap
*/
/*
usage:
.td-block-row {
  .mx-row(td-block-span);
}

@all_span_selector - is the begining of the span selector
 */
/* ---------
---- GENERAL.
--------- */
.td-scroll-up {
  position: fixed;
  bottom: 4px;
  right: 5px;
  cursor: pointer;
  z-index: 9999;
}
.ie9 .td-scroll-up {
  bottom: -70px;
}
.ie9 .td-scroll-up-visible {
  bottom: 5px;
}
@media (max-width: 767px) {
  .td-scroll-up.td-hide-scroll-up-on-mob {
    display: none !important;
  }
}
/* ---------
---- STYLES.
--------- */
/* --
-- Style 1.
-- */
.td-scroll-up[data-style="style1"] {
  display: none;
  width: 40px;
  height: 40px;
  background-color: var(--td_theme_color, #4db2ec);
  transform: translate3d(0, 70px, 0);
  transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
.td-scroll-up[data-style="style1"].td-scroll-up-visible {
  transform: translate3d(0, 0, 0);
}
.td-scroll-up[data-style="style1"] .td-icon-menu-up {
  position: relative;
  color: #fff;
  font-size: 20px;
  display: block;
  text-align: center;
  width: 40px;
  top: 7px;
}
.td-js-loaded .td-scroll-up[data-style="style1"] {
  display: block !important;
}
.td-md-is-android .td-scroll-up[data-style="style1"] .td-icon-menu-up {
  padding-top: 1px;
}
/* --
-- Style 2.
-- */
.td-scroll-up[data-style="style2"] {
  transform: scale(0.8);
  height: 40px;
  width: 40px;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #e7e7e7;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}
.td-scroll-up[data-style="style2"].td-scroll-up-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}
.td-scroll-up[data-style="style2"] .td-scroll-up-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  transform: translateY(-20px);
  background-color: var(--td_black, #222222);
  padding: 5px 6px 6px;
  min-width: 69px;
  font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif);
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.td-scroll-up[data-style="style2"] .td-scroll-up-tt-arrow {
  position: absolute;
  right: 10px;
  bottom: -5px;
  fill: var(--td_black, #222222);
}
.td-scroll-up[data-style="style2"] .td-scroll-up-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: auto;
  fill: var(--td_black, #222222);
  line-height: 0;
  transition: all 0.2s ease-in-out;
}
.td-scroll-up[data-style="style2"] .td-scroll-up-progress-circle {
  transition: opacity 0.2s ease-in-out;
}
.td-scroll-up[data-style="style2"] .td-scroll-up-progress-circle path {
  fill: none;
  stroke: var(--td_black, #222222);
  stroke-width: 4;
  box-sizing: border-box;
  transition: stroke-dashoffset 10ms linear 0s;
  stroke-dasharray: 307.919, 307.919;
}
.td-scroll-up[data-style="style2"]:hover .td-scroll-up-tooltip {
  transform: translateY(0);
  opacity: 1;
}
.td-scroll-up[data-style="style2"]:hover .td-scroll-up-arrow {
  width: 28px;
}
.td-scroll-up[data-style="style2"]:hover .td-scroll-up-progress-circle {
  opacity: 0;
}
