#mysuptels {
  position: fixed;
  z-index: 10001;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: min(78vh, 680px);
  margin: auto;
  padding: 10px;
  overflow-y: auto;
  color: #111;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 105%, 0);
  transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
  will-change: transform;
}

#mysuptels.open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.mysuptels-fa-font {
  font-feature-settings: "ss02";
}

.mysuptels-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(0, 0, 0, .28);
}

body.mysuptels-opened {
  overflow: hidden;
}

.mysuptels-title {
  align-items: center;
  margin-bottom: 8px;
}

.mysuptels-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #d82d2d;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.mysuptels-close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

#mysuptels p,
.mysuptels-footer-list p {
  color: #444;
}

#mysuptels dl,
.mysuptels-footer-list dl {
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#mysuptels dl:last-child,
.mysuptels-footer-list dl:last-child {
  border-bottom: 0;
}

#mysuptels dt,
.mysuptels-footer-list dt {
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
}

#mysuptels dd,
.mysuptels-footer-list dd {
  flex: 0 0 auto;
  margin: 0 0 0 auto;
}

#mysuptels a,
.mysuptels-footer-list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: ltr;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

#mysuptels .fto-star-2,
.mysuptels-footer-list .fto-star-2,
#mysuptels .fto-star,
.mysuptels-footer-list .fto-star {
  font-size: 12px;
}

#mysuptels .fto-star,
.mysuptels-footer-list .fto-star {
  color: rgba(0, 0, 0, .1) !important;
}

.rightbar_tels {
  position: relative;
  z-index: 1;
}

.rightbar_tels::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, #fdc913 1%, #ffd12f 100%);
  border-radius: 100%;
  opacity: 0;
  animation: mysuptels-ripple 2s 2s infinite cubic-bezier(.65, 0, .34, 1);
}

.rightbar_tels[aria-expanded="true"]::before {
  display: none;
}

.mobile_device.use_mobile_header #sidebar_box.opennn {
  background: #fff;
}

.mysuptels-footer-list dl {
  padding: 5px 10px;
}

@media (min-width: 980px) {
  #mysuptels {
    width: 640px;
    max-width: calc(100% - 32px);
    border-radius: 15px 15px 0 0;
  }
}

@media (max-width: 480px) {
  #mysuptels {
    max-height: 82vh;
    padding: 8px;
  }

  #mysuptels dl {
    align-items: flex-start;
    padding: 9px 6px;
  }

  #mysuptels dt {
    font-size: 14px;
  }

  #mysuptels a {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #mysuptels {
    transition: none;
  }

  .rightbar_tels::before {
    animation: none;
  }
}

@keyframes mysuptels-ripple {
  from {
    opacity: .7;
    transform: scale3d(1, 1, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.2, 1.2, 1);
  }
}
