@charset "UTF-8";
/* Widget */
.Widget_text {
  position: fixed;
  z-index: 100;
  bottom: 147px;
  right: 86px;
  padding: 10px 15px;
  background: #8bc34a;
  font-family: 'Decima Nova Pro', sans-serif;
  color: #ffffff;
  border-radius: 5px;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.9s;
  transition: opacity 0.9s;
}

.Widget_text:after {
  content: '';
  position: absolute;
  top: 100%;
  right: 6%;
  width: 0;
  height: 0;
  border: 10px solid;
  border-color: #8bc34a transparent transparent transparent;
}

.Widget_text-show {
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .Widget_text-show {
    opacity: 0.5;
  }
}

.Widget_text-hide {
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  .Widget_text {
    display: none;
  }
}

.Widget {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10100;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  direction: ltr;
  bottom: 47px;
  right: 76px;
}

@media only screen and (max-width: 768px) {
  .Widget {
    bottom: 35px;
    right: 35px;
  }
}

.Widget_socButtons {
  display: none;
}

.Widget-overlay {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
}

.Widget-overlayShow {
  -webkit-animation: show .3s linear forwards;
          animation: show .3s linear forwards;
  background: rgba(0, 0, 0, 0.4);
}

.Widget-overlayHide {
  -webkit-animation: hidden .3s linear forwards;
          animation: hidden .3s linear forwards;
}

.Widget-open .WidgetBtn {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: -webkit-transform .3s linear;
  transition: -webkit-transform .3s linear;
  transition: transform .3s linear;
  transition: transform .3s linear, -webkit-transform .3s linear;
}

.Widget-open .WidgetBtn_mask {
  background: #d1d1d1 !important;
  -webkit-transition: background .3s linear;
  transition: background .3s linear;
}

.Widget-open .WidgetBtn_pulse {
  display: none;
}

.Widget-open .WidgetBtn_icons {
  opacity: 0;
  -webkit-transition: 0s;
  transition: 0s;
}

.Widget-open .WidgetBtn_icon-close {
  display: block;
  -webkit-animation: socialRotate .4s;
          animation: socialRotate .4s;
  opacity: 1;
}

.Widget-open .WidgetBtn_inner {
  background: #d2d2d2 !important;
  -webkit-transition: background .3s linear;
  transition: background .3s linear;
}

.Widget-open .Widget_socButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  height: calc(100vh - 110px);
  -webkit-animation: bottomOpen .3s;
          animation: bottomOpen .3s;
  visibility: visible;
}

.Widget-open .SocBtn_label {
  display: block;
}

.Widget-open .SocBtn_label_break {
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .Widget-open .SocBtn_label_break {
    display: block;
  }
}

.WidgetBtn {
  position: relative;
  display: inline-block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media only screen and (max-width: 768px) {
  .WidgetBtn {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.WidgetBtn_mask {
  position: absolute;
  top: -8px;
  left: -8px;
  height: 86px;
  min-width: 70px;
  width: calc(100% + 16px);
  border-radius: 100px;
  background: #8bc34a;
  opacity: .2;
}

@media only screen and (max-width: 768px) {
  .WidgetBtn_mask {
    display: none;
  }
}

.WidgetBtn_block {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

.WidgetBtn_inner {
  background: #8bc34a;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .WidgetBtn_inner {
    opacity: 0.8;
  }
}

.WidgetBtn_icons {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
}

.WidgetBtn_icons .WidgetBtn_icon {
  background: #8bc34a;
}

.WidgetBtn_icons.Flip {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.WidgetBtn_icons.Flip .WidgetBtn_icon-back {
  opacity: 1;
}

.WidgetBtn_icon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 21px 20px;
  -webkit-transition: opacity .6s ease-out;
  transition: opacity .6s ease-out;
  -webkit-animation: socialRotateBack .4s;
          animation: socialRotateBack .4s;
  border-radius: 100%;
  overflow: hidden;
}

.WidgetBtn_icon-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  opacity: 0;
}

.WidgetBtn_icon-close {
  opacity: 0;
  display: none;
}

.WidgetBtn_icon-close svg {
  width: 28px;
  height: 28px;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org….57%204.418%204.42%209.58-9.577%209.58%209.58%204.42-4.42%22/%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  opacity: 1;
}

.SocBtn {
  position: relative;
  display: block;
  margin: 0 5px 20px 0;
  width: 58px;
  height: 57px;
  background-size: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 8px 6px -6px rgba(33, 33, 33, 0.2);
          box-shadow: 0 8px 6px -6px rgba(33, 33, 33, 0.2);
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.SocBtn:hover {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
  -webkit-transition: -webkit-box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1), -webkit-box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.SocBtn_iconWrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: #8BC34A;
}

.SocBtn_iconWrapper-telegram {
  background-color: #2fc6f6;
}

.SocBtn_iconWrapper-viber {
  background-color: #995aca;
}

.SocBtn_icon {
  width: 100%;
}

.SocBtn_icon-phone {
  width: 42%;
}

.SocBtn_label {
  position: absolute;
  top: 50%;
  left: -10px;
  display: inline-block;
  padding: 7px 12px;
  max-width: 360px;
  border-radius: 10px;
  font: 15px "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: #3c3c3c;
  background: #fff;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  -webkit-animation: show 0.5s linear forwards;
          animation: show 0.5s linear forwards;
  display: none;
}

@-webkit-keyframes hidden {
  0% {
    opacity: 1;
    visibility: visible;
  }
  50% {
    opacity: 1;
  }
  99.999% {
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes hidden {
  0% {
    opacity: 1;
    visibility: visible;
  }
  50% {
    opacity: 1;
  }
  99.999% {
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes socialRotate {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes socialRotate {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes socialRotateBack {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes socialRotateBack {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes bottomOpen {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes bottomOpen {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/*# sourceMappingURL=widget.css.map */