/*
 * Created by Vira Pardazesh
 */
.popupSupport {
  position: relative;
  z-index: 999999999999;
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupSupport {
    position: fixed;
    right: 0;
    bottom: 72px;
    left: 0;
  }
}
.popupBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  cursor: pointer;
  z-index: 10;
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupBtn {
    position: absolute;
    right: 24px;
    bottom: 0;
  }
}
.popupBtn .popupBtnCircle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 100%;
  background: #25d366;
  box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.14);
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupBtn .popupBtnCircle {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.popupBtn .popupBtnCircle:before,
.popupBtn .popupBtnCircle:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}
.popupBtn .popupBtnCircle:before {
  background: transparent url('../img/icons/whatsapp-icon.svg') center center no-repeat;
  background-size: 38px auto;
  transform: rotate(0deg);
}
.popupBtn .popupBtnCircle:after {
  background: transparent url('../img/icons/close-icon.svg') center center no-repeat;
  background-size: 20px auto;
  opacity: 0;
  transform: rotate(245deg);
}
.popupBtn .popupBtnCircle.active:before {
  opacity: 0;
  transform: rotate(-145deg);
}
.popupBtn .popupBtnCircle.active:after {
  opacity: 1;
  transform: rotate(0deg);
}
.popupBtn .popupHelpText {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  padding: 8px 12px;
  background: #f5f7f9;
  color: #2f2f2f;
  font-size: 14px;
  margin-right: 8px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 2px 0 8px 4px rgba(0, 0, 0, 0.07);
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.popupBtn .popupHelpText.active {
  visibility: hidden;
  opacity: 0;
  transform: translateY(0);
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupBtn .popupHelpText {
    font-size: 12px;
  }
}
.popupBox {
  position: fixed;
  bottom: 77px;
  right: 29px;
  width: 359px;
  background: #fff;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 2px 0 8px 4px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupBox {
    position: relative;
    right: 0;
    left: 0;
    bottom: 40px;
    width: calc(100% - 48px);
    margin: 0 auto;
  }
}
.popupBox .header {
  position: relative;
  background: #25d366;
  background: linear-gradient(259deg, #25d366 66%, #21c45e 100%);
  padding: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupBox .header {
    align-items: flex-start;
  }
}
.popupBox .header .icon img {
  width: 38px;
}
.popupBox .header .title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupBox .header .title {
    font-size: 18px;
  }
}
.popupBox .header .description {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
}
.popupBox .header.consulting .title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.popupBox .header.consulting .description {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}
.popupBox .header.consulting .description + .description {
  padding: 0 6px;
}
.popupBox .body {
  position: relative;
  max-height: 480px;
  bottom: 11px;
  z-index: 1;
  padding: 24px 24px 12px 24px;
  overflow-y: auto;
}
.popupBox .body::-webkit-scrollbar {
  width: 5px;
  bottom: 70px;
  background: #f2f2f2;
  border-radius: 50px;
  box-shadow: unset !important;
  transition: all 0.3s ease-in-out;
}
.popupBox .body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.popupBox .body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupBox .body {
    max-height: 55vh;
  }
}
@media only screen and (min-width: 0px) and (max-width: 400px) {
  .popupBox .body {
    padding: 24px 17px 12px 17px;
  }
}
.popupBox .body .title {
  font-size: 12px;
  font-weight: 500;
  color: #979797;
  margin-bottom: 16px;
  padding: 0 4px;
  line-height: 20px;
}
.popupBox .body .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px 8px 0 0;
  background: #e9eaee;
  padding: 14px 10px;
  border-bottom: 2px solid #21c45e;
  margin-bottom: 16px;
}
.popupBox .body .item:last-of-type {
  margin-bottom: 0;
}
.popupBox .body .item .content {
  margin: 0 10px;
}
.popupBox .body .item .avatar {
  width: 55px;
  min-width: 55px;
  height: 55px;
  border-radius: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupBox .body .item .avatar {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 400px) {
  .popupBox .body .item .avatar {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}
.popupBox .body .item .name {
  font-weight: 500;
  font-size: 15px;
  color: #363c47;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupBox .body .item .name {
    font-size: 14px;
    max-width: 162px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 400px) {
  .popupBox .body .item .name {
    font-size: 12px;
    max-width: 135px;
  }
}
.popupBox .body .item .description {
  font-size: 12px;
  line-height: 20px;
  color: #979797;
}
@media only screen and (min-width: 0px) and (max-width: 400px) {
  .popupBox .body .item .description {
    font-size: 9px;
  }
}
.popupBox .body .item .icon svg path {
  fill: #21c45e !important;
}
.popupBox.consulting .lable-consulting {
  font-size: 14px;
  margin-bottom: 5px;
  color: #5e5e5e;
}
.popupBox.consulting input.consulting-input {
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  line-height: 50px;
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  color: #5e5e5e;
}
.popupBox.consulting input.consulting-input::placeholder {
  color: #d6d6d6;
}
.popupBox .btn-consulting {
  background: #21c45e;
  color: #ffffff;
  border-radius: 16px;
  padding: 12px;
  width: 100%;
  margin-top: 18px;
  font-size: 14px;
  cursor: pointer;
}
/*# sourceMappingURL=online-support.css.map */