:root {
  --cc-black: #122744;
  --cc-background-input: #f4f6fa;
  --cc-background-input-select: #c9cdd5;
  --cc-border-radius: 25px;
  --cc-padding: 15px;
}
.ccallback {
  font-size: 14px;
  text-align: left;
}
.ccallback__button {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  background: var(--cc-background-input);
  padding: var(--cc-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}
@media screen and (max-width: 900px) {
  .ccallback__button {
    bottom: 8rem;
    right: 2rem;
  }
}
.ccallback__button.pulsar {
  animation: animation-pulsar 8s ease-out infinite;
  animation-timing-function: cubic-bezier(0.2, 0.5, 0.8, 1);
}
.ccallback__button svg {
  width: 20px;
  height: 20px;
  z-index: 100;
}
.ccallback__captcha .wa-captcha {
  margin: 0;
  padding: 0;
}
.ccallback__captcha p:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ccallback__captcha p input {
  width: 90px !important;
}
.ccallback__label {
  position: relative;
  display: block;
}
.ccallback__label:after {
  content: "*";
  color: red;
  position: absolute;
  top: calc(50% + 5px);
  right: var(--cc-padding);
  transform: translateY(-50%);
  font-size: 16px;
  transition: opacity 0.3s;
}
.ccallback__label.ccallback__label--valid:after {
  content: "";
}
.ccallback__checkbox {
  margin-top: calc(var(--cc-padding) / 3);
  text-align: left;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .ccallback__checkbox {
    font-size: 10px;
  }
}
.ccallback._hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.3ms ease;
}
.ccallback__overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 39, 68, 0.7);
  min-height: 100vh;
  backdrop-filter: blur(6px);
  z-index: 1001;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.4s;
}
.ccallback__content {
  position: relative;
  border: medium;
  inset: 0;
  outline: none;
  cursor: initial;
}
.ccallback__body {
  background-color: #ffffff;
  overscroll-behavior: contain;
  scrollbar-width: none;
  max-height: 90vh;
  width: 40vw;
  max-width: 600px;
  padding: 4vw;
  border-radius: var(--cc-border-radius);
  overflow-y: auto;
}
@media screen and (max-width: 900px) {
  .ccallback__body {
    width: 90vw;
    padding: 25px;
  }
}
.ccallback__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: var(--cc-background-input);
  border-radius: var(--cc-border-radius);
  cursor: pointer;
}
.ccallback__close:before {
  transform: rotate(45deg);
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: var(--cc-black);
}
.ccallback__close:after {
  transform: rotate(-45deg);
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: var(--cc-black);
}
.ccallback__header {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: var(--cc-padding);
  margin-right: 40px;
}
@media screen and (max-width: 900px) {
  .ccallback__header {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: calc(var(--cc-padding) / 2);
  }
}
.ccallback__text {
  font-size: 14px;
  margin-bottom: var(--cc-padding);
}
@media screen and (max-width: 900px) {
  .ccallback__text {
    font-size: 12px;
  }
}
.ccallback__phone {
  position: relative;
  display: flex;
  gap: calc(var(--cc-padding) / 4);
}
@media screen and (max-width: 900px) {
  .ccallback__phone {
    flex-direction: column;
  }
}
.ccallback__phone label {
  flex: 1;
}
.ccallback__phone div {
  flex: 1;
}
.ccallback__status {
  text-align: center;
}
.ccallback form {
  display: flex;
  flex-direction: column;
  gap: calc(var(--cc-padding) / 4);
}
.ccallback form label {
  position: relative;
}
.ccallback form label span {
  position: absolute;
  top: 50%;
  left: 10px;
  color: var(--cc-black);
  opacity: 0.8;
  transform: translateY(-50%);
  transition: opacity 0.4s;
  will-change: opacity;
  pointer-events: none;
}
.ccallback form button {
  padding: calc(var(--cc-padding) / 1) calc(var(--cc-padding) / 1) !important;
  height: auto !important;
  border-radius: calc(var(--cc-padding) / 2) !important;
}
@media screen and (max-width: 900px) {
  .ccallback form button {
    padding: 15px 20px !important;
  }
}
.ccallback form button:hover {
  opacity: 0.9;
}
.ccallback form input[type="text"] {
  position: relative;
  width: 100%;
  padding: var(--cc-padding) !important;
  color: var(--cc-black);
  background-color: #f4f6fa;
  border: 0 !important;
  outline: none;
  border-radius: calc(var(--cc-border-radius) / 2) !important;
  transition-property: background-color, opacity;
  transition-duration: 0.4s;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.05);
  height: 50px !important;
}
@media screen and (max-width: 900px) {
  .ccallback form input[type="text"] {
    font-size: 12px;
  }
}
.ccallback__submit {
  margin-top: var(--cc-padding);
}
.ccallback .slide-up {
  opacity: 0;
  height: 0;
  visibility: hidden;
}
.ccallback .slide-down {
  opacity: 1;
  text-align: center;
  height: auto;
  transition: all 0.3ms ease;
  min-height: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.ccallback__message {
  opacity: 0;
  height: 0;
  transition: all 0.3ms ease;
}
.ccallback__message p {
  margin: 0;
}
.cc-custom-select {
  position: relative;
}
.cc-custom-select .cc-select-items::-webkit-scrollbar {
  width: 8px;
}
.cc-custom-select .cc-select-selected {
  background-color: var(--cc-background-input);
  border-radius: calc(var(--cc-border-radius) / 2) !important;
  padding: var(--cc-padding);
  cursor: pointer;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.05);
  position: relative;
  max-height: 50px !important;
  color: var(--cc-black);
  font-size: 14px;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .cc-custom-select .cc-select-selected {
    font-size: 12px;
  }
}
.cc-custom-select .cc-select-selected:before {
  position: absolute;
  right: var(--cc-padding);
  top: calc(50% - 4px);
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20viewBox%3D%220%200%2012%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1.00061%201.49976L6.00104%206.50018L11.0015%201.49976%22%20stroke%3D%22%23090714%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  content: " ";
  width: 12px;
  height: 7px;
}
.cc-custom-select .cc-select-selected.active:before {
  transform: rotate(180deg);
}
.cc-custom-select .cc-select-items {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  z-index: 99;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  max-height: 145px;
  overflow-y: auto;
  color: var(--cc-black);
  text-align: left;
}
.cc-custom-select .cc-select-items div {
  padding: calc(var(--cc-padding) / 2) calc(var(--cc-padding));
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cc-custom-select .cc-select-items div:hover {
  background-color: var(--cc-background-input-select);
}
.cc-custom-select .select-hide {
  display: none;
}
.cc-custom-select .cc-select-selected.active {
  background-color: var(--cc-background-input-select);
}
@keyframes animation-pulsar {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.03), 0 0 0 0 rgba(0, 0, 0, 0.03);
  }
  20% {
    box-shadow: 0 0 1rem 3rem rgba(0, 0, 0, 0.03), 0 0 0 1rem rgba(0, 0, 0, 0.03);
  }
  100% {
    box-shadow: 0 0 2rem 4rem transparent, 0 0 0 2rem transparent;
  }
}
