.callback-btn,
.callback-btn *,
.callback-btn *:before,
.callback-btn *:after,
.callback-form,
.callback-form *,
.callback-form *:before,
.callback-form *:after {
  font-family: inherit;
}
.callback-btn {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 0;
    width: 130px;
    height: 130px;
    position: fixed;
    bottom: 75px;
    right: 40px;
    display: block;
    padding: 25px;
    z-index: 9998;
    box-shadow: none !important;
}
.callback-btn.-stop:before,
.callback-btn.-stop:after {
  animation: pulse-stop 10s ease-in-out;
}
.callback-btn.-stop .callback-btn__icon,
.callback-btn.-stop .callback-btn__circle {
  background-color: #292929;
  box-shadow: none !important;
}
.callback-btn.-stop .callback-btn__icon:before {
  background-position: -105px 0.5px !important;
}
.callback-btn.-stop + .callback-alert {
  display: none !important;
}
.callback-btn:before,
.callback-btn:after {
  content: '';
  display: block;
  border-radius: 50%;
  position: absolute;
/* z-index 1 */
  z-index: 99993;
  opacity: 0;
}
.callback-btn:before {
/* центральная обводка круга полупрозрачная - расширяющяяся  */
    background: #f6c857;
    width: 125px;
    height: 125px;
    transform: scale(0.5);
    top: 50%;
    left: 50%;
    margin-left: -52.5px;
    margin-top: -52.5px;
    animation: pulse-small 3s ease-in-out infinite;
}
.callback-btn:after {
  background: transparent;
  box-sizing: border-box;
  width: 150px;
  height: 150px;
  top: 0;
  left: 0;
  transform: scale(0.6);
    /* внешняя обводка круга - расширяющяяся */
  border: 4px solid #f6c857;
  animation: pulse 3s ease-in-out infinite;
}
.callback-btn:hover .callback-btn__circle {
  box-shadow: inset 1px 1px 1px rgba(0,0,0,0.3), inset -1px 1px 1px rgba(0,0,0,0.3);
}
.callback-btn:hover .callback-btn__icon {
  box-shadow: inset 0px 0px 2px rgba(0,0,0,0.1), 1px 2px 3px rgba(0,0,0,0.3);
}
.callback-btn:hover .callback-btn__icon:before {
  background-position: -53px 0px;
}
.callback-btn:hover + .callback-alert {
  opacity: 1;
  visibility: visible;
}
.callback-btn:active .callback-btn__circle {
  box-shadow: inset 1px 1px 1px transparent, inset -1px 1px 1px transparent;
}
.callback-btn:active .callback-btn__icon {
  box-shadow: inset 0px 0px 2px rgba(0,0,0,0.1), 2px 2px 3px transparent, inset 0px 2px 3px rgba(0,0,0,0.3);
}
.callback-btn:active .callback-btn__icon:before {
  background-position: -106px 0px;
}
.callback-btn__circle {
  width: 100px;
  height: 100px;
   /* внутренний круг - обводка */
  background: #f6c857;
  display: block;
  position: relative;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 50%;
  transition: box-shadow 0.25s ease-in-out;
  box-shadow: inset 1px 1px 1px transparent, inset -1px 1px 1px transparent;
/* z-index 2 */
  z-index: 99994;
}
.callback-btn__icon {
  display: block;
  /* внутренний круг */
  background: #f6c857;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease-in-out;
  box-shadow: inset 0px 0px 2px transparent, 1px 2px 3px transparent;
}
.callback-btn__icon:before {
  width: 53px;
  height: 53px;
  background-repeat: no-repeat;
  background-position: 0 0;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -26.5px;
  margin-top: -26.5px;
}
.callback-alert {
  z-index: 99994;
  cursor: default;
  font-size: 15px;
  color: #fff;
  width: 220px;
  height: 85px;
  padding: 17px 20px;
  line-height: 1.3;
  text-align: left;
  box-sizing: border-box;
   /* хотите перезвоним вам - фон */
  background: #34495e;
  position: fixed;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  right: 166px;
  bottom: 83px;
  transition: opacity 0.35s ease-in-out;
}
.callback-alert:after {
  content: '';
  display: inherit;
  width: 0;
  height: 0;
  border: 10px solid transparent;
   /* треугольник к - хотите перезвоним вам */
  border-left-color: #34495e;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 100%;
}
.callback-btn__icon:before,
.callback-form__close,
.callback-form__phone-wrap:before {
  background-image: url(call.png);
}
.callback-message {
    position: fixed;
    z-index: 99994;
    bottom: 200px;
    right: 15px;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
	 /* Слово заказать звонок фон */
    background: #34495e;
    padding: 10px;
    transition: all .5s;
    opacity: 1;
    visibility: visible;
    -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: art;
  animation-name: art;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes art {
  from {
    bottom: 200px;
  }

  50% {
    bottom: 215px;
  }

  to {
    bottom: 200px;
  }
}

@keyframes art {
  from {
    bottom: 200px;
  }

  50% {
    bottom: 215px;
  }

  to {
    bottom: 200px;
  }
}

.callback-message:after {
    content: '';
    display: inherit;
    width: 0;
    height: 0;
    border: 10px solid transparent;
	/* треугольник к заказать звонок */
    border-top-color: #34495e;
    position: absolute;
    bottom: -20px;
    margin-top: -10px;
    left: 50%;
}
.callback-btn:hover + .callback-message {
  opacity: 0 !important;
  visibility: hidden !important;
}
/* Форма, общие стили */
.callback-form {
	position: fixed;
    background: rgba(154, 152, 152, 0.95);
    padding: 25px;
    box-sizing: border-box;
    z-index: 9999999;
    border: 9px solid #797979;
}
.callback-form__title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 25px;
}
.callback-form__info {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 25px;
  width: 340px;
  color: #fff;
}
.callback-form__action-area {
  font-size: 0;
}
.callback-form__action-area:after {
  content: '';
  display: table;
  clear: both;
}
.callback-form__phone-wrap {
  display: inline-block;
  vertical-align: top;
  position: relative;
  max-width: 190px;
}
.callback-form__phone-wrap:before {
  content: '';
  display: block;
  width: 14px;
  height: 20px;
  background-position: -159px 0px;
  position: absolute;
  top: 50%;
  left: 9px;
  margin-top: -10px;
}
.callback-form__phone {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 38px;
  line-height: 38px;
  background: #fff;
  padding-left: 30px !important;
  padding-right: 30px !important;
  box-shadow: inset 0px 2px 1px 0px rgba(0,0,0,0.2);
  border: none;
  outline: none;
  border-radius: 5px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
}
.callback-form__submit-wrap {
  margin-left: 30px;
  display: inline-block;
  vertical-align: top;
}
.callback-form__submit {
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    border: none;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    border-radius: 5px;
    padding: 7px 20px 8px;
    height: 38px;
    background: #f6a513;
    vertical-align: top;
    margin-right: 30px;
    border-bottom: 3px solid #d08d14;
    position: relative;
    transition: background 0.25s ease-in-out;
}
.callback-form__submit:hover {
  background: #d08d14;
}
.callback-form__submit:active {
  background: #7d150b;
  top: 3px;
  border-bottom: none;
  height: 35px;
}
.callback-form__count {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  line-height: 38px;
  color: #212121;
}
.callback-form__close {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 5px;
  right: 5px;
  background-position: -159px -20px;
  cursor: pointer;
  transition: opacity 0.25s ease-in-out;
}
.callback-form__close:hover {
  opacity: 0.7;
}
.callback-form.-hidden,
.callback-form-overlay.-hidden {
  display: none;
}
/* Форма справа */
.callback-right-form {
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 500px;
  display: table;
  text-align: center;
}
.callback-right-form form {
  display: table-cell;
  vertical-align: middle;
}
.callback-right-form .callback-form__action-area {
  text-align: center;
}
.callback-right-form .callback-form__phone-wrap {
  width: 300px;
  margin-bottom: 30px;
}
.callback-right-form .callback-form__info {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* Форма с тёлкой */
.callback-center-form {
  border-radius: 5px;
  width: 870px;
  height: 220px;
  top: 50%;
  left: 50%;
  margin-left: -435px;
  margin-top: -110px;
  padding-left: 320px;
}
.callback-center-form .callback-form__title {
  font-size: 22px;
}
.callback-center-form:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 297px;
  height: 303px;
  background-image: url(women.png);
}
/* Оживляем кнопку */
.fadeIn {
  animation-name: fadeIn;
}
.fadeInRight {
  animation-name: fadeInRight;
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
.fadeInDown {
  animation-name: fadeInDown;
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeIn.animated {
  animation-fill-mode: forwards;
}
@-moz-keyframes pulse-small {
  0 {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  95% {
    opacity: 0;
    transform: scale(1);
  }
}
@-webkit-keyframes pulse-small {
  0 {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  95% {
    opacity: 0;
    transform: scale(1);
  }
}
@-o-keyframes pulse-small {
  0 {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  95% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes pulse-small {
  0 {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  95% {
    opacity: 0;
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0 {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes pulse {
  0 {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-o-keyframes pulse {
  0 {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes pulse {
  0 {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-moz-keyframes pulse-stop {
  to {
    opacity: 0;
    transform: scale(0);
  }
}
@-webkit-keyframes pulse-stop {
  to {
    opacity: 0;
    transform: scale(0);
  }
}
@-o-keyframes pulse-stop {
  to {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes pulse-stop {
  to {
    opacity: 0;
    transform: scale(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@-moz-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-o-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-moz-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@-o-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.callback-form-overlay {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 100;
}


/* responsive */

@media screen and (max-width: 900px) {
  .callback-center-form {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    padding: 10%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .callback-form__close {
    top: 45px;
  }
  .callback-form__info {
    width: 100%;
  }
  .callback-center-form:before {
    display: none;
  }
}

@media screen and (max-width: 800px) {
    .callback-btn {
        transform: scale(.8);
        bottom: 10px;
        right: 10px;
    }
    .callback-alert,
    .callback-message {
      display: none;
    }
}

@media screen and (max-width: 460px) {
  .callback-form__submit-wrap {
    margin-top: 20px;
  }
  .callback-btn {
        transform: scale(.5);
        bottom: 0px;
        right: 0px;
    }
}