.tcl-notice-bar {
  position: sticky;
  top: 60px;
  z-index: 99;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tcl-notice-bar .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tcl-notice-bar__wrapper {
  padding: 6px 0;
}
.tcl-notice-bar__wrapper .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tcl-notice-bar__content {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  display: none;
}
.tcl-notice-bar__content-container {
  position: relative;
}
.tcl-notice-bar__button {
  font-family: "Montserrat";
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid var(--accent-background-button, #111111);
  background-color: var(--accent-background-button, #111111);
  color: #ffffff;
  padding: 15px;
  width: 100%;
  text-align: center;
  outline: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  text-decoration: none;
  background-color: var(--notice-background-color);
  border: solid 1px var(--notice-color-text);
  color: var(--notice-color-text);
  padding: 8px 10px 8px 15px;
  border-radius: 0;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.tcl-notice-bar__button svg {
  margin-left: 10px;
}
.tcl-notice-bar__button:disabled {
  opacity: 0.5 !important;
}
.tcl-notice-bar__button:hover {
  color: #ffffff;
  background-color: rgba(17, 17, 17, 0.8);
}
.tcl-notice-bar__button:hover {
  background-color: var(--notice-color-text);
  color: var(--notice-background-color);
}

@media (max-width: 767px) {
  .tcl-notice-bar__wrapper .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tcl-notice-bar__content {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    line-height: 19.5px;
  }
  .tcl-notice-bar__content-container, .tcl-notice-bar__content-scroll {
    width: 100% !important;
  }
  .tcl-notice-bar__button {
    padding: 5px 15px;
  }
  .tcl-notice-bar__button--hide {
    display: none;
  }
}