<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.theme-tcc .sc-floating-apply {
  position: fixed;
  width: 100%;
  z-index: 99;

  /*space for header-top*/
  top: 80px;
  left: 0;
}

.theme-tcc .sc-floating-apply:before {
  content: "";
  position: absolute;
  z-index: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  background: white;

  -webkit-transition: opacity 0.15s 0s linear;
  -moz-transition: opacity 0.15s 0s linear;
  -o-transition: opacity 0.15s 0s linear;
  transition: opacity 0.15s 0s linear;
}

.theme-tcc .sc-floating-apply.active:before {
  opacity: 1;
  border-bottom: solid 1px #EEEEEE;
}

.theme-tcc .sc-floating-apply .sc-content {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: row;
  align-items: center;

  padding: 10px 0;
  border-top: solid 1px rgba(238, 238, 238, 0.2);
}

.theme-tcc .sc-floating-apply .action {
  margin-top: 0;
  margin-left: auto;
}

.theme-tcc .sc-floating-apply ul li {
  display: inline-block;
}

.theme-tcc .sc-floating-apply ul li:not(:last-child) {
  margin-right: 20px;
}

.theme-tcc .sc-floating-apply ul li a {
  color: white;
}

.theme-tcc .sc-floating-apply.active ul li a {
  color: #333333;
}

/*mobile*/
.theme-tcc .sc-floating-apply-m {
  position: fixed;
  z-index: 99;
  width: 100%;

  bottom: 0;
  left: 0;

  background: white;
  border-top: solid 1px #EEEEEE;
}

.theme-tcc .sc-floating-apply-m .sc-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;

  padding: 10px 0;
}

.theme-tcc .sc-floating-apply-m .action {
  margin-top: 0;
  margin-left: auto;
}

.theme-tcc .sc-floating-apply-m .action .btn {
  padding: 0 30px;
}

.theme-tcc .sc-floating-apply-m img {
  width: 60px;
  margin-right: 10px;
  border-radius: 3px;
}

/*responsive*/
.theme-tcc .sc-floating-apply-m {
  display: none;
}

.theme-tcc .sc-floating-apply {
  display: block;
}

@media screen and (max-width: 1024px) {
  .theme-tcc .sc-floating-apply-m {
    display: block;
  }

  .theme-tcc .sc-floating-apply {
    display: none;
  }
}</pre></body></html>