/**
 * -----------------------------------------------------------------------------
 * New Colors - Source: Figma (these names will not change in Figma as they come
 * from the Figma library, we should standardize around them).
 * -----------------------------------------------------------------------------
 */
/* Custom breakpoints for mobile carousel */
/* Navy icons */
.block__sticky-popup-block {
  display: block;
  position: fixed;
  bottom: 20px;
  right: auto;
  padding: 0 32px;
  width: 100%;
  z-index: 10005;
}
.block__sticky-popup-block.off {
  display: none;
}
@media (min-width: 768px) {
  .block__sticky-popup-block {
    padding: 0;
    bottom: 20px;
    right: 40px;
    width: 400px;
    -webkit-transition: bottom 0.2s;
    transition: bottom 0.2s;
  }
  .block__sticky-popup-block.off {
    display: block;
  }
}
.block__sticky-popup-block .sty-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  line-height: normal;
  background: #333333;
  width: 100%;
  padding: 0;
}
.block__sticky-popup-block .sty-button-wrapper .block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Liberator-Medium", Helvetica, sans-serif;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
}
.block__sticky-popup-block .sty-button-wrapper .sty-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.block__sticky-popup-block .sty-button-wrapper .sty-buttons > div {
  display: inline-block;
  padding: 12px 20px;
  background-color: transparent;
  border-left: 1px solid #6c6c6c;
  cursor: pointer;
}
.block__sticky-popup-block .sty-button-wrapper .sty-buttons > div.active {
  background-color: #0076a9;
}
.block__sticky-popup-block .sty-button-wrapper .sty-buttons > div:hover {
  background-color: #0076a9;
}
.block__sticky-popup-block .sty-button-wrapper .sty-buttons > div:last-child {
  padding-right: 0;
}
.block__sticky-popup-block .sty-button-wrapper .sty-buttons > div:last-child:after {
  content: " ";
  display: block;
  position: absolute;
  background-color: #333;
  width: 24px;
  height: 100%;
  right: -24px;
  -webkit-transition: border-top-right-radius 0.2s 0.3s;
  transition: border-top-right-radius 0.2s 0.3s;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  top: 0;
}
.block__sticky-popup-block .sty-button-wrapper .sty-buttons > div:last-child:hover:after {
  content: " ";
  display: block;
  position: absolute;
  background-color: #0076a9;
  width: 24px;
  height: 100%;
  right: -24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  top: 0;
}
.block__sticky-popup-block .sty-button-wrapper .sty-buttons > div:last-child.active:after {
  content: " ";
  display: block;
  position: absolute;
  background-color: #0076a9;
  width: 24px;
  height: 100%;
  right: -24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  top: 0;
}
.block__sticky-popup-block .sty-button-wrapper::before {
  content: " ";
  display: block;
  position: absolute;
  background-color: #333;
  width: 24px;
  height: 100%;
  left: -24px;
  -webkit-transition: border-top-left-radius 0.2s 0.3s;
  transition: border-top-left-radius 0.2s 0.3s;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  top: 0;
}
.block__sticky-popup-block .sty-button-wrapper.active .sty-buttons > div:last-child:after {
  -webkit-transition: border-top-right-radius 0.2s;
  transition: border-top-right-radius 0.2s;
  border-top-right-radius: 0;
}
.block__sticky-popup-block .sty-button-wrapper.active .sty-buttons > div:last-child.active:after {
  -webkit-transition: border-top-right-radius 0.2s;
  transition: border-top-right-radius 0.2s;
  border-top-right-radius: 0;
}
.block__sticky-popup-block .sty-button-wrapper.active::before {
  -webkit-transition: border-top-left-radius 0.2s;
  transition: border-top-left-radius 0.2s;
  border-top-left-radius: 0;
}
.block__sticky-popup-block .sty-content-wrapper {
  display: block;
  position: relative;
  left: -24px;
  --wrapperW: 100%;
  --wrapperP: 48px;
  width: calc(var(--wrapperW) + var(--wrapperP));
  height: auto;
  overflow: hidden;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top {
  position: absolute;
  background: #022a3a;
  width: 100%;
  bottom: -1000px;
  padding: 60px 22px 40px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 12px 4px 16px 0;
  box-shadow: rgba(0, 0, 0, 0.2) 12px 4px 16px 0;
  overflow-y: scroll;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top.ct2 {
  padding: 0;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .modal-close-button {
  opacity: 1;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 12px;
  right: 14px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  z-index: 1;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .modal-close-button:before {
  width: 29px;
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  height: 2px;
  border-radius: 1px;
  background: #ffffff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .modal-close-button .modal-cross-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 2px;
  -ms-transform: translate(-1px, 0) rotate(-45deg);
  -webkit-transform: translate(-1px, 0) rotate(-45deg);
  transform: translate(-1px, 0) rotate(-45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .modal-close-button .modal-cross-lines:before {
  width: 14px;
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .modal-close-button .modal-cross-lines:after {
  width: 16px;
  content: "";
  position: absolute;
  top: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  left: auto;
  right: 100%;
  margin-right: -2px;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .chat-box {
  position: relative;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .chat-box .chat-content-container, .block__sticky-popup-block .sty-content-wrapper .sty-content-top .chat-box .chat-container {
  position: absolute;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .chat-box .chat-content-container {
  padding: 60px 22px 40px;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .chat-box .splus-radio input[type=radio] {
  display: inline;
  position: unset;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .sty-item-title {
  font-family: "Liberator-Medium", Helvetica, sans-serif;
  color: #fff;
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 40px;
  line-height: 4rem;
  padding-bottom: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e8b00f;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content {
  height: auto;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content .line-blue-button {
  text-align: center;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content p {
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 16px;
  margin-bottom: 1.6rem;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content sub, .block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content sup {
  display: inline-block;
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-size: 1rem;
  opacity: 0.7;
  padding-bottom: 20px;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h2 {
  font-size: 38px;
  font-size: 3.8rem;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h2 a {
  font-family: "Liberator-Medium", Helvetica, sans-serif;
  font-size: 38px;
  font-size: 3.8rem;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h3 {
  font-size: 28px;
  font-size: 2.8rem;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h3 a {
  font-family: "Liberator-Medium", Helvetica, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h4 {
  font-size: 22px;
  font-size: 2.2rem;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h4 a {
  font-family: "Liberator-Medium", Helvetica, sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h2, .block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h3, .block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h4, .block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content h5 {
  font-family: "Liberator-Medium", Helvetica, sans-serif;
  margin-top: 10px;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content .chatHead {
  padding-bottom: 28px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e8b00f;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content .chatHead .cleft-button {
  cursor: pointer;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content .chatHead .chatTitle {
  color: #fff;
  font-family: "Liberator-Medium", Helvetica, sans-serif;
  font-size: 40px;
  font-size: 4rem;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content .chatContent h3 {
  margin: 40px 10px 10px 0;
}
.block__sticky-popup-block .sty-content-wrapper .sty-content-top .field--name-field-sticky-item-content .chatContent .chatH {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
  border: 1px solid #0076a9;
  padding: 12px;
  margin-bottom: 8px;
}

.block__sticky-popup-block.setonRfi {
  right: auto;
}
@media (min-width: 768px) {
  .block__sticky-popup-block.setonRfi {
    right: -450px;
  }
}

.ie-iframe-fixed-customer-chat {
  width: 100%;
  height: 100%;
}