.contact-options-wrap {
  position: fixed;
  top: 62px;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 10000000001;
  display: none;
  background: #23252866;
  overflow: hidden;
}
.contact-options-wrap.show {
  display: block;
  animation: fadeIn 0.5s forwards;
}
.contact-options-wrap.show .content-box-wrap {
  display: block;
  animation: slideDown 0.5s forwards;
}
.contact-options-wrap.hide .content-box-wrap {
  animation: slideBackUp 0.3s forwards;
}
.contact-options-wrap .content-box-wrap {
  background: #fff;
  padding: 16px 16px 32px;
  display: none;
}
.contact-options-wrap .main-content {
  max-width: 330px;
  margin: 0 auto;
}
.contact-options-wrap .title-wrapper {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.contact-options-wrap .title-wrapper .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #232528;
  margin-bottom: 24px;
}
.contact-options-wrap .title-wrapper .description {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #232528;
  position: relative;
  max-width: max-content;
  margin: 0 auto;
  padding-left: 20px;
}
.contact-options-wrap .title-wrapper .description:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #babcc0;
}
.contact-options-wrap .title-wrapper .description span.off {
  display: inline;
}
.contact-options-wrap .title-wrapper .description span.on {
  display: none;
}
.contact-options-wrap .content-wrapper {
  margin-bottom: 20px;
}
.contact-options-wrap .content-wrapper .title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.contact-options-wrap .content-wrapper .title-box .icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.contact-options-wrap .content-wrapper .title-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-options-wrap .content-wrapper .title-box .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #515459;
}
.contact-options-wrap .content-wrapper .working-hours {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #232528;
  margin-bottom: 12px;
  text-align: center;
}
.contact-options-wrap .content-wrapper .note {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #3578ea;
  text-align: center;
  padding-top: 4px;
}
.contact-options-wrap .separator {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  display: block;
  text-align: center;
  color: #232528;
  margin: 8px 0;
}
@media (min-width: 767.98px) {
  .contact-options-wrap .separator {
    display: none;
  }
}
.contact-options-wrap .button-wrapper {
  width: 100%;
  max-width: 530px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .contact-options-wrap .button-wrapper {
    max-width: 330px;
    flex-direction: column;
  }
}
.contact-options-wrap .button-blue,
.contact-options-wrap .button-outline {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px;
  border-radius: 32px;
  width: 100%;
  max-width: 255px;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .contact-options-wrap .button-blue,
  .contact-options-wrap .button-outline {
    max-width: unset;
    padding: 11px;
  }
}
.contact-options-wrap .button-blue .icon,
.contact-options-wrap .button-outline .icon {
  margin-right: 8px;
}
.contact-options-wrap .button-blue .icon svg,
.contact-options-wrap .button-outline .icon svg {
  width: 100%;
  height: 100%;
}
.contact-options-wrap .button-blue svg path,
.contact-options-wrap .button-outline svg path {
  transition: 0.3s;
}
.contact-options-wrap .button-outline .icon {
  width: 24px;
  height: 24px;
}
.contact-options-wrap .button-outline:hover svg path:first-child() {
  stroke: #fff;
}
.contact-options-wrap .button-outline:hover svg path:not(:first-child()) {
  fill: #fff;
}
.contact-options-wrap .button-blue.deactive {
  background: #c5cad1;
  border-color: #c5cad1;
  pointer-events: none;
}
.contact-options-wrap .button-blue .icon {
  width: 22px;
  height: 22px;
}
.contact-options-wrap .close-button {
  background: transparent;
  border: none;
  position: absolute;
  top: 22px;
  right: 22px;
  cursor: pointer;
  width: 24px;
  height: 24px;
}
.contact-options-wrap .close-button:focus {
  outline: none;
}
.contact-options-wrap .close-button img {
  width: 100%;
  height: 100%;
}
