
#x13callback_simple{
  background: #FFF;
  padding: 10px;
  border: 1px solid #d6d4d4;
}

#x13callback_form_simple li{
  list-style: none;
}

#x13callback_form .pull-right {
    float: right;
}

.x13callback-button-product{
  list-style: none;
}

.x13callback-button-product a:before{
  padding-right: 10px;
}

#x13callback_button {
  text-align: center;
  display: none;
  position: fixed;
  z-index: 99999;
  cursor: pointer;
}

#x13callback_button *::before,
#x13callback_button *::after,
#x13callback_button * {
  box-sizing: border-box;
}

#x13callback_button .callback-container {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}

#x13callback_button .x13callback-icon {
  position: relative;
}

#x13callback_button #x13callback_hoverText {
  font-size: 12px;
  line-height: 12px;
  display: none;
  position: relative;
  padding: 0 4px;
}

#x13callback_button:hover #x13callback_hoverText {
  display: block;
}
#x13callback_button:hover #x13callback_hoverText + .x13callback-icon,
#x13callback_button:hover #x13callback_hoverText + .x13callback-icon + .x13callback-icon {
  display: none !important;
}

.x13callback-before,
.x13callback-after {
  display: none;
}

#x13callback_button.circle.animate .callback-container::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0;
  top: 0;
  -webkit-animation-name: firstRingAnimation;
  animation-name: firstRingAnimation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

#x13callback_button.circle.animate .callback-container::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0;
  top: 0;
  -webkit-animation-name: secondRingAnimation;
  animation-name: secondRingAnimation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

#x13callback_button.circle.animate .callback-container .third-ring {
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.2;
  -webkit-animation-name: thirdRingAnimation;
  animation-name: thirdRingAnimation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

#x13callback_button.square.animate .callback-container::before {
  content: '';
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-animation-name: squareAnimation;
  animation-name: squareAnimation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes firstRingAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes firstRingAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

@-webkit-keyframes secondRingAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes secondRingAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes thirdRingAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.2;
  }
  70% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes thirdRingAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.2;
  }
  70% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-webkit-keyframes squareAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes squareAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
