:root {
  --primary-color: #e7ad4b;
}

figure {
  text-align: center;
  figcaption {
    background: rgb(0 0 0 / .05);
    font-size: 14px;
    font-style: italic;
    padding: 10px;
  }
}

.aligncenter {
  margin: 0 auto;
  display: block;
}

.alignright {
  margin-left: auto;
  display: block;
}
.tl-widgets-container {
  z-index: 2147483641;
  contain: layout style;
  position: fixed;
  bottom: 90px;
  width: 1px;
  pointer-events: none;
  right: 12px;
}
.sw-rpw-static {
  width: 432px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  margin: 12px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, .25);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, .25);
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}
.sw-rpw-static__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 144px;
  flex: 0 0 144px;
  width: 144px;
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
.sw-rpw-static__icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  background-color: var(--primary-color);
}
.sw-rpw-static__icon svg {
  z-index: 1;
}
.sw-rpw-static__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 16px 16px 16px 24px;
  position: relative;
  color: #3d3d3d;
  width: 100%;
}
.sw-rpw-static__content:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: -1;
  background-color: #fff;
}
.sw-rpw-static__content-title {
  font-weight: bold;
  line-height: 20px;
  padding-right: 20px;
  word-break: break-word;
  max-width: 100%;
  font-size: 16px;
  color: #3d3d3d;
}
.sw-rpw-static__content-text {
  opacity: .8;
  line-height: 18px;
  word-break: break-word;
  max-width: 100%;
  font-size: 12px;
  color: #3d3d3d;
}
.sw-rpw-static__content>*:not(:last-child) {
  margin-bottom: 16px;
}
.sw-rpw-static__content-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  line-height: 18px;
  font-weight: bold;
  text-align: center;
  padding: 8px;
  font-size: 12px;
  background-color: var(--primary-color);
  color: #fff !important;
  border-radius: 3px;
}
.sw-rpw-static__close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 8px;
  opacity: .3;
  color: #3d3d3d;
}
.tl-widget {
  min-width: 288px;
  overflow: hidden;
  pointer-events: all;
  vertical-align: bottom;
}
.tl-widget_position-rightbottom {
  float: right;
}
.tl-widget_state-show {
  max-width: none;
}
.tl-widget_state-show.tl-widget_position-rightbottom {
  animation: tl-openup-rightbottom 1s cubic-bezier(.42, .03, 0, 1.09) 0s forwards;
}
.tl-widget_state-close.tl-widget_position-rightbottom {
  animation: tl-collapse-rightbottom 2s cubic-bezier(1, -.09, .7, .97) 0s forwards;
}

@keyframes tl-openup-rightbottom {
  0% {
    max-height: 0;
    opacity: 0;
    transform: translate(150%);
  }

  50% {
    max-height: 3000px;
    opacity: 0;
    transform: translate(150%);
  }
  100% {
    max-height: 3000px;
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes tl-collapse-rightbottom {
  0% {
    max-height: 3000px;
    opacity: 1;
    transform: translate(0);
  }

  50% {
    opacity: 0;
    transform: translate(150%);
  }

  100% {
    max-height: 0;
    max-width: 0;
    opacity: 0;
    transform: translate(150%);
  }
}