:root {
  --header-height: 80px;
}
@media (max-width: 1199px) {
  :root {
    --header-height: 60px;
  }
}

.tcl-sticky-pdf {
  padding: 7px;
  background-color: #0069b5;
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: fixed;
  z-index: 11111;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.tcl-sticky-pdf__arrow {
  position: absolute;
  width: 25px;
  -webkit-transform: rotate(90deg) translateY(-50%);
      -ms-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
  left: 0;
  top: 50%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.tcl-sticky-pdf__supheading {
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  font-weight: bold;
}
.tcl-sticky-pdf__heading {
  font-size: 28px;
  line-height: 150%;
  color: #fff;
}
@media (max-width: 1199px) {
  .tcl-sticky-pdf__heading {
    line-height: 1.2;
    font-size: 26px;
  }
}
.tcl-sticky-pdf__download {
  margin-top: auto;
}
.tcl-sticky-pdf__download a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: underline;
  font-size: 15px;
}
.tcl-sticky-pdf__download a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.tcl-sticky-pdf__download a img {
  width: 35px !important;
  margin-right: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.tcl-sticky-pdf__image {
  width: 100px;
}
.tcl-sticky-pdf__image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.tcl-sticky-pdf__content {
  width: calc(100% - 100px);
  padding-left: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1199px) {
  .tcl-sticky-pdf__content {
    padding-right: 35px;
  }
}
@media (min-width: 1199px) {
  .tcl-sticky-pdf {
    right: 0;
    -webkit-transform: translateX(calc(100% - 114px)) translateY(50%);
        -ms-transform: translateX(calc(100% - 114px)) translateY(50%);
            transform: translateX(calc(100% - 114px)) translateY(50%);
    bottom: 33.3333333333vh;
  }
  .tcl-sticky-pdf:hover, .tcl-sticky-pdf:focus-within {
    -webkit-transform: translateX(0) translateY(50%);
        -ms-transform: translateX(0) translateY(50%);
            transform: translateX(0) translateY(50%);
  }
  .tcl-sticky-pdf:hover .tcl-sticky-pdf__arrow {
    opacity: 0;
  }
}
@media (max-width: 1199px) {
  .tcl-sticky-pdf {
    display: none !important;
    max-width: 100%;
    width: 100%;
    left: 0;
    bottom: 0px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    overflow: hidden;
    max-height: 72px;
    margin-bottom: 0;
  }
  .tcl-sticky-pdf.open {
    max-height: 100%;
  }
  .tcl-sticky-pdf.fixed {
    bottom: var(--header-height);
  }
  .tcl-sticky-pdf.fixed.top-button-hide-on-mobile {
    bottom: 0 !important;
  }
  .tcl-sticky-pdf__image {
    width: 33.33333%;
  }
  .tcl-sticky-pdf__content {
    width: 66.66667%;
  }
  .tcl-sticky-pdf__arrow {
    display: none;
  }
  .tcl-sticky-pdf__mobile-open {
    position: absolute;
    right: 15px;
    top: 20px;
    width: 20px;
    display: block !important;
  }
  .tcl-sticky-pdf__mobile-open img {
    width: 100%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .tcl-sticky-pdf__mobile-open.active img {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}