.coffee-friend-support {
  display: flex;
}
.coffee-friend-support .block-one {
  display: none;
  justify-content: center;
  align-items: end;
  flex-direction: column;
  padding-right: 12px;
}
@media screen and (min-width: 576px) {
  .coffee-friend-support .block-one {
    display: flex;
  }
}
.coffee-friend-support .block-one .title {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  padding-bottom: 12px;
}
.coffee-friend-support .block-one .show-sidebar {
  display: flex;
  min-width: 102px;
  height: 32px;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  border-radius: 8px;
  background-color: #FFD700;
}
.coffee-friend-support .block-one .show-sidebar:hover {
  background-color: #FFDE68;
}
.coffee-friend-support .block-two {
  display: none;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 576px) {
  .coffee-friend-support .block-two {
    display: flex;
  }
}
.coffee-friend-support .support-avatar {
  display: flex;
  justify-content: center;
  position: relative;
  max-height: 48px;
  flex-direction: column;
}
.coffee-friend-support .support-avatar .avatar-image {
  min-width: 104px;
  height: 48px;
}
.coffee-friend-support .support-avatar .online-status {
  position: absolute;
  top: calc(100% - 12px);
  right: 0;
  margin: 0;
  padding: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #00BE63;
}
.coffee-friend-support .support-avatar .online-status .offline {
  background-color: #999999;
}
.coffee-friend-support .support-sidebar {
  display: none;
  position: fixed;
  top: 0;
  z-index: 2147483640;
  height: 100%;
  overflow: hidden;
  background: #fff;
  right: -100vw;
  transition: right 0.25s cubic-bezier(0.02, 0.67, 0.64, 0.95);
  padding: 16px 12px;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .coffee-friend-support .support-sidebar {
    max-width: 576px;
    padding: 44px 115px;
    width: 100vw;
  }
}
.coffee-friend-support .support-sidebar.is-active {
  display: block;
  animation: right 0.3s cubic-bezier(0.02, 0.67, 0.64, 0.95) 1;
  transform-origin: right bottom;
  right: 0;
}
.coffee-friend-support .support-sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
.coffee-friend-support .support-sidebar .sidebar-header .sidebar-title {
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.18px;
  color: #000000;
}
.coffee-friend-support .support-sidebar .sidebar-header .sidebar-close {
  position: absolute;
  width: 27px;
  height: 27px;
  top: 25px;
  right: 12px;
}
@media screen and (min-width: 576px) {
  .coffee-friend-support .support-sidebar .sidebar-header .sidebar-close {
    right: 115px;
    top: 54px;
  }
}
.coffee-friend-support .support-sidebar .sidebar-header .sidebar-close:hover {
  cursor: pointer;
}
.coffee-friend-support .support-sidebar .sidebar-header .sidebar-close:before, .coffee-friend-support .support-sidebar .sidebar-header .sidebar-close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 27px;
  width: 2px;
  background-color: #000000;
}
.coffee-friend-support .support-sidebar .sidebar-header .sidebar-close:before {
  transform: rotate(45deg);
}
.coffee-friend-support .support-sidebar .sidebar-header .sidebar-close:after {
  transform: rotate(-45deg);
}
.coffee-friend-support .support-sidebar .subtitle-text {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  color: #000000;
}
.coffee-friend-support .support-sidebar .need-help .help-subtitle {
  padding-bottom: 14px;
}
.coffee-friend-support .support-sidebar .need-help .support-avatar {
  max-width: 216px;
  max-height: 80px;
  margin-bottom: 48px;
}
.coffee-friend-support .support-sidebar .need-help .support-avatar .online-status {
  top: calc(100% - 17px);
  width: 17px;
  height: 17px;
}
.coffee-friend-support .support-sidebar .need-help .button {
  display: flex;
  height: 56px;
  width: 100%;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  color: #000000;
  border-radius: 8px;
  border: 1px solid #E7E7E1;
  margin: 8px 0;
}
.coffee-friend-support .support-sidebar .need-help .button:hover {
  border: 1px solid #000000;
}
.coffee-friend-support .support-sidebar .need-help .button.chat-now {
  background-color: #FFD700;
  border: 0;
}
.coffee-friend-support .support-sidebar .need-help .button.chat-now:hover {
  background-color: #FFDE68;
  border: 0;
}
.coffee-friend-support .support-sidebar .need-help .button.chat-now img {
  width: 28px;
  height: auto;
}
.coffee-friend-support .cover {
  position: fixed;
  top: 0;
  left: -100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999999;
  width: 500%;
  height: 100%;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(0.02, 0.67, 0.64, 0.95);
}
.coffee-friend-support .cover.hidden-animation {
  opacity: 0;
  pointer-events: none;
}
.coffee-friend-support .cfs-mm-widget {
  align-items: flex-start;
  padding: 14px 9px;
  position: fixed;
  background-color: #FFD700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border-radius: 100px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  width: 58px;
  height: 58px;
  bottom: 30px;
  right: 30px;
  align-items: center;
  justify-content: center;
  z-index: 105;
}
@media screen and (min-width: 576px) {
  .coffee-friend-support .cfs-mm-widget {
    padding: 24px 19px;
    width: 88px;
    height: 88px;
    bottom: 60px;
    right: 60px;
  }
}
.coffee-friend-support .cfs-mm-widget img.chat-now-svg {
  min-width: 30px;
  min-height: 24px;
  width: 30px;
}
@media screen and (min-width: 576px) {
  .coffee-friend-support .cfs-mm-widget img.chat-now-svg {
    min-width: 50px;
    min-height: 24px;
    width: 50px;
  }
}

body.body-no-scroll {
  position: fixed;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
}