/*! Main styles. (style.css) | @author htmlcoder001.ru */

:root {
  --theme-font-text: 'Muller', sans-serif;
  --theme-font-headline: '';
  --container-width: 1360px;
  --padding-lr: 48px;
  --theme-border-radius: 40px;
}

body, html {
  background-color: #F2F4F8;
  font-family: var(--theme-font-text);
}

section {
  position: relative;
  margin-bottom: 48px;
}

.theme-wrapper {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  padding-left: var(--padding-lr);
  padding-right: var(--padding-lr);
}

.theme-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(91.19deg, #FFC873 0%, #FF9A00 100%);
  border-radius: 40px;
  height: 80px;
  cursor: pointer;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.theme-button__text {
  font-family: var(--theme-font-text);
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  line-height: 140%;
  text-transform: uppercase;
}
.--button-secondary {
  gap: 16px;
  background: #F2F4F8;
}
.--button-secondary .theme-button__text {
  color: #333333;
}
.theme-button:hover,
.theme-button:focus {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}

.--button-bg-blink {
  position: relative;
  overflow: hidden;
}
.--button-bg-blink span {
  position: relative;
  z-index: 1;
}
.--button-bg-blink:before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 65px;
  height: 200%;
  background: #fff;
  opacity: .4;
  transform: translateX(-0.5em) skewX(-45deg);
  animation: play 3s ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes play {
  0% {
    left: -150%;
  }
  
  100% {
    left: 150%;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.header-wrapper {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.header-wrapper__logo {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--theme-font-text);
}
.header-logo__img {
  display: block;
  width: 260px ;
}
.header-wrapper__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.header-nav__item {
  font-family: var(--theme-font-text);
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  display: block;
  padding: 8px 0;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.header-nav__dropdown {
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.header-nav__dropdown:hover {
  background: #fff;
  

}
.header-nav__dropdown ul {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 280px;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  
  opacity: 0;
  pointer-events: none;
  
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
  
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.header-nav__dropdown ul li,
.header-nav__dropdown ul li a {
  font-family: var(--theme-font-text);
  color: #333333;
  font-weight: 500;
  font-size: 18px;
}
.header-nav__dropdown ul li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}
.header-nav__dropdown ul li:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  background-color: #73B5FF;
  border-radius: 100px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.header-nav__dropdown ul li:last-child {
  margin-bottom:0;
}
.header-nav__dropdown:hover ul {
  opacity: 1;
  pointer-events: auto;
}
.header-nav__dropdown:hover .header-nav__item,
.header-nav__item:hover,
.header-nav__item:focus,
.header-nav__dropdown ul li a:hover,
.header-nav__dropdown ul li:hover a{
  color: #ffb23d;
}
.header-wrapper__phone {
  font-family: var(--theme-font-text);
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px dotted #ffffff;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.header-wrapper__phone:hover,
.header-wrapper__phone:focus {
  color: #ffb23d;
}
header.sticky-header {

}
header.sticky-header .header-wrapper {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #0a57ae;
  padding-top: 12px;
  padding-bottom: 12px;
}
.header-wrapper__toggle {
  display: none;
  background-color: transparent;
  position: relative;
  padding-left: 72px;
}
.header-wrapper__toggle:before {
  content: 'МЕНЮ';
  position: absolute;
  left: 0;
  text-transform: uppercase;
  font-family: var(--theme-font-text);
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}
.header-wrapper__col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

/* Intro */
.intro {
  border-radius: var(--theme-border-radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.intro-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(281.27deg, #73B5FF 0%, #004EA6 100%);
  border-radius: var(--theme-border-radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.intro-wrapper:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../img/banner-circle.png);
  width: 522px;
  height: 400px;
}
.intro-wrapper__content {
  padding-top: 200px;
  width: 100%;
}
.intro-content__heading {
  font-family: var(--theme-font-text);
  font-weight: bold;
  font-size: 64px;
  color: #ffffff;
  display: block;
  position: relative;
  z-index: 1;
}
.intro-wrapper__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.intro-wrapper__image {
  position: absolute;
  z-index: 2;
  width: 375px;
  display: block;
  top: 96px;
  right: 48px;
}
.intro-features__item {
  font-family: var(--theme-font-text);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  max-width: 575px;
  line-height: 140%;
  padding-left: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
}
.intro-features__item:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/icon-intro-features.png);
}
.intro-wrapper__actions {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  justify-content: space-between;
  grid-gap: 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.intro-scroll__icon {
  width: 26px;
  height: 20px;
}

/* About */
.about {
}
.about-wrapper {
  display: grid;
  grid-template-columns: 800px 1fr;
  grid-gap: 32px;
  align-items: stretch;
  padding-left: 0;
  padding-right: 0;
}
.about-wrapper__content {
  border-radius: var(--theme-border-radius);
  background: #73B5FF;
  padding: 48px;
}
.about-content__heading {
  font-family: var(--theme-font-text);
  font-weight: bold;
  font-size: 32px;
  color: #73B5FF;
  display: inline-block;
  background-color: #fff;
  padding: 12px 24px;
  border-radius: 20px;
}
.about-content__text {
  display: block;
  margin-top: 24px;
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  color: #fff;
}
.about-wrapper__img {
  border: 1px solid #e1e1e1;
  border-radius: var(--theme-border-radius);
  object-fit: cover;
  object-position: right;
}

/* Include */
.include {
}
.include-wrapper {
  border-radius: var(--theme-border-radius);
  background-color: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
}
.include-wrapper__heading {
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 56px;
  color: #333333;
  display: block;
  margin-bottom: 40px;
}
.include-wrapper__heading.--include-type-2 {
  margin-bottom: 16px;
  text-align: center;
}
.include-wrapper__text {
  font-family: var(--theme-font-text);
  font-weight: 400;
  font-size: 22px;
  color: #333333;
  display: block;
  margin: 0 auto 24px auto;
  max-width: 800px;
  text-align: center;
}
.include-wrapper__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  grid-gap: 20px;
}
.include-grid__item {
  background-color: #F2F4F8;
  border-radius: 20px;
  padding: 20px;
  min-height: 165px;
  position: relative;
}
.include-grid__item:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  background-color: #73B5FF;
  border-radius: 100px;
  right: 8px;
  bottom: 8px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.include-grid__item:hover:before {
  background-color: #ffb23d;
}
.include-grid__item.--item-big {
  grid-column: span 2;
  min-height: auto;
}
.include-grid__text {
  font-family: var(--theme-font-text);
  font-weight: 400;
  font-size: 18px;
  color: #565656;
  line-height: 140%;
}
.include-actions__button {
  margin-top: 40px;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Basedoc */
.basedoc {
}
.basedoc-wrapper {
  border-radius: var(--theme-border-radius);
  background-color: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
}
.basedoc-wrapper__heading {
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 56px;
  color: #333333;
  display: block;
  margin-bottom: 40px;
}
.basedoc-wrapper__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  align-items: stretch;
}
.basedoc-grid__list {
  background-color: #F2F4F8;
  padding: 20px;
  border-radius: 20px;
}
.basedoc-list__item {
  font-family: var(--theme-font-text);
  font-weight: 400;
  font-size: 18px;
  color: #565656;
  line-height: 140%;
  
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}
.basedoc-list__item:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  background-color: #73B5FF;
  border-radius: 100px;
  left: 0;
  top: 4px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.basedoc-list__item:hover:before {
  background-color: #ffb23d;
}
.basedoc-list__item:last-child {
  margin-bottom: 0;
}
.basedoc-wrapper__tip {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  min-height: 130px;
  background: linear-gradient(281.27deg, #73B5FF 0%, #004EA6 100%);
  border-radius: 20px;
  padding: 40px;
  
}
.basedoc-wrapper__tip span {
  font-family: var(--theme-font-text);
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  line-height: 140%;
  
  text-transform: uppercase;
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  
  width: 128px;
  height: 50px;
  
  background: linear-gradient(91.19deg, #FFC873 0%, #FF9A00 100%);
  border-radius: 16px;

  
}
.basedoc-wrapper__tip p {
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  line-height: 160%;
  max-width: 768px;
}

/* Features */
.features {
}
.features-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.features-wrapper__heading {
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 56px;
  color: #333333;
  display: block;
  margin-bottom: 40px;
}
.features-wrapper__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  grid-gap: 20px;
}
.features-grid__item {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.features-item__cover {
  display: block;
  width: 100%;
  height: 292px;
  margin-bottom: 16px;
  object-fit: cover;
}
.features-item__title {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 8px;
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 120%;
}
.features-item__text {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  font-family: var(--theme-font-text);
  font-weight: 400;
  font-size: 18px;
  color: #565656;
  line-height: 140%;
}

/* FAQ */
.faq {
}
.faq-wrapper {
  border-radius: var(--theme-border-radius);
  background-color: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
}
.faq-wrapper__heading {
  font-family: var(--theme-font-text);
  font-weight: 600;
  font-size: 32px;
  color: #ffffff;
  background-color: #73B5FF;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 20px;
  margin-bottom: 40px;
}
.faq-wrapper__tabs {
}
.faq-tabs__item {
  overflow: hidden;
  margin-bottom: 20px;
}
.faq-tabs__item:last-child {
  margin-bottom: 0;
}
.faq-tabs__item.--active-tab {

}
.faq-tabs__head {
  background-color: #F2F4F8;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 120%;
  
  cursor: pointer;
}
.faq-tabs__item .faq-tabs__head svg {
  width: 18px;
  height: 10px;
  flex: 1 0 18px;
  max-width: 18px;
}
.faq-tabs__item.--active-tab .faq-tabs__head {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 1px solid #73B5FF;
}
.faq-tabs__item.--active-tab .faq-tabs__head svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq-tabs__text {
  background-color: #F2F4F8;
  height: 0;
  
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.faq-tabs__item.--active-tab .faq-tabs__text {
  height: auto;
  padding: 20px;
}

/* Question */
.question {
}
.question-wrapper {
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: 980px 1fr;
  grid-gap: 32px;
}
.question-wrapper__left {
  padding: 48px;
  background: linear-gradient(281.27deg, #73B5FF 0%, #004EA6 100%);
  border-radius: var(--theme-border-radius);
}
.question-wrapper__content {
}
.question-content__title {
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 42px;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}
.question-content__text {
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  color: #ffffff;
}
.question-wrapper__form {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  align-items: center;
  max-width: 880px;
}
.question-form__input {
  outline: none;
  background-color: #F2F4F8;
  border-radius: var(--theme-border-radius);
  height: 80px;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  
  padding-left: 32px;
  padding-right: 32px;
  
  font-family: var(--theme-font-text);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #333333;
}
.question-form__submit {
  grid-column: span 3;
}
.question-wrapper__right {
  padding: 48px;
  border-radius: var(--theme-border-radius);
  background-color: #fff;
}
.question-wrapper__list {
}
.question-list__item {
  margin-bottom: 20px;
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #333333;
}
.question-list__item:last-child {
  margin-bottom: 0;
}
.question-list__item a {
  font-family: var(--theme-font-text);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #333333;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.question-list__item a:hover,
.question-list__item a:focus {
  color: #ffb23d;
}

/* Footer */
footer {
  margin-bottom: 32px;
}
.footer-wrapper {
  border-radius: var(--theme-border-radius);
  background-color: #333333;
  padding-top: 48px;
  padding-bottom: 48px;
}
.footer-wrapper__top {
  display: none;
  align-items: center;
  justify-content: center;
}
.footer-wrapper__logo {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--theme-font-text);
}
.footer-wrapper__phone {

}
.footer-wrapper__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.footer-wrapper__policy {
  font-size: 14px;
  font-weight: 400;
  color: #EDEDED;
  font-family: var(--theme-font-text);
  text-align: center;
  display: block;
}
.footer-wrapper__copyright {
  font-size: 14px;
  font-weight: 400;
  color: #EDEDED;
  font-family: var(--theme-font-text);
  text-align: center;
  display: block;
}
.footer-wrapper__copyright span {
  font-family: Arial, sans-serif;
}

/* Else */
.modal-overlay {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  
  background-color: rgba(0,0,0,.6);
  
  pointer-events: none;
  opacity: 0;
  
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.modal {
  position: fixed;
  z-index: 1001;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 560px;
  width: 100%;
  background-color: #fff;
  padding: 40px 45px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border-radius: 20px;
  
  opacity: 0;
  pointer-events: none;
}
.modal-heading {
  font-weight: 600;
  color: #000000;
  font-size: 36px;
  line-height: 1.23;
  margin-bottom: 24px;
  text-align: center;
}
.modal-text {
  font-weight: 400;
  color: #000000;
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 24px;
}
.modal-form {
}
.modal-form__input {
  font-family: var(--theme-font-text);
  font-weight: 400;
  color: #000000;
  margin-bottom: 25px;
  font-size: 16px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  height: 60px;
  outline: none;
}
.modal-form__submit {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--theme-font-text);
  font-weight: 400;
  color: #ffffff;
  font-size: 24px;
  border-radius: 40px;
  border: none;
  background-color: #ff9800;
  cursor: pointer;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.modal-submit__text {
  font-family: var(--theme-font-text);
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
}
.modal-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.modal-nav__item {
  font-family: var(--theme-font-text);
  color: #333333;
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.modal-nav__item:hover,
.modal-nav__item:focus {
  color: #ffb23d;
}
.modal-nav__phone {
  font-size: 22px;
  margin-top: 16px;
}
.--modal-show.modal-overlay,
.--modal-show.modal {
  opacity: 1;
  pointer-events: auto;
}

.callback-button-fixed {
  position: fixed;
  bottom: 120px;
  right: -100%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(281.27deg, #73B5FF 0%, #004EA6 100%);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  cursor: pointer;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.callback-button-fixed svg {
  width: 45px;
  height: 45px;
}
.callback-button-fixed.--cb-show {
  right: 0;
}