@font-face {
  font-family: "Mulish";
  src: url("/wp-content/themes/24author/assets/webfonts/Mulish-ExtraBold.woff")
      format("woff"),
    url("/wp-content/themes/24author/assets/webfonts/Mulish-ExtraBold.ttf")
      format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Mulish";
  src: url("/wp-content/themes/24author/assets/webfonts/Mulish-Medium.woff")
      format("woff"),
    url("/wp-content/themes/24author/assets/webfonts/Mulish-Medium.ttf")
      format("truetype");
  font-weight: 500;
  font-style: normal;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: "Mulish";
  font-weight: 500;
  color: #0a0228;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 16px;
}

a:hover {
  text-decoration: none;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a09ea7;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a09ea7;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #a09ea7;
}

input:focus,
textarea:focus,
button:focus,
.form-control:focus,
.btn.focus,
.btn:focus,
a:focus,
button:focus,
.search-box input.form-control:focus,
button.close-search:focus {
  outline: none;
}

.title {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
}

h2 {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
}

h3 {
  font-weight: 800;
  font-size: 18px;
  line-height: 26px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 32px;
  height: 56px;
  line-height: 27px;
  font-weight: 800;
  font-size: 16px;
  border-radius: 8px;
  border: 0px;
}

a.button {
  text-decoration: none;
}

.button.white {
  background: #ffffff;
  box-shadow: 0px 12px 28px rgba(51, 43, 80, 0.08);
  color: #9784dd;
}

.button.white:hover {
  background-color: #eee8ff;
}

.button.purple-dark {
  background: #9784dd;
  color: #fff;
}

.button.tg-button {
  background: #1da3f3;
  color: #fff;
}

.button.tg-button:hover {
  background: #0d8ddb;
}

.button.purple-light {
  background: #eee8ff;
  color: #9784dd;
}

.button.pink-middle {
  background: #ff64b0;
  color: #fff;
}

.button.transparent {
  background: none;
  color: #9784dd;
  padding: 0px;
  height: auto;
}

.button.purple-dark:hover {
  background: #775fd2;
}

.button.purple-light:hover {
  background: #d6c7ff;
}

.button.pink-middle:hover {
  background: #f13893;
}

.button.read-more:after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  margin-left: 16px;
  background: url("/wp-content/themes/24author/assets/img/icon/arrow-right-white.svg")
    no-repeat;
  background-size: cover;
}

.button-icon-right img {
  margin-left: 8px;
}

.button-icon-left img {
  margin-right: 8px;
}

.button.read-more {
  display: flex;
  align-items: center;
}

.button.button-text {
  background: none;
  border: 0px;
  font-weight: inherit;
  padding: 0px;
  margin: 0px;
}

.button.white-text {
  color: #fff;
}

input[type="email"],
input[type="tel"],
input[type="text"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f5f1ff;
  border: 1px solid #eee8ff;
  border-radius: 8px;
  padding: 0px 16px;
  height: 56px;
}

.input {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  height: 28px;
  width: 100%;
  padding: 0 10px;
}

.input::-webkit-input-placeholder {
  color: #969696;
}

.input::-moz-placeholder {
  color: #969696;
}

.input:-ms-input-placeholder {
  color: #969696;
}

.input::-ms-input-placeholder {
  color: #969696;
}

.input::placeholder {
  color: #969696;
}

textarea.input {
  resize: none;
  padding: 0 0;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__input:checked + .checkbox__label:before {
  background: #0085ff url(assets/img/checkbox.svg) no-repeat center center/9px
    8px;
}

.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 10px;
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 13px;
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  border: 1px solid #969696;
  border-radius: 2px;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__item:not(:last-child) {
  margin-bottom: 0.3125em;
}

.options__item + .options__item {
  margin-top: 10px;
}

.options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.options__input:focus + .options__label:before {
  -webkit-box-shadow: 0 0 5px #000;
  box-shadow: 0 0 5px #000;
}

.options__input:checked + .options__label:before {
  border: 2px solid #0085ff;
}

.options__input:checked + .options__label:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.options__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.options__label:before {
  content: "";
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 14px;
  height: 14px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 14px;
  flex: 0 0 14px;
  border-radius: 50%;
  border: 2px solid #969696;
}

.options__label:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0085ff;
  position: absolute;
  left: 3px;
  top: 3px;
}

.options__text {
  font-size: 14px;
  line-height: 16px;
}

select[hidden] {
  display: none;
}

.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  border: 0px;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
  background: #f5f1ff;
  height: 56px;
  border: 1px solid #eee8ff;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
  padding: 0px 9px;
}

span.select__content {
  color: #000;
  font-size: 15px;
}

.select__value > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select__value > ::before {
  margin-left: 5px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  color: #c4c4c4;
  font-size: 21px;
}

.select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(/wp-content/themes/24author/assets/img/icon/arrow-down.svg)
    no-repeat center center;
  background-size: 24px;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: 56px;
  min-width: 100%;
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px;
  max-height: 370px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  text-align: left;
  border: 0px;
  cursor: pointer;
  color: inherit;
  overflow: hidden;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  padding: 10px 6px;
  font-size: 15px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
}

.select__option::before {
  margin-left: 5px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  color: #c4c4c4;
  font-size: 21px;
}

.select__option[hidden] {
  display: none;
}

.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

.tabs-ui .nav-link {
  border: 0px;
  border-radius: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 32px;
  margin-right: -1px;
  transition: all 0.1s ease-in-out;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #0a0228;
  flex: 1;
  justify-content: center;
}

.tabs-ui {
  border: 0px;
  overflow: hidden;
  display: inline-flex;
  border-radius: 8px;
  box-shadow: 0px 12px 28px rgb(51 43 80 / 8%);
}

.tabs-ui .nav-link.active {
  background-color: #eee8ff;
  font-weight: 800;
  color: #9784dd;
}

.landing__header-form .tabs-ui {
  width: 100%;
}

.landing__header-form .tab-content {
  margin-top: 24px;
}

.landing__header-form-form--text {
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 23px;
}

.landing__header-form-form--text span {
  color: #9785de;
}

.landing__header-form .tg-button {
  margin-bottom: 12px;
}

/* swiper */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
  margin: 40px 0px 0px;
  position: relative;
}

.swiper__navigation-wrapper .swiper-button-next,
.swiper__navigation-wrapper .swiper-button-prev {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  left: 0px;
  right: 0px;
  top: 0px;
  margin: 0px;
}

.swiper__navigation-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  align-items: center;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  background: url("/wp-content/themes/24author/assets/img/icon/slide-left-button.svg");
  width: 100%;
  height: 100%;
  content: "";
  background-size: contain;
  display: block;
  background-repeat: no-repeat;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  background: url(/wp-content/themes/24author/assets/img/icon/slide-right-button.svg);
  width: 100%;
  height: 100%;
  content: "";
  background-size: contain;
  display: block;
  background-repeat: no-repeat;
}

.swiper__navigation-wrapper .swiper-pagination {
  width: auto;
  margin: 0px 16px;
  left: 0px;
}

/* modal */

.modal-body {
  display: flex;
  flex-flow: row;
  padding: 0px;
}

.modal-left {
  width: 50%;
}

.modal-right {
  width: 50%;
  padding: 32px 32px 32px 0px;
  overflow: hidden;
}

#helpModal .modal-left {
  background: url(/wp-content/themes/24author/assets/img/popup/help-2x.png);
  background-repeat: no-repeat;
  background-position: bottom -26px left -35px;
  background-size: auto 100%;
  border-radius: 16px;
}

#buyModal .modal-left,
#buynewModal .modal-left,
#buynewModalJournal .modal-left {
  background: url(/wp-content/themes/24author/assets/img/popup/buy-2x.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 100%;
  border-radius: 16px;
}

.modal-title {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  margin-bottom: 8px;
}

.modal-description {
  font-size: 16px;
  line-height: 24px;
  color: #524e60;
  margin-bottom: 24px;
}

.modal-form input {
  width: 100%;
  margin-bottom: 16px;
}

.modal button.btn-close {
  background: #9784dd
    url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 18L6 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 6L6 18' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  opacity: 1;
  border-radius: 100px;
  background-repeat: no-repeat;
  background-position: center;
  height: 40px;
  width: 40px;
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: 99;
}
.modal .modal-dialog-scrollable button.btn-close {
  top: 16px;
  right: 16px;
}
.modal-content {
  border: 0px;
  border-radius: 16px;
}

/* tabs */

.tab_content {
  display: none;
}

.tab_content._active {
  display: block;
}

/* Header menu */
.header__user-profile {
  width: 56px;
  height: 56px;
  margin-left: 16px;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 740px) {
  .header__user-profile {
    margin-right: 16px;
  }
}

.header__user-profile svg * {
  fill: #fff;
}

@media (max-width: 480px) {
  .header__button-menu {
    display: none;
  }

  .header__mobile-wrapper .header__button-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__user-profile {
    margin-left: auto;
  }
}
@media (max-width: 991px) {
  .header__logo .logo-desctop {
    display: none;
  }
}
.logo-mobile {
  display: none;
}
@media (max-width: 991px) {
  .header__logo .logo-mobile {
    display: flex;
  }
}

body._menu-open {
  overflow: hidden;
}

.header__mobile-wrapper .header__mobile-phone {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #0a0228;
  text-decoration: none;
  margin-bottom: 6px;
}

.header__mobile-wrapper .header__mobile-email {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0a0228;
  text-decoration: none;
}

.header__mobile-wrapper button {
  margin-top: 25px;
  margin-bottom: 10px;
  width: 100%;
}

.header__mobile-wrapper span {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #524e60;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 25px 0px;
}

.header__button-request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__button-request span {
  margin-right: 20px;
  max-width: 150px;
  color: #524e60;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

._active .header__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__mobile {
  display: none;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  background: #fff;
  box-shadow: inset 0px 3px 21px -21px #000;
  z-index: 1000;
}

.header__mobile-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 58px;
}

.header__mobile-button {
  display: none;
}

._active .header__mobile-button svg path:nth-child(1) {
  transform: translate(60%, -40%) rotate(45deg);
}

._active .header__mobile-button svg path:nth-of-type(2) {
  opacity: 0;
}

._active .header__mobile-button svg path:last-of-type {
  transform: translate(-10%, 60%) rotate(-45deg);
}

.header__mobile-button svg path {
  transition: transform 0.2s;
}

/* Homepage */

/* Homepagebanner */

.homepage__header-banner {
  background: #ffffff;
  box-shadow: 0px 12px 28px rgba(51, 43, 80, 0.08);
  border-radius: 24px;
}

.homepage__header-title {
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
}

.homepage__header-title span {
  display: block;
}

.homepage__header-description {
  max-width: 650px;
  padding: 64px 40px 64px 64px;
}

.homepage__header-img {
  flex: 1;
  width: 615px;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
}

.homepage__header-img_line {
  height: 110%;
  width: 269px;
  background-size: 100%;
  background-position: 0px 0px;
  transform: rotate(-8deg) translateX(40px) translateY(-15px);
  margin-left: 12px;
}

.homepage__header-img_line:nth-child(3) {
  background-image: url(/wp-content/themes/24author/assets/img/headerback/line-1-new.png);
  animation: 60s linear 0s infinite backgroundheader;
}

.homepage__header-img_line:nth-child(2) {
  background-image: url(/wp-content/themes/24author/assets/img/headerback/line-2-new.png);
  animation: 60s linear 0s infinite backgroundheader;
}

.homepage__header-img_line:nth-child(1) {
  background-image: url(/wp-content/themes/24author/assets/img/headerback/line-1-new.png);
  animation: 60s linear 0s infinite backgroundheader;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .homepage__header-img_line:nth-child(3) {
    background-image: url(/wp-content/themes/24author/assets/img/headerback/line-1-new.png);
    animation: 60s linear 0s infinite backgroundheader;
  }

  .homepage__header-img_line:nth-child(2) {
    background-image: url(/wp-content/themes/24author/assets/img/headerback/line-2-new.png);
    animation: 60s linear 0s infinite backgroundheader;
  }

  .homepage__header-img_line:nth-child(1) {
    background-image: url(/wp-content/themes/24author/assets/img/headerback/line-1-new.png);
    animation: 60s linear 0s infinite backgroundheader;
  }
}

@keyframes backgroundheader {
  100% {
    background-position: 0px 3000px;
  }
}

.homepage__header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: row;
  -webkit-flex-flow: row;
  -ms-flex-flow: row;
}

.homepage__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__form-field {
  max-width: 244px;
  width: 100%;
}

.header__form-field.field-button {
  width: 115px;
}

.header__form-field * {
  width: 100%;
}

.header__form-field input.button {
  padding: 0px 20px;
  border-radius: 0px 8px 8px 0px;
}

.header__form-field input[type="text"] {
  border-radius: 8px 0px 0px 8px;
}

.header__form-field .select__title {
  border-radius: 0px;
}

.homepage__form .header__form-field {
  max-width: 100%;
  margin-bottom: 16px;
}

.homepage__form {
  flex-flow: column;
  align-items: flex-start;
}

.homepage__form .header__form-field.field-button {
  width: auto;
}

.homepage__form .header__form-field input[type="text"],
.homepage__form .header__form-field .select__title,
.homepage__form .header__form-field input.button {
  border-radius: 8px;
}

/* About */

.about__item {
  position: relative;
  background: #f9f7ff;
  padding: 24px;
  width: 296px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #f5f1ff;
  border-radius: 8px;
}

.about__wrapper {
  width: 100%;
  height: 730px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: url(/wp-content/themes/24author/assets/img/person.png) center
    no-repeat;
  background-size: auto 65%;
  position: relative;
}

.background__circle {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.bg-circle:nth-child(1) {
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/themes/24author/assets/img/person-c-1.png);
  background-position: center center;
  background-size: 36%;
  background-repeat: no-repeat;
  z-index: -1;
  position: absolute;
  top: 0px;
  animation: 5s cubic-bezier(0.26, -0.28, 0.67, 1.26) 0s infinite backCircle;
}

@keyframes backCircle {
  0% {
    background-size: 36%;
  }

  50% {
    background-size: 34%;
  }

  100% {
    background-size: 36%;
  }
}

.bg-circle:nth-child(2) {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/themes/24author/assets/img/person-c-2.png);
  background-position: center center;
  background-size: 45%;
  background-repeat: no-repeat;
  z-index: -2;
  position: absolute;
  top: 0px;
  animation: 5s cubic-bezier(0.26, -0.28, 0.67, 1.26) 0s infinite backCircle2;
}

@keyframes backCircle2 {
  0% {
    background-size: 45%;
  }

  50% {
    background-size: 43%;
  }

  100% {
    background-size: 45%;
  }
}

.bg-circle:nth-child(3) {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/themes/24author/assets/img/person-c-3.png);
  background-position: center center;
  background-size: 53%;
  background-repeat: no-repeat;
  z-index: -3;
  position: absolute;
  top: 0px;
  animation: 5s cubic-bezier(0.26, -0.28, 0.67, 1.26) 0s infinite backCircle3;
}

@keyframes backCircle3 {
  0% {
    background-size: 53%;
  }

  50% {
    background-size: 50%;
  }

  100% {
    background-size: 53%;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .about__wrapper {
    background-image: url(/wp-content/themes/24author/assets/img/person-2x.png);
  }
}

.about__angle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-flow: column;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  padding: 110px 0px 130px;
}

.about__item img {
  width: 40px;
  height: 40px;
}

.about__item span {
  margin-left: 15px;
  font-size: 16px;
  line-height: 24px;
}

.about__item:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  width: 216px;
  height: 72px;
}

.about__item.about__item-l1:before {
  right: -216px;
  top: 60px;
  background-image: url(/wp-content/themes/24author/assets/img/about/liner_top-left.svg);
}

.about__item.about__item-l2:before {
  right: -216px;
  top: 60px;
  background-image: url(/wp-content/themes/24author/assets/img/about/liner_bottom-left.svg);
}

.about__item.about__item-l3:before {
  left: -216px;
  top: 60px;
  background-image: url(/wp-content/themes/24author/assets/img/about/liner_top-right.svg);
}

.about__item.about__item-l4:before {
  left: -184px;
  top: 60px;
  background-image: url(/wp-content/themes/24author/assets/img/about/liner_bottom-right.svg);
}

.homepage__about .title {
  text-align: left;
  margin-bottom: 54px;
  max-width: 867px;
}

.auth__about + .homepage__about {
  padding-top: 0px;
}

.homepage__about {
  padding-top: 88px;
  padding-bottom: 88px;
}

.auth__about {
  padding: 88px 0px;
}

.homepage__about .title span {
  color: #9784dd;
}

.about__button {
  display: flex;
  justify-content: center;
  margin-top: -85px;
  position: relative;
}

/* Directions */

.homepage__directions {
  background: #fff;
  padding: 88px 0px;
  position: relative;
}

.switch-field {
  overflow: hidden;
  display: inline-flex;
  border-radius: 8px;
  box-shadow: 0px 12px 28px rgb(51 43 80 / 8%);
}

.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.switch-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 32px;
  margin-right: -1px;
  transition: all 0.1s ease-in-out;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #0a0228;
}

.switch-field label:hover {
  cursor: pointer;
}

.switch-field input:checked + label {
  background-color: #eee8ff;
  font-weight: 800;
  color: #9784dd;
}

.homepage__direction-search--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 45px;
}

.homepage__direction-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1 0 auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  padding-right: 45px;
}

.homepage__direction-tabs {
  background: none;
  border: 0px;
  padding: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-right: 24px;
  margin-bottom: 16px;
  padding-bottom: 0px;
  color: #0a0228;
  border-bottom: 1px solid #efefef;
}

.homepage__direction-tabs span {
  font-size: 11px;
  position: relative;
  top: -7px;
  pointer-events: none;
}

button.homepage__direction-tabs._active {
  color: #775fd2;
  border-bottom: 1px solid #fff;
}

.homepage__direction-category-items {
  margin-top: 60px;
}

.homepage__direction-search input#keyword {
  max-width: 500px;
  width: 100%;
  border-radius: 8px 0px 0px 8px;
}

.homepage__direction-search button {
  border-radius: 0px 8px 8px 0px;
}

.direction__list-item ul {
  padding: 0px;
  list-style: none;
}

.journal__list-listing .direction__list-item ul {
  column-count: 3;
  gap: 12px;
}

.direction__list-item a {
  color: #fff;
  text-decoration: none;
}

.direction__list-wrapper {
  background: #9784dd;
  padding: 24px;
  border-radius: 16px;
  margin-top: 15px;
}

.direction__list {
  column-count: 4;
  column-gap: 20px;
}

.direction__list-item {
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: auto;
  break-inside: avoid;
}

.direction__list-category {
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 24px;
}

.direction__list-item ul a span {
  color: #c1b5eb;
  text-decoration: underline;
  text-decoration-color: #9785de;
}

.direction__list-item ul a {
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: #c1b6eb;
}

/* Expert card */

.homepage__expert .siwper-navigation-desctop {
  display: none;
}

.homepage__bibliography .title {
  margin-bottom: 40px;
}

.title.homepage__expert-title {
  margin-bottom: 40px;
}

.homepage__expert-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 25px;
  margin-top: 60px;
}

.expert-item {
  font-size: 14px;
  background: #f9f7ff;
  border: 1px solid #f5f1ff;
  border-radius: 16px;
}

.expert-item.background-col {
  background: url(/wp-content/themes/24author/assets/img/expert_person.png)
    center no-repeat;
  background-size: contain;
}

.expert__header {
  display: flex;
}

span.expert__about-name {
  font-weight: 800;
}

.expert__profile {
  display: flex;
  flex-flow: column;
  padding-left: 15px;
  flex: 1;
}

span.expert__about-departament {
  color: #524e60;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.expert__img {
  width: 72px;
  height: 72px;
}

.expert__img-frame {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 100px;
}

.expert__img img {
  width: 100%;
}

.expert__about-rating {
  color: #0a0228;
  display: flex;
  align-items: center;
  font-weight: 800;
}

.expert__about-rating img {
  margin-right: 4px;
  height: 13px;
}

.expert__wrpapper {
  padding: 24px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
}

.expert__about {
  background: #9784dd;
  border-radius: 16px;
  color: #fff;
  margin-top: 15px;
}

.hiddenFull {
  display: none;
}

.expert__about-text {
  padding: 16px 56px 16px 16px;
  background: url(/wp-content/themes/24author/assets/img/quote.svg) no-repeat;
  background-position: right 15px top 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.lastorder__wrapper .expert__about-text {
  padding: 16px 56px 36px 16px;
}

.expert__about-tag {
  padding: 0px 15px 15px 15px;
}

.expert__about-tag span {
  text-transform: uppercase;
  opacity: 0.4;
  margin-right: 7px;
  font-size: 11px;
}

.expert__work {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.expert__work-item .work-count {
  display: block;
  font-weight: 900;
}

.button_expert {
  border: 1px solid #eee8ff;
  border-radius: 100px;
  background: transparent;
  padding: 5px 20px;
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  color: #9784dd;
}

button.button_expert:hover {
  background: #eee8ff;
}

.expert__about-text a {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
}

.homepage__expert-img {
  background: url(/wp-content/themes/24author/assets/img/expert_person.png)
    no-repeat center bottom;
  background-size: contain;
  margin-bottom: -25px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .homepage__expert-img {
    background-image: url(/wp-content/themes/24author/assets/img/expert_person-2x.png);
  }
}

/* another about */

.homepage__about-another {
  padding-top: 80px;
}

.homepage__about-wave {
  background: url(/wp-content/themes/24author/assets/img/wave.svg) top no-repeat;
  width: 100%;
  height: 156px;
  background-size: cover;
  margin-bottom: -5px;
}

.homepage__about-another-title {
  text-align: left;
  margin-bottom: 40px;
}

.homepage__about-another--items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 0fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}

.homepage__about-another-item:nth-child(3) {
  grid-area: 1 / 3 / 3 / 4;
  background: #fff;
  display: flex;
  flex-flow: column;
  -ms-flex-flow: column;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 8px 16px rgba(51, 43, 80, 0.08);
}

.homepage__about-another-item:nth-child(4) {
  grid-area: 2 / 1 / 3 / 3;
}

.homepage__about-another-item {
  border-radius: 16px;
  background: #f8f8f8;
}

.about-another__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}

ul.about-another__list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  height: 100%;
}

.about-another__wrapper {
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  height: 100%;
}

.homepage__about-another-item:nth-child(4) .about-another__list-item {
  align-items: flex-start;
}

ul.about-another__list li {
  margin-bottom: 8px;
  font-size: 14px;
}

.about-another__title-card {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-another__form-img {
  width: 100%;
  height: 250px;
  background: url(/wp-content/themes/24author/assets/img/prep-footer.png);
  background-size: 274px;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  margin-bottom: -15px;
  height: 116px;
  margin-top: -10px;
}

.about-another__form form {
  width: 100%;
}

.about-another__form h3 {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #0a0228;
  margin-bottom: 24px;
}

.about-another__form form input {
  width: 100%;
  margin-bottom: 15px;
}

.about-another__form form input[type="submit"] {
  margin-bottom: 0px;
}

img.about-another__img-t {
  display: none;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e4e4e4;
  margin-top: 88px;
}

.archive .site-footer,
.blog .site-footer,
.page-template-template-bibliography .site-footer,
.single .site-footer {
  margin-top: 0px;
}

.single .footer-wrapper {
  border-top: 1px solid #e4e4e4;
}

.footer-left__menu li {
  margin-bottom: 16px;
}

.footer-left__menu li:last-child {
  margin-bottom: 0px;
}

.wrapper-bottom__footer {
  border-top: 1px solid #e4e4e4;
  padding: 33px 0px 0px 0px;
}

.footer-left {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 33px;
}

.footer-left__menu {
  display: flex;
  max-width: 70%;
}

.bottom__footer-menu {
  min-width: 25%;
  padding-right: 62px;
}

.bottom__footer-menu:last-child {
  padding-right: 0px;
}

.footer-left__menu a {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;

  color: #524e60;
  text-decoration: none;
}

.footer-left__menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.page-template-template-landing .site-footer {
  background: #fbfbfb;
  margin-top: 88px;
}

.footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 33px 0px;
  flex-flow: column;
}

.footer-left__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
}

.recapcha_policy {
  font-size: 12px;
  opacity: 0.3;
  margin-top: 8px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recapcha_policy a {
  color: inherit;
}

.footer-left__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  margin-bottom: 24px;
}

.footer-left__contact a:nth-child(1) {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  margin-bottom: 6px;
}

.footer-left__contact a {
  color: #0a0228;
  text-decoration: none;
}

.footer-left__copyright {
  margin-top: 25px;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #524e60;
  width: 100%;
}

.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-right__links a {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #524e60;
}

.footer-right__links a:not(:last-child) {
  margin-right: 8px;
}

.footer-right__money img {
  height: 34px;
  margin-right: 0px;
}

.footer-right__links span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

/* Single page */

.single header.header,
.single__header,
.single-header {
  background: #f5f1ff;
}

.single__header-wrapper {
  display: flex;
  align-items: flex-start;
}

.single__header-img {
  flex: 0 0 240px;
}

.single__header-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
}

.single__header-about--item a {
  color: inherit;
}

.single__header-about--item a:hover {
  color: #9784dd;
}

.single__header-content {
  padding-left: 48px;
  flex: 1;
  padding-right: 48px;
}

.single__header-price-elements {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
}

.single__header-price-elements-mob {
  display: none;
  background: #9784dd;
  padding: 24px;
  border-radius: 16px;
  margin: 16px 0px;
  color: #fff;
  text-align: center;
}

.single__header-price-button .button img {
  margin-right: 8px;
}

.single__header {
  padding: 64px 0px 88px;
}

.single__header-expert {
  display: flex;
  margin-top: 24px;
  align-items: center;
}

.single__header-expert--about {
  display: flex;
  flex-flow: column;
  font-size: 14px;
  flex: 1;
}

.single__header-title {
  padding-right: 16px;
}

.single__header-title .title {
  font-size: 32px;
  line-height: 38px;
}

.single__header-tags a {
  background: #eee8ff;
  text-decoration: none;
  color: #775fd2;
  padding: 7px 16px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 100px;
  max-width: 370px;
  width: auto;
  display: block;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 4px;
}

.single__header-tags {
  margin-bottom: 23px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
}

.single__header-about--item {
  display: flex;
  align-items: center;
  margin-right: 24px;
  font-size: 16px;
  color: #524e60;
  margin-bottom: 8px;
}

.single__header-about--item img {
  margin-right: 5px;
}

.single__heaeder-expert-avatar {
  margin-right: 16px;
  width: 44px;
  height: 44px;
}

.single__heaeder-expert-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
}

span.sigle__expert-name {
  font-weight: 800;
}

span.sigle__expert-departament {
  color: #524e60;
}

.single__header-price-description {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.5;
  text-align: center;
}

.single__header-price-button {
  width: 100%;
  display: grid;
  gap: 16px;
}

.single__header-price-button button {
  width: 100%;
}

.single__header-price .header-price {
  font-size: 32px;
  line-height: 38px;
  font-weight: 800;
}

.fragment__tabs-wrapper {
  background: #f5f1ff;
}

.fragment__tabs-mobile {
  display: none;
}

.fragment__tabs-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fragment__tabs-buttons button {
  color: #0a0228;
  font-size: 25px;
  line-height: 34px;
  font-weight: 800;
  border: 0px;
  background: transparent;
  padding: 24px;
  border-radius: 10px 10px 0px 0px;
}

.fragment__tabs-buttons button._active {
  background: #fff;
}

.fragment__tabs-buttons button._active:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #f1c90a;
  display: block;
  position: relative;
  top: 9px;
}

.fragment__content-wrapper {
  display: flex;
  padding-top: 88px;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}

.fragment__tabs-content {
  padding-right: 54px;
  flex: 1;
}

.fragment__text * {
  word-break: break-word;
}

.fragment__buy-block {
  display: flex;
  /* background: #f5f1ff; */
  /* border-radius: 16px; */
  /* padding: 24px; */
}

.fragment__buy-block.sticky-top {
  top: 55px;
}

.fragment__text .nav-tabs {
  border: 0px;
  margin-bottom: 32px;
}

.fragment__text .nav-item button {
  border: 1px solid #eee8ff;
  font-size: 16px;
  line-height: 24px;
  color: #0a0228;
  padding: 16px 32px;
}

.fragment__text .nav-item button[disabled] {
  opacity: 0.5;
}

.fragment__text .nav-item button.active {
  background: #eee8ff;
  border: 1px solid #eee8ff;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  color: #775fd2;
}

.fragment__text .nav-item:first-child button {
  border-radius: 8px 0px 0px 8px;
}

.fragment__text .nav-item:last-child button {
  border-radius: 0px 8px 8px 0px;
}

.show-more .fragment__text {
  max-height: 500px;
  overflow: hidden;
}

.fragment__text._active {
  max-height: inherit;
}

.fragment__tabs-content .read-more {
  margin-top: 55px;
}

.single__fragment span.select__content {
  font-weight: 600;
}

.tab_content .read-more {
  display: none;
}

.tab_content.show-more .read-more {
  display: flex;
}

.buying-box__current-work {
  flex: 0 0 50%;
  display: flex;
  padding: 16px 16px 16px 0px;
  flex-flow: column;
  justify-content: space-between;
  text-align: center;
}

.buying-box__new-work {
  background: #9784dd;
  padding: 16px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  text-align: center;
  color: #fff;
  border-radius: 16px;
  width: 310px;
}

.buying-box__intro {
  font-size: 18px;
  font-weight: 800;
}

.buying-box__title {
  font-size: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  height: 45px;
}

.buying-box__price {
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 800;
  line-height: 34px;
}

.single__example {
  background: #9784dd;
  padding: 64px 0px 0px 0px;
}

.single__fragment {
  padding-bottom: 88px;
}

.example__items {
  display: flex;
  justify-content: space-between;
}

.example__item {
  width: 33%;
  height: 427px;
  margin: 0px 24px 0px 0px;
}

.example__item-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 16px 16px 0px 0px;
  background-position: top center;
}

.example__item-end .example__item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.example__item-end .example__item-img:before {
  background: #9784dd;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.85;
}

.example__item-end--wrapper {
  position: relative;
  color: #fff;
}

.example__item-end-button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.example__item.example__item-end {
  margin-right: 0px;
}

.example__item-end-title {
  text-align: center;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
}

.example-free__tabs-button {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 34px;
}

.example-free__tabs-button ul {
  border: 0px;
  background: none;
}

.example-free__tabs-button ul li {
  border: 0px;
  background: none;
}

.example-free__tabs-button ul li button.nav-link,
.example-free__tabs-button ul li button.nav-link.active {
  border: 0px;
  background: none;
  padding: 0px 12px;
  font-weight: 800;
  color: #a09ea7;
}

.example-free__tabs-button ul li button.nav-link.active {
  color: #0a0228;
}

.lastorders-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

.lastorder__wrapper .expert__about-text {
  background: none;
}

.single__lastorder .title {
  text-align: center;
  margin-bottom: 60px;
}

.single__lastorder-wrapper {
  background: #f5f1ff;
  border-radius: 24px;
  padding: 54px;
}

.single__lastorder {
  padding-top: 88px;
}

.orders__header {
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}

.orders__tags a,
.orders__tags span:not(.text-link) {
  font-weight: 500;
  font-size: 11px;
  line-height: 20px;
  text-transform: uppercase;
  color: #9784dd;
  padding: 0px;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 6px;
  flex: 1;
}

.orders__tags a:last-child,
.orders__tags span:last-child {
  margin-right: 0px;
}

.lastorders-card {
  cursor: pointer;
}

.orders__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
}

.orders__price {
  font-weight: 800;
  font-size: 18px;
  line-height: 34px;
  display: flex;
  align-items: center;
  color: #0a0228;
}

.orders__text {
  font-weight: 800;
  font-size: 16px;
  color: #0a0228;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
  height: 75px;
  display: -webkit-box;
  text-decoration: none;
}

.orders__text:hover {
  color: #ff64b0;
}

span.orders__cropp-text {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
  height: 47px;
  display: -webkit-box;
}

.single__expert .title__wrapper {
  text-align: left;
}

.single__expert .title__wrapper p {
  margin-top: 16px;
}

.banner-help__wrapper {
  background: #0a0228
    url(/wp-content/themes/24author/assets/img/form-footer_vip.png) no-repeat
    right bottom;
  padding: 40px 64px;
  background-size: auto 100%;
  border-radius: 16px;
  position: relative;
}

.banner-help__wrapper:after {
  display: none;
}

.banner-help__background {
  background: url("/wp-content/themes/24author/assets/img/work/background-banner.jpg")
    top/100%;
  padding-top: 20px;
}

.banner-help {
  padding-top: 84px;
}

.form-empty-result .banner-help__wrapper {
  background: #9784dd url(/wp-content/themes/24author/assets/img/empty-img.png)
    no-repeat right + 40px center;
  background-size: 290px;
}

.single__otherworks {
  padding: 88px 0px;
}

.lastorders__about {
  display: flex;
  margin-top: 16px;
  flex-wrap: wrap;
}

.single .lastorders-card {
  border: 1px solid #eee8ff;
  border-radius: 16px;
}

.lastorders-card .single__header-about--item {
  font-size: 14px;
}

.lastorders__about span.emj {
  margin-right: 6px;
}

.banner-help__header h3 {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #fff;
}

.banner-help__header p {
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.form-empty-result .banner-help__header h3 {
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  max-width: 740px;
  margin-bottom: 16px;
}

.form-empty-result .banner-help__header p {
  max-width: 740px;
}

.banner-help__form .banner-hel__form-wrapper {
  display: flex;
}

.banner-hel__form-wrapper input:not([type="submit"]) {
  background: #fff;
}

.banner-help__form {
  margin-top: 32px;
}

.banner-help__form label.notreq {
  width: auto;
  margin-right: 16px;
}

.banner-help__form form .notreq span.wpcf7-form-control-wrap {
  margin-right: 0px;
}

.banner-help__form form span.wpcf7-form-control-wrap {
  margin-right: 16px;
}

.banner-help__form label.notreq input {
  margin-right: 0px;
}

.banner-help__form label.notreq input {
  width: 100%;
}

.banner-help__header h3 {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #fff;
}

.banner-help__header p {
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.banner-help__form {
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.banner-help__wrapper:after {
  background: url("/wp-content/themes/24author/assets/img/work/banner-girl.png")
    no-repeat;
  content: "";
  background-size: 260px 100%;
  width: 260px;
  height: 260px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.custom-checkbox > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox > p {
  display: inline-flex;
  align-items: center;
  user-select: none;
  font-size: 12px;
  line-height: 18px;
}

.custom-checkbox > p::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 2px;
  margin-right: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox > input:checked + p::before {
  border-color: #9784dd;
  background-color: #9784dd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 13 10' fill='none'%3E%3Cpath d='M1 5.00038L4.53553 8.53591L11.6066 1.46484' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.custom-checkbox > input:disabled + p::before {
  background-color: #e9ecef;
}

.custom-checkbox > p span {
  opacity: 0.4;
}

.custom-checkbox > p span a {
  color: #0a0228;
}

.fragment__form {
  margin-top: 24px;
  display: none;
}

.fragment__form-title {
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
}

.fragment__form-description {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-top: 8px;
}

.fragment__form-form form {
  display: flex;
  flex-flow: column;
  margin-top: 16px;
}

.fragment__form-form input {
  margin-bottom: 16px;
  background: #fff;
  border: 0px;
  width: 100%;
}

.fragment__form-form label.custom-checkbox {
  margin-bottom: 16px;
}

.example-free__wrapper {
  background: #f9f9f9;
  padding: 64px;
  border-radius: 16px;
}

.example-free__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.example-free__header p {
  font-weight: 800;
  font-size: 18px;
  line-height: 26px;
  max-width: 600px;
  width: 100%;
  margin-bottom: 0px;
  padding-right: 16px;
}

#pdf,
#pdfreferat,
#doc {
  width: 100%;
  height: 857px;
}

iframe.iframe-pdf {
  width: 100%;
  height: 100%;
}

.fragment__buy-block.buy-block_free {
  display: block;
  flex: 0 0 300px;
  padding: 0px;
  border-radius: 0px;
  background: none;
}

.example-free__header .button {
  max-width: 280px;
  width: 100%;
}

.publication__item.top {
  order: 1;
}

.publication__item {
  box-shadow: 0px 8px 20px rgba(51, 43, 80, 0.04);
  border-radius: 24px;
  background: #fff;
  padding: 32px;
  order: 2;
}

.publication__item--title {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #0a0228;
  margin-bottom: 12px;
  word-break: break-word;
}

.publication__item--description {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #524e60;
  margin-bottom: 24px;
  word-break: break-word;
}

.publication__item--list {
  flex: 1;
}

.publication__item--lists {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 24px;
}

.publication__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.publication__item--list ul.items {
  padding: 0px;
  list-style: none;
  margin-bottom: 0px;
}

.publication__item--list .label {
  background: #9784dd;
  border-radius: 4px;
  display: inline-block;
  color: #fff;
  padding: 3px;
  align-items: center;
  margin-bottom: 18px;
}

.publication__item--list .label span.label-text {
  padding: 0px 8px;
}

.publication__item--list .label span.label-emj {
  background: #fff;
  padding: 2px 6px;
  border-radius: 2px;
}

.publication__tags {
  display: flex;
  color: #9784dd;
  flex-wrap: wrap;
}

.publication__item--list ul.items a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0a0228;
  text-decoration: none;
  border-bottom: 1px solid #f1eeee;
  padding-bottom: 2px;
}

.publication__item--list ul.items li {
  margin-bottom: 8px;
}

.publication__item--list ul.items li:last-child {
  margin-bottom: 0px;
}

.publication__item--list ul.items li span {
  color: #a09ea7;
}

.publication__tags .item:not(:last-child) {
  margin-right: 12px;
}

.publication__item--list.items--journal {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
}

.items--journal-elements {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
}

.single__publication .loadmore {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.publication__item--list.items--science ul li {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 6px;
  flex: 1;
  max-width: 260px;
  padding-bottom: 1px;
}

.single__publication h2.title {
  margin-bottom: 40px;
}

.single .sop-wrapper {
  flex-flow: column;
  background-position: -165px 205px;
}

.single__sop-wrapper {
  display: flex;
}

.single .landing__sop .single__expert {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  margin-top: 24px;
}

.single .landing__sop .single__expert .title__wrapper {
  text-align: left;
  margin-bottom: 0px;
}

.single .sop__right {
  gap: 8px;
  padding-left: 24px;
}

.single .single__expert .title-with--arrow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.single .single__expert .title-with--arrow .swiper__navigation-wrapper {
  margin-top: 0px;
}

.title-with--arrow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.title-with--arrow .title {
  text-align: left;
  margin-bottom: 0px;
}

.title-with--arrow .swiper__navigation-wrapper {
  margin-top: 0px;
}

.single .banner-help__background {
  background: none;
  padding-top: 0px;
}

.single .landing__links-links {
  justify-content: flex-start;
}

.single .landing__links-title {
  text-align: left;
}

.swiper__navigation-wrapper.mob {
  display: none;
}

.single__header-about--item span.emj {
  margin-right: 8px;
  min-width: 16px;
}

.single__header-price span {
  font-size: 16px;
  font-weight: 400;
}

.single__header-price-label {
  color: #524e60;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.single__header-price {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  border-radius: 9px;
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 31px;
  font-weight: 600;
}

/* Listing */

.listing__work-item--wrapper {
  display: flex;
  padding: 40px;
}

.listing__work-item {
  background: #fff;
  border-radius: 16px;
  margin: 20px 0px;
}

.work-item__title {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  margin-bottom: 24px;
  text-decoration: none;
  display: block;
  color: #0a0228;
}

.work-item__title:hover {
  color: #ff64b0;
}

.work-item__code {
  margin-bottom: 16px;
}

.work-item__code a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #a09ea7;
  text-decoration: none;
}

.work-item__about {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.work-item__about .work-item__about--item {
  margin-right: 16px;
}

.work-item__description {
  flex: 1;
  padding-right: 125px;
}

.listing__header-banner {
  background: #9784dd;
  border-radius: 16px;
}

.header-banner__wrapper {
  padding: 64px;
}

.header-banner__title h1 {
  color: #fff;
}

.header-banner__search-form {
  display: flex;
  justify-content: space-between;
}

.header-banner__search {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
}

.listing__breadcrumbs {
  margin: 32px 0px 60px 0px;
  color: #524e60;
  font-size: 14px;
  line-height: 20px;
}

.header-banner__top {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.header-banner__title {
  width: 60%;
  margin-bottom: 88px;
  min-height: 120px;
}

.header__banner-text {
  margin-bottom: 32px;
}

.header-banner__img {
  width: 43%;
  background: url(/wp-content/themes/24author/assets/img/listing_girl.png)
    no-repeat;
  background-size: contain;
  min-height: 340px;
  background-position: bottom center;
  height: 100%;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.header-banner__title .title span {
  color: #f1c90a;
  word-break: break-all;
}

.homepage__about--wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about--item {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
}

.about--item__title {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #0a0228;
  margin-top: 16px;
}

.about--item__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0a0228;
  margin-top: 8px;
}

.about--item__img {
  width: 100%;
  height: 180px;
  background-size: cover;
  border-radius: 12px;
  background-repeat: no-repeat;
}

.listing__breadcrumbs a {
  color: #524e60;
  text-decoration: none;
}

span.separator {
  margin: 0px 5px;
}

.listing__header-banner .header__form-field {
  max-width: inherit;
}

.header-banner__search-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}

.listing__work {
  background: linear-gradient(180deg, #ffffff 0.5%, #f5f1ff 1.83%);
  padding-top: 88px;
}

.listing__work.empty-result {
  background: linear-gradient(180deg, #ffffff 0.5%, #f5f1ff 41.83%);
}

.work__list {
  display: flex;
  flex-flow: column;
}

.work__counter {
  margin-bottom: 24px;
  color: #524e60;
}

.work__counter span {
  font-weight: 800;
}

.listing__counter-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.listing__counter-line .work__counter {
  margin-bottom: 0px;
}

nav.listing__pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

nav.listing__pagination .page-numbers {
  background: #fff;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: #0a0228;
  border-radius: 8px;
  display: flex;
  margin: 0px 4px;
  align-items: center;
  justify-content: center;
}

nav.listing__pagination .page-numbers:hover {
  background: #9784dd;
  color: #fff;
}

nav.listing__pagination .page-numbers:hover span.arrow {
  filter: brightness(3);
}

nav.listing__pagination .page-numbers.current {
  background: #9784dd;
  color: #fff;
}

.listing__directions {
  background: #f5f1ff;
  padding-top: 88px;
}

.listing__directions .direction__list-wrapper {
  margin-top: 0px;
}

.direction__list-title p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #eee8ff;
  margin-bottom: 8px;
}

.direction__list-title {
  margin-bottom: 24px;
  color: #fff;
}

.direction__list-title h3.title {
  font-size: 25px;
  line-height: 34px;
}

.direction__list-title h3 {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
}

.listing__direction__list ul {
  column-count: 4;
  column-gap: 20px;
  list-style: none;
  padding: 0px;
}

.listing__direction__list ul li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.listing__direction__list ul li a span {
  color: #c1b5eb;
}

.archive .banner-help,
.search .banner-help,
.blog .banner-help,
.page-template-template-bibliography .banner-help {
  background: #f5f1ff;
  padding: 88px 0px;
}

.archive .banner-help__background,
.search .banner-help__background,
.blog .banner-help__background,
.page-template-template-bibliography .banner-help__background {
  background: transparent;
  padding: 0px;
}

.archive .header__menu,
.search .header__menu,
.blog .header__menu,
.page-template-default .header__menu,
.page-template-template-bibliography .header__menu {
  box-shadow: 0px 0px 20px rgba(51, 43, 80, 0.1);
}

.work-item__button {
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.work-item__button span {
  margin-top: 8px;
  font-weight: 600;
}

.page-numbers span.arrow {
  display: block;
  width: 24px;
  height: 24px;
  background: url(/wp-content/themes/24author/assets/img/icon/arrow-long.svg);
}

nav.listing__pagination .prev.page-numbers,
nav.listing__pagination .next.page-numbers {
  display: flex;
  width: auto;
  padding: 0px 20px;
}

.page-numbers.prev span.arrow {
  transform: rotate(180deg);
  margin-right: 16px;
}

.page-numbers.next span.arrow {
  margin-left: 16px;
}

.page-numbers.disabled span.arrow {
  opacity: 0.4;
}

/* Popup/form */
.privacy_text {
  font-size: 14px;
  margin-bottom: 0px;
  opacity: 0.4;
}

.privacy_text a {
  color: #0a0228;
}

.banner-help__wrapper .privacy_text a {
  color: #fff;
}

.banner-help .privacy_text {
  margin: 16px 0px 0px 0px;
  color: #fff;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

.about-another__form .privacy_text {
  color: #0a0228;
  opacity: 0.4;
  text-align: center;
  margin-top: 16px;
  line-height: 20px;
}

.about-another__form form input {
  background: none;
}

.about-another__form input.notreq + span {
  background: none;
}

input.notreq + span {
  position: absolute;
  font-size: 12px;
  background: #eee8ff;
  padding: 3px 7px;
  border-radius: 3px;
  color: #9784dd;
  top: 16px;
  right: 16px;
  transition: 0.3s;
}

label.notreq {
  position: relative;
  width: 100%;
}

input.notreq:focus + span {
  top: 4px;
  right: 4px;
  font-size: 10px;
  transition: 0.3s;
}

span.wpcf7-form-control-wrap {
  position: relative;
  display: flex;
}

span.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 11px;
  background: #eee8ff;
  padding: 3px 7px;
  border-radius: 3px;
  color: #dd8484;
  top: 16px;
  right: 16px;
  transition: 0.3s;
  z-index: 2;
}

.modal-expert-top {
  display: flex;
  margin-bottom: 24px;
}

.modal-expert-top-title {
  width: 50%;
}

.modal-expert-top-person {
  width: 50%;
  padding-left: 16px;
}

.modal-expert-person-wrapper {
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(51, 43, 80, 0.1);
  border-radius: 8px;
  padding: 16px;
}

.modal-expert-wrapper {
  padding: 40px;
}

.modal-expert-form .input-block {
  display: flex;
  flex-wrap: wrap;
}

.modal-expert-form .input-block .input-row:nth-child(2) span:nth-child(1) {
  margin-right: 16px;
}

.input-row {
  width: 100%;
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
}

.input-row input,
.input-row span.wpcf7-form-control-wrap {
  width: 100%;
}

.input-row:nth-child(3) span.wpcf7-form-control-wrap:nth-child(1) {
  margin-right: 16px;
}

.input-row input:last-child {
  margin-right: 0px;
}

.modal-expert-form .input-row:last-child p {
  padding-right: 16px;
  opacity: 0.4;
  width: 363px;
}

.modal-expert-form .input-row:last-child input {
  width: 160px;
}

.modal-expert-top-title .modal-expert-title {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #0a0228;
  margin-bottom: 8px;
}

.modal-expert-top-title p {
  font-size: 14px;
  line-height: 20px;
  color: #524e60;
}

.input-row:last-child {
  margin-bottom: 0px;
}

.modal-body span.expert__about-name {
  font-size: 12px;
  line-height: 18px;
}

.modal-body span.expert__about-departament {
  font-size: 12px;
  line-height: 18px;
}

.modal-body .expert__about-rating {
  font-size: 12px;
  line-height: 20px;
  font-weight: 800;
}

.modal-body .expert__img {
  width: 60px;
  height: 60px;
}

/* test mssg */
.form-message {
  display: none;
}

.wpcf7-response-output {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #a09ea7;
  background: #f5f1ff;
  border: 1px solid #eee8ff;
  border-radius: 8px;
  padding: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-flow: column;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
}

.sent .wpcf7-response-output {
  display: flex;
}

.screen-reader-response {
  display: none;
}

.about-another__form .sent .wpcf7-response-output {
  padding: 0px 16px 16px 16px;
  border-radius: 16px;
}

form {
  position: relative;
}

.banner-help__form .send .form-message {
  background: none;
}

/* Landing */
.price-table__item-more {
  display: none;
}

.price-table__table {
  min-width: 640px;
}

.landing__sop {
  padding-top: 88px;
}

.landing__links-title {
  text-align: center;
  padding-bottom: 50px;
}

.landing__links {
  padding-top: 88px;
}

.landing__links-links a {
  padding: 10px 24px;
  background: #f5f1ff;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #775fd2;
}

.landing__links-links a:hover {
  background: #775fd2;
  color: #fff;
}

.landing__links-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.landing__links-links a {
  margin-right: 16px;
  margin-bottom: 16px;
}

.sop-wrapper {
  padding: 64px;
  background: #775fd2;
  border-radius: 16px;
  display: flex;
  background-image: url(/wp-content/themes/24author/assets/img/landing/background-sop.png);
  background-repeat: no-repeat;
  background-size: 702px;
  background-position: bottom -220px left -190px;
}

.sop__right {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
}

.sop__right-item {
  max-width: 100%;
  padding: 24px;
  background: #9784dd;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}

.sop__left {
  flex: 1;
  min-width: 47%;
}

.sop__left h2 {
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  color: #ffffff;
}

.sop__right-item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.sop__right-item a {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sop__right-item a:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 12H21' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 7L21 12L16 17' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 24px;
  height: 24px;
  background-size: contain;
  margin-left: 16px;
}

.sop__right-item a:hover {
  color: #775fd2;
}

.sop__right-item a:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 12H21' stroke='%23775FD2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 7L21 12L16 17' stroke='%23775FD2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.price-table__col-name span.arrow {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.7071 11.7012C17.0976 11.3107 17.0976 10.6776 16.7071 10.287C16.3166 9.89651 15.6834 9.89651 15.2929 10.287L16.7071 11.7012ZM12 14.9941L11.2929 15.7012C11.6834 16.0918 12.3166 16.0918 12.7071 15.7012L12 14.9941ZM8.70711 10.287C8.31658 9.89651 7.68342 9.89651 7.29289 10.287C6.90237 10.6776 6.90237 11.3107 7.29289 11.7012L8.70711 10.287ZM15.2929 10.287L11.2929 14.287L12.7071 15.7012L16.7071 11.7012L15.2929 10.287ZM12.7071 14.287L8.70711 10.287L7.29289 11.7012L11.2929 15.7012L12.7071 14.287Z' fill='%239784DD'/%3E%3C/svg%3E%0A");
  width: 24px;
  height: 24px;
  background-size: contain;
}

.active .price-table__item-more {
  display: block;
  font-size: 14px;
  height: 350px;
  overflow-x: scroll;
}

.active .price-table__col-name span.arrow {
  transform: rotate(180deg);
}

.price-table__item.item-name {
  background: #f5f1ff;
  padding: 16px 8px;
  border-radius: 9px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.price-table__col-name {
  display: flex;
}

.price-table__title .title {
  text-align: center;
  max-width: 850px;
  margin: 0px auto 54px auto;
}

.price-table__content .price-table__item:hover .price-table__col-name {
  color: #9784dd;
}

.landing__price-table {
  padding-top: 88px;
}

.price-table__item {
  display: flex;
  justify-content: space-between;
}

.price-table__col {
  flex: 1;
}

.price-table__wrapper {
  background: #ffffff;
  border-radius: 16px;
  max-width: 992px;

  overflow-y: scroll;
  flex: 1;
  margin-right: 24px;
  box-shadow: 0px 8px 16px 0px #332b5014;
}

@media (max-width: 762px) {
  .price-table__wrapper {
    margin-right: 0px;
  }
}
.price-table__content {
  padding: 8px 64px 24px 64px;
}

.price-table__content .price-table__item {
  padding: 8px 0px;
  cursor: pointer;
}

.price-table__header {
  background: #9784dd;
  border-radius: 16px 16px 0px 0px;
  color: #fff;
  padding: 16px 64px;
}

.price-table__header .price-table__col {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
}

.landing__header-banner {
  background: #775fd2
    url(/wp-content/themes/24author/assets/img/landing/header.png) no-repeat;
  background-position: 65% bottom;
  background-size: 380px;
  border-radius: 16px;
  padding: 32px 54px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.landing__header-form--wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
}

.field-input {
  margin-bottom: 16px;
}

.field-input:last-child {
  margin-bottom: 8px;
}

.field-input input {
  width: 100%;
}

.landing__header-description {
  width: 600px;
}

.landing__header-form {
  width: 382px;
}

.landing__header-form p.privacy_text {
  text-align: center;
}

.landing__header-description h1 {
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  color: #fff;
  margin-bottom: 24px;
}

.landing__header-description p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  max-width: 500px;
  margin-bottom: 52px;
}

.landing__header-label span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 24px;
  display: block;
  margin: 8px;
  color: #fff;
}

.landing__header-label {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -8px;
}

.landing__header-form--wrapper h2 {
  margin-bottom: 24px;
}

.landing__expert-wrapper {
  column-gap: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.landing__expert-wrapper .expert-item {
  margin-bottom: 24px;
}

.landing__expert .title {
  text-align: center;
}

.landing__expert .single__expert {
  padding-top: 0px;
}

.landing__expert {
  padding: 88px 0px;
}

.landing__expert .expert-item .button {
  width: 100%;
  margin-top: 16px;
}

span.work-succes-mobile {
  display: none;
}

.landing__about-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  grid-template-areas:
    "landing__about-col-4 landing__about-col-1 landing__about-col-3"
    "landing__about-col-2 landing__about-col-1 landing__about-col-5";
}

.landing__about-col-4 {
  grid-area: landing__about-col-4;
}
.landing__about-col-2 {
  grid-area: landing__about-col-2;
}
.landing__about-col-1 {
  grid-area: landing__about-col-1;
}
.landing__about-col-3 {
  grid-area: landing__about-col-3;
}
.landing__about-col-5 {
  grid-area: landing__about-col-5;
}

.landing__about-col.landing__about-col-1 {
  background: #775fd2;
  color: #fff;
}

.landing__about-col.landing__about-col-2 {
  background: url(/wp-content/themes/24author/assets/img/landing/about-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.landing__about-col.landing__about-col-3 {
  background: #f1c90a;
}

.landing__about-col.landing__about-col-4 {
  background: #f13893;
  color: #fff;
}

.landing__about-col.landing__about-col-5 {
  background: #9784dd;
}

.landing__about-col.landing__about-col-6 {
  background: url(/wp-content/themes/24author/assets/img/landing/about-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.landing__about-col {
  border-radius: 16px;
  padding: 24px;
}

.landing__about-title {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
}

.landing__about-col.landing__about-col-4 h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 48px;
  text-align: left;
  margin-bottom: 24px;
}

.landing__about-col.landing__about-col-4 h3 {
  font-family: Mulish;
  font-size: 25px;
  font-weight: 800;
  line-height: 34px;
  text-align: left;
  margin-bottom: 24px;
}

.landing__about-col.landing__about-col-5 .landing__about-title {
  color: #fff;
}

.landing__about-list {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.landing__about-list span {
  font-size: 16px;
  line-height: 24px;
  display: block;
}

.landing__about-list-items {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.landing__about-list:last-child {
  margin-bottom: 0px;
}

.landing__about-col-1 .landing__about-title {
  margin-bottom: 24px;
}

.landing__about {
  padding: 88px 0px 0px;
}

.landing__about-list img.wp-smiley,
.landing__about-list img.emoji {
  height: 34px !important;
  width: 25px !important;
}

.modal-fullcolor-bg .modal-content {
  background: #775fd2;
  padding: 32px;
}

.modal-fullcolor-bg .modal-content .modal-title {
  color: #ffffff;
  margin-bottom: 18px;
  text-align: center;
  line-height: 34px;
}

.modal-bubble-sale {
  background: #f9f7ff;
  border-radius: 8px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 34px 0px 34px;
  position: relative;
  margin-bottom: 16px;
}

.modal-bubble-sale:before {
  content: "";
  background: #775fd2;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -12px;
  border-radius: 100px;
}

.modal-bubble-sale:after {
  content: "";
  background: #775fd2;
  width: 24px;
  height: 24px;
  position: absolute;
  right: -12px;
  border-radius: 100px;
}

.modal-bubble-sale-img {
  background: url(/wp-content/themes/24author/assets/img/popup/bublepopup.png);
  width: 138px;
  background-size: 138px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.modal-bubble-sale span {
  font-weight: 800;
  font-size: 25px;
  line-height: 26px;
  color: #0a0228;
}

.modal-fullcolor-bg .privacy_text,
.modal-fullcolor-bg .privacy_text a {
  color: #fff;
}

.accordion {
  background-color: transparent;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin: 0px;
  padding: 0px;
  color: #0a0228 !important;
}

.accordion-ui-item:after {
  content: "";
  background: #9784dd
    url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.70711 1.70711C10.0976 1.31658 10.0976 0.683417 9.70711 0.292893C9.31658 -0.097631 8.68342 -0.097631 8.29289 0.292893L9.70711 1.70711ZM5 5L4.29289 5.70711C4.68342 6.09763 5.31658 6.09763 5.70711 5.70711L5 5ZM1.70711 0.292893C1.31658 -0.097631 0.683417 -0.097631 0.292893 0.292893C-0.0976315 0.683418 -0.0976315 1.31658 0.292893 1.70711L1.70711 0.292893ZM8.29289 0.292893L4.29289 4.29289L5.70711 5.70711L9.70711 1.70711L8.29289 0.292893ZM5.70711 4.29289L1.70711 0.292893L0.292893 1.70711L4.29289 5.70711L5.70711 4.29289Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-ui-item.active:after {
  content: "";
  background: #fff
    url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.292893 4.29289C-0.0976315 4.68342 -0.0976315 5.31658 0.292893 5.70711C0.683417 6.09763 1.31658 6.09763 1.70711 5.70711L0.292893 4.29289ZM5 1L5.70711 0.292893C5.31658 -0.097631 4.68342 -0.097631 4.29289 0.292893L5 1ZM8.29289 5.70711C8.68342 6.09763 9.31658 6.09763 9.70711 5.70711C10.0976 5.31658 10.0976 4.68342 9.70711 4.29289L8.29289 5.70711ZM1.70711 5.70711L5.70711 1.70711L4.29289 0.292893L0.292893 4.29289L1.70711 5.70711ZM4.29289 1.70711L8.29289 5.70711L9.70711 4.29289L5.70711 0.292893L4.29289 1.70711Z' fill='%239784DD'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-ui-item {
  padding: 24px;
  margin: 8px 0px;
  border-bottom: 1px solid #eef3fa;
  position: relative;
  padding-right: 84px;
}

.accordion-ui-item:first-child {
  margin-top: 0px;
}

.accordion-ui-item.active {
  background: #f5f1ff;
  border-radius: 16px;
  border-bottom: 0px;
}

.panel p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0px;
  margin-top: 8px;
}

.landing__quanity-wrapper {
  display: flex;
  align-items: flex-start;
}

.landing__quanity-list {
  width: 420px;
  background: #fff;
  border-radius: 16px;
}

.landing__quanity-faq {
  flex: 1;
  padding-left: 32px;
}

.landing__quanity {
  padding: 88px 0px;
  background: #f9f7ff;
}

.landing__quanity .title {
  text-align: center;
  margin-bottom: 60px;
}

.landing__quanity-list_item {
  display: flex;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #f9f7ff;
}

.landing__quanity-list_item span {
  font-size: 16px;
  line-height: 24px;
  color: #0a0228;
}

.landing__quanity-list_item img {
  margin-right: 20px;
}

.landing__quanity-faq {
  align-items: center;
  display: flex;
  flex-flow: column;
}

.landing__quanity-faq .button {
  margin-top: 24px;
}

.landing__lastorder {
  background: #775fd2;
  padding: 88px 0px;
}

.landing__lastorder .title {
  color: #fff;
  text-align: center;
}

.button-mobile {
  display: none;
}

.landing__text {
  padding: 88px 0px 0px;
}

.landing__text .title {
  text-align: center;
  margin-bottom: 60px;
}

.expert-more-wrapper {
  padding: 24px;
  width: 100%;
}

#expertmoreModal .button {
  width: 100%;
  margin-top: 16px;
}

.expert-more__work .expert__work-item {
  font-size: 14px;
  line-height: 20px;
}

.expert-more__about .expert__about-text {
  max-height: 500px;
}

.expert-more__about .simplebar-track.simplebar-vertical {
  padding-top: 50px;
  right: 16px;
}

.expert-more__about .simplebar-scrollbar {
  max-height: 148px;
}

/* content style */

.content blockquote.wp-block-quote,
.content blockquote {
  background: #ffffff;
  border: 1px solid #eee8ff;
  border-radius: 16px;
  padding: 40px 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='78' height='78' viewBox='0 0 78 78' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.0875 46.8976C14.4787 50.9438 11.9438 54.9413 8.55565 58.7926C7.48315 60.0114 7.3369 61.7663 8.21437 63.1313C8.89695 64.2038 10.0181 64.7888 11.2369 64.7888C11.5781 64.7888 11.9194 64.7645 12.2607 64.6425C19.4268 62.5463 36.1726 55.112 36.6357 31.2732C36.8062 22.0839 30.0788 14.1864 21.3281 13.2845C16.4775 12.797 11.6513 14.3813 8.06812 17.5988C4.48507 20.8407 2.4375 25.472 2.4375 30.2982C2.4375 38.3419 8.14132 45.3864 16.0875 46.8976Z' fill='%239784DD'/%3E%3Cpath d='M60.2306 13.2845C55.4043 12.797 50.5781 14.3813 46.995 17.5988C43.4118 20.8407 41.3643 25.472 41.3643 30.2982C41.3643 38.3419 47.0681 45.3863 55.0144 46.8976C53.4055 50.9438 50.8706 54.9413 47.4824 58.7926C46.4099 60.0113 46.2637 61.7663 47.1413 63.1313C47.8237 64.2038 48.945 64.7888 50.1638 64.7888C50.5049 64.7888 50.8462 64.7645 51.1875 64.6425C58.3537 62.5463 75.0993 55.1119 75.5625 31.2731V30.932C75.5625 21.8888 68.9081 14.1864 60.2306 13.2845Z' fill='%239784DD'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 42px;
  background-position: right 34px top 19px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.content blockquote.wp-block-quote p,
.content blockquote p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0a0228;
  padding-right: 124px;
  margin-bottom: 0px;
}

.wp-block-columns {
  margin: 40px 0px;
}

.content p {
  margin-bottom: 10px;
}

.content ul {
  margin-top: 40px;
  list-style: none;
  margin-bottom: 20px;
}

.content ul li:last-child {
  margin-bottom: 0px;
}

.content ul li {
  margin-bottom: 16px;
}

.content ul li:before {
  content: "\2022";
  color: #9784dd;
  font-weight: bold;
  display: inline-block;
  width: 24px;
  margin-left: -24px;
}

.wp-block-image img {
  width: 100%;
  border-radius: 8px;
}

.wp-block-image figcaption {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #524e60;
}

.content h2 {
  padding: 24px 0px 32px 0px;
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
}

.content p + h2,
.content ul + h2 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.content p + ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.content h2 + ul {
  margin-top: 0px;
}

.content h2:first-child {
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
}

.page__header h1 {
  max-width: 700px;
  margin: 60px 0px 88px 0px;
}

.page__content-wave {
  background: url(/wp-content/themes/24author/assets/img/wave-page.svg) top
    no-repeat;
  width: 100%;
  height: 156px;
  background-size: cover;
  margin-bottom: -5px;
}

.page__content-content {
  background: #f9f7ff;
}

.page__accordion {
  display: flex;
  background: #fff;
  border-radius: 16px;
  position: relative;
  align-items: flex-end;
}

.page__accordion-left {
  max-width: 70%;
  padding: 32px;
}

.page__accordion-right {
  flex: 1;
  background: url(/wp-content/themes/24author/assets/img/faq-img-2x.png);
  background-size: contain;
  background-position: bottom center;
  height: 110%;
  position: absolute;
  bottom: 0px;
  right: -20px;
  width: 32%;
  background-repeat: no-repeat;
}

.page__accordion button.button {
  margin-top: 24px;
}

.wp-block-lazyblock-qa-block {
  margin-top: 88px;
  margin-bottom: 88px;
}

/* Search style */

.searchList {
  display: none;
  position: absolute;
  top: 56px;
  min-width: 100%;
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  border-radius: 4px;
  max-height: 370px;
  overflow-y: scroll;
  z-index: 1;
}

.searchAjaxLabel input:focus + .searchList,
.searchList:hover {
  display: block;
}

label.searchAjaxLabel {
  position: relative;
}

.searchList ul {
  list-style: none;
  padding: 0px;
  margin-bottom: 0px;
}

.searchList ul li a {
  color: #000;
  text-decoration: none;
  padding: 10px 16px;
  display: block;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #eee;
}

.searchList ul li:last-child a {
  border-bottom: 0px;
}

.searchList ul li a span {
  font-size: 10px;
  padding: 2px 4px;
  margin: 0px 4px;
  background: #eee8ff;
  border-radius: 3px;
  color: #9784dd;
}

/* 404 */

.error404 .homepage__directions {
  padding: 20px 0px 90px 0px;
}

.error404 .page__header h1 {
  margin-bottom: 20px;
}

.error404 .page__header p {
  margin-bottom: 50px;
}

.page__content-content .content {
  padding-bottom: 50px;
}

.article-wrapper .article-date {
  opacity: 0.3;
}

.article-wrapper p {
  font-size: 15px;
}

.article-wrapper a.button_expert {
  text-decoration: none;
  padding: 10px 32px;
  display: inline-flex;
}

.article-wrapper a.button_expert:hover {
  background: #eee8ff;
}

.article-wrapper .work-item__title {
  margin-bottom: 10px;
}

.PATCH_modal,
.PATCH_modal .modal {
  touch-action: none !important;
  overscroll-behavior: none !important;
  overflow: hidden !important;
  -webkit-overflow-scrolling: auto !important;
}

.buying-box__new-work button {
  padding: 0px 12px;
}

.whoquote__item .tooltip-inner {
  font-size: 12px;
  background: #eee8ff;
  padding: 3px 7px;
  border-radius: 100px;
  color: #9784dd;
  top: 16px;
  right: 16px;
  transition: 0.3s;
}

.tooltip-inner {
  font-size: 12px;
  background: #eee8ff;
  padding: 3px 7px;
  border-radius: 3px;
  color: #9784dd;
  top: 16px;
  right: 16px;
  transition: 0.3s;
}

.whoquote .tooltip-inner {
  border-radius: 100px;
  display: flex;
  align-items: center;
  color: #fff;
}

.whoquote .tooltip-inner img {
  height: 20px;
  width: 20px;
  position: relative;
  left: -3px;
  background: #fff;
  padding: 3px;
  border-radius: 100px;
}

.whoquote.colorf1c90a .tooltip-inner {
  background: #f1c90a;
}

.whoquote.colorf1c90a.bs-tooltip-top .tooltip-arrow:before {
  border-top-color: #f2ce32 !important;
}

.whoquote.colorf1c90a.bs-tooltip-end .tooltip-arrow:before {
  border-right-color: #f2ce32 !important;
}

.whoquote.colorff64b0 .tooltip-inner {
  background: #ff64b0;
}

.whoquote.colorff64b0.bs-tooltip-top .tooltip-arrow:before {
  border-top-color: #ff64b0 !important;
}

.whoquote.colorff64b0.bs-tooltip-end .tooltip-arrow:before {
  border-right-color: #ff64b0 !important;
}

.whoquote.colorff64b0 .tooltip-inner {
  background: #ff64b0;
}

.whoquote.color775FD2.bs-tooltip-top .tooltip-arrow:before {
  border-top-color: #775fd2 !important;
}

.whoquote.color775FD2.bs-tooltip-end .tooltip-arrow:before {
  border-right-color: #775fd2 !important;
}

.whoquote.color775FD2 .tooltip-inner {
  background: #775fd2;
}

.whoquote.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.whoquote.bs-tooltip-top .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #eee8ff;
  border-radius: 100px;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #eee8ff;
}

.single .landing__links {
  padding-top: 0px;
  padding-bottom: 88px;
}

.landing__links + .single__otherworks {
  padding-top: 0px;
}

.single__expert {
  padding-top: 88px;
}

.single .landing__links .landing__links-links a:hover {
  background-color: #775fd2;
}

.landing__links .landing__links-title .title a {
  color: inherit;
}

.single .landing__sop {
  padding-bottom: 0px;
  padding-top: 88px;
}

.expert-mobile.loadmore {
  display: none;
}

.active .slider-disable-mob .swiper-slide {
  display: block !important;
  margin-bottom: 15px;
}

.active .slider-disable-mob .swiper-slide:last-child {
  margin-bottom: 0px;
}

.banner-help + .landing__links {
  padding-top: 88px;
}

.swiper-button-lock {
  display: none !important;
}

/* Journal */

.single-journal .single__header-price-elements {
  flex: 0 0 268px;
}

.list-listing__wrapper {
  padding: 24px;
  background: #9784dd;
  border-radius: 16px;
}

.list-listing__other-journal {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
}

h2.title.other-journal--title {
  margin-bottom: 32px;
}

.other-journal__items table {
  width: 100%;
}

.other-journal__items table td {
  padding: 8px 0px;
}

.other-journal__items table td.name-td {
  padding: 8px 16px 8px 0px;
}

.journal__list-listing {
  padding-top: 88px;
}

.publication--in-journal .publication__item--lists {
  grid-template-columns: 100%;
}

.publication--in-journal .items--science ul.items {
  display: grid;
  grid-template-columns: 50% 50%;
}

.single__header-jouranl-tags {
  display: flex;
  margin-top: 32px;
  max-width: 100%;
  flex-wrap: wrap;
}

.single__header-jouranl-tags a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #9784dd;
  margin-right: 12px;
}

.journal--card .single__header-expert a {
  margin-right: 12px;
  color: #9784dd;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

td.issn-td {
  min-width: 100px;
}

td.name-td a {
  color: inherit;
  text-decoration: none;
}

.publication__wrapper .hide {
  display: none;
}

.publication__wrapper.active .hide {
  display: block;
}

.single__example-free + .single__publication {
  padding-top: 88px;
}

.load-form {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: #fff;
}

[data-status="submitting"] .load-form {
  display: flex;
}

.copyButton.copy {
  color: #fff;
  background: #9684dc;
}

.copyButton.copy:hover {
  color: #fff;
  background: #9684dc;
}

.copyButton.copy img {
  filter: contrast(100);
}

.copyButton {
  display: flex;
  align-items: center;
}

.copyButton img {
  margin-left: 10px;
}

.publication__item--card {
  background: #ffffff;
  box-shadow: 0px 8px 20px rgba(51, 43, 80, 0.04);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 32px;
}

.publication__item--title-with-copy {
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.publication__item--card .publication__item--lists {
  grid-template-columns: repeat(4, 1fr);
}

.publication__item--card .publication__item--list ul.items a {
  font-size: 14px;
  line-height: 20px;
}

.publication__item--card .publication__item--list.items--journal {
  justify-content: flex-start;
}

.publication__item--card .items--journal-elements {
  height: auto;
  justify-content: center;
}

.publication__item--title_inner {
  padding-right: 54px;
  flex: 1;
}

.listing__header-banner.banner__publication {
  background: url(/wp-content/themes/24author/assets/img/background-publication.jpeg);
  background-position: center;
  background-size: cover;
}

.banner__publication p {
  color: #fff;
  margin-top: 10px;
}

.publication__item--title-copy {
  width: 208px;
}

.whoquote__item {
  display: flex;
  flex-wrap: wrap;
}

.whoquote__item a span {
  margin-top: 5px;
  font-size: 12px;
  background: #f5f1ff;
  padding: 4px 7px;
  border-radius: 100px;
  color: #775fd2;
}

.whoquote__item a {
  display: flex;
  width: 140px;
  padding: 4px;
  flex-flow: column-reverse;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
}

.whoquote__item a img {
  max-width: 115px;
  max-height: 75px;
}

.expert-item.item-border {
  background: #fff;
}

.expert-item.item-border .expert__wrpapper {
  padding: 0px;
}

.item-border .expert__header,
.item-border .expert__work {
  padding: 12px 16px;
}

.item-border .expert__work {
  background: #f8f8f8;
  border-radius: 0px 0px 16px 16px;
}

.homepage__expert-wrapper.expert-wrapper-4 {
  grid-template-columns: repeat(4, 1fr);
}

.expert__about-rating.rating-bottom {
  background: #fff;
  position: relative;
  box-shadow: 0px 12px 28px rgba(51, 43, 80, 0.08);
  border-radius: 100px;
  display: inline-flex;
  padding: 2px 12px;
}

.expert__about-rating.rating-bottom img {
  width: auto;
}

.item-border .expert__img {
  text-align: center;
  margin-bottom: -16px;
}

.item-border span.expert__about-departament {
  margin-top: 8px;
}

.expert__img-with-rating {
  text-align: center;
}

.modal-body .expert__about-rating span.work-count {
  margin-left: 6px;
  margin-right: 2px;
  padding-left: 6px;
}

.bibliography__cat .direction__list a {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  width: auto;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  line-height: 20px;
  text-decoration-color: rgb(255 255 255 / 40%);
  padding-right: 8px;
}

.bibliography__cat {
  background: #9784dd;
  border-radius: 16px;
  padding: 24px;
  margin-top: 54px;
}

.homepage__bibliography {
  padding-top: 0px;
}

.homepage__bibliography .title {
  margin-bottom: 40px;
}

.homepage__bibliography .header__form-field:not(.field-button) {
  width: 100%;
  max-width: 100%;
}

.about-another__list li a {
  color: inherit;
  text-decoration-color: rgb(117 117 117 / 40%);
}

.whoquote__wrapper-tabs .tabs-nav .tab_nav {
  border: 0px;
  padding: 16px 24px;
  height: 44px;
  background: #f5f1ff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #775fd2;
}

.whoquote__wrapper-tabs .tabs-nav {
  display: flex;
  margin-bottom: 40px;
}

.whoquote__wrapper-tabs .tabs-nav .tab_nav._active {
  background: #775fd2;
  color: #f9f7ff;
}

.homepage__whoquote .title {
  margin-bottom: 54px;
}

.title-alpha {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  margin-top: 16px;
}

.title-alpha:first-child {
  margin-top: 0px;
}

.bibliography__cat .col {
  page-break-inside: avoid;
  break-inside: avoid;
}

.bibliography__cat .direction__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.col.col-cat-0 {
  order: 1000;
}

.whoquote .tooltip-inner {
  display: flex;
  max-width: inherit;
}

.whoquote .tooltip-inner span:nth-child(2) {
  margin-left: 12px;
}

.modal_one-row .modal-body {
  flex-flow: column;
  padding: 54px;
}

.modal_one-row .modal-title {
  text-align: center;
  margin-bottom: 16px;
}

.modal_one-row .privacy_text {
  text-align: center;
  margin-top: 16px;
}

#downloadBibliography button.button {
  width: 100%;
}

#downloadBibliography button.button img {
  margin-left: 8px;
}

#downloadBibliography .modal-dialog {
  max-width: 530px;
}

button.download-biblio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

button.download-biblio p {
  margin: 0px;
}

button.download-biblio img {
  margin-left: 10px;
}

.work__counter .desctop,
.work__counter .mobile {
  font-weight: 400;
}

.mobile {
  display: none;
}

.banner-help.form-empty-result {
  padding-top: 0px;
}

.price-description_quality {
  background: #eee8ff;
  border: 1px solid rgba(151, 132, 221, 0.16);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  margin-top: 32px;
}

.price-description_quality p:last-child {
  margin: 0px;
}

.price-description_quality p span {
  color: #775fd2;
}

.price-description_quality p {
  color: #524e60;
}

.publication__item-candidate {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
  padding: 32px;
  border: 1px solid #eee8ff;
  border-radius: 16px;
}

a.publication__item--candidate_link {
  font-weight: 800;
  font-size: 18px;
  line-height: 26px;
  color: #0a0228;
  text-decoration: none;
}

.publication__item--candidate_info {
  display: flex;
  flex-flow: column;
  margin-top: 16px;
}

.publication__item--candidate_info a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #524e60;
  margin-top: 8px;
  text-decoration-color: #c1b6eb;
}

.publication__item-candidate--title {
  padding-right: 32px;
}

.publication__item-candidate .items--journal-elements a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0a0228;
  text-decoration: none;
}

.publication__item-candidate .publication__item--list.items--journal {
  min-width: 180px;
  max-width: 180px;
}

.publication__item-candidate .items--journal .items--journal-elements {
  word-break: break-word;
  hyphens: auto;
}

.publication__item--title a {
  color: inherit;
  border-bottom: 1px solid #c1b6eb;
  text-decoration: none;
}

.active .panel-all.toggle-list-items {
  display: flex;
  flex-flow: column;
}

.panel-all.toggle-list-items a {
  color: #0a0228;
  text-decoration-color: rgb(117 117 117 / 40%);
}

.toggle-list-wrapper {
  background: #f9f7ff;
  border: 1px solid #eee8ff;
  border-radius: 12px;
  padding: 16px;
}

.toggle-list-wrapper:not(:last-child) {
  margin-bottom: 16px;
}

.panel-all.toggle-list-items {
  display: none;
}

.listing__article-wrapper {
  padding: 88px 64px;
}

.article_category:not(:last-child) {
  margin-bottom: 64px;
}

.article_category h2 a {
  color: inherit;
  text-decoration: none;
}

.article_category h2 {
  margin-bottom: 24px;
}

.accordion-ui-item-all button.accordion:after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(/wp-content/themes/24author/assets/img/icon/accordion-round-bottom-button.svg);
  display: block;
  position: absolute;
  right: 0px;
  top: -5px;
}

.accordion-ui-item-all.active button.accordion:after {
  transform: rotate(180deg);
}

.accordion-ui-item-all button.accordion {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  align-items: center;
  margin-bottom: 0px;
  padding-right: 36px;
}

.accordion-ui-item-all.active button.accordion {
  margin-bottom: 16px;
}

.panel-all.toggle-list-items a:not(:last-child) {
  margin-bottom: 14px;
}

.listing__header-banner.banner__articles {
  background-image: url(/wp-content/themes/24author/assets/img/article-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.listing__header-banner.banner__articles .header-banner__title {
  margin-bottom: 64px;
  min-height: inherit;
}

.banner-article__background .banner-help__wrapper {
  background: linear-gradient(
    9.16deg,
    #7b61ff -26.37%,
    #5e48c8 44.05%,
    #0c0230 102.4%
  );
}

.banner-article__background h2 {
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  color: #ffffff;
  margin-bottom: 8px;
}

.content-articles .banner-help {
  padding-top: 0px;
  background: none;
}

.sidebar.sidebar-article {
  max-width: 340px;
}

.article__content-content {
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 42px;
}

.content.content-article {
  max-width: 835px;
}

.sidebar.sidebar-article .banner-help {
  margin-top: 0px;
  padding-top: 0px;
}

.sidebar-article .banner-help__form .banner-hel__form-wrapper {
  flex-flow: column;
}

.sidebar-article .banner-help__form .banner-hel__form-wrapper input {
  width: 100%;
}

.sidebar-article .banner-help__form form span.wpcf7-form-control-wrap {
  display: block;
  margin-right: 0px;
  margin-bottom: 16px;
}

.sidebar-article .banner-article__background .banner-help__wrapper {
  padding: 24px;
}

.sidebar-article .banner-article__background h2 {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
}

.article__hlink-share-download {
  display: flex;
  align-items: center;
}

.article__hlink-share-download button {
  padding: 0px;
  height: auto;
}

.article__hlink-share-download button:not(:last-child) {
  margin-right: 16px;
}

.article__hlink-share-download button img {
  margin-right: 8px;
}

.article__hlink {
  padding: 32px;
  background: #f8f8f8;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  margin-bottom: 88px;
}

.content .article__hlink h2:first-child {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  text-align: left;
  margin-bottom: 24px;
  padding: 0px;
}

.article__hlink ol li a strong,
.article__hlink ol li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0a0228;
  text-decoration-color: rgb(117 117 117 / 40%);
}

ol {
  list-style: none;
  counter-reset: counter;
  padding-left: 5px;
}

ol li {
  counter-increment: counter;
}

ol li:not(:last-child) {
  margin-bottom: 8px;
}

ol li::before {
  content: counter(counter);
  color: #775fd2;
  margin-right: 8px;
}

.article__title .title {
  margin: 0px;
  max-width: inherit;
}

.article__fav {
  max-width: 210px;
}

.article__title {
  margin-bottom: 48px;
}

.card-ui {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}

.card-ui.card-ui--shadow {
  background: #ffffff;
  box-shadow: 0px 8px 16px rgba(51, 43, 80, 0.08);
  border-radius: 16px;
  padding: 32px;
}

.card-ui--label-round {
  border: 1px solid #eee8ff;
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  color: #9784dd;
  gap: 8px;
}

.card-ui--title-1 {
  font-weight: 800;
  font-size: 18px;
  line-height: 26px;
  color: #0a0228;
  margin-top: 8px;
  margin-bottom: 8px;
}

.card-ui--title-1 a {
  text-decoration: none;
  color: inherit;
}

.card-ui--label-round + .card-ui--title-1 {
  margin-top: 16px;
}

.article__other-post {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 24px;
}

.card-ui--text + a {
  margin-top: 8px;
}

.article-sidebar__cateogry {
  margin-top: 42px;
  position: sticky;
  top: 52px;
  overflow: scroll;
  max-height: 89vh;
  border: 1px solid #eee8ff;
  padding: 26px;
  border-radius: 16px;
}

.article-sidebar__cateogry h3 {
  margin-bottom: 20px;
}

.article-sidebar__cateogry h3 a {
  color: inherit;
}

.share-buttons.card-ui.active {
  display: flex;
}

.share-buttons.card-ui {
  position: absolute;
  display: none;
  flex-flow: row;
  padding: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.share-block {
  position: relative;
}

.share-buttons img {
  width: 32px;
}

.share-buttons > *:hover {
  opacity: 0.8;
}

.share-buttons a:not(:last-child) {
  margin-right: 16px;
}

.article__modifided span {
  color: #c7c5cd;
  margin-right: 8px;
}

.search-article .toggle-list-wrapper a {
  color: #0a0228;
  text-decoration-color: rgb(117 117 117 / 40%);
}

.search-article .toggle-list-wrapper a:not(:last-child) {
  margin-bottom: 14px;
}

.search-article .toggle-list-wrapper {
  display: flex;
  flex-flow: column;
}

.search-article--description {
  margin-bottom: 32px;
  color: #999;
}

h2 + .wp-block-lazyblock-qa-block {
  margin-top: 0px;
}

.article__content-text .page__accordion .page__accordion-right {
  display: none;
}

.article__content-text .page__accordion .page__accordion-left {
  max-width: 100%;
  flex: 1;
  padding: 24px;
}

.article__content-text .page__accordion {
  box-shadow: 0px 8px 16px rgba(51, 43, 80, 0.08);
}

button.share-button.copy-url {
  border: 0px;
  background-image: url(/wp-content/themes/24author/assets/img/icon/Link.svg);
  background-size: contain;
}

button.share-button.copy-url.copyed {
  border: 0px;
  background-image: url(/wp-content/themes/24author/assets/img/icon/Check.svg);
  background-size: contain;
}

.share-buttons a,
.share-buttons button {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 5px;
}

#qrTgModal .modal-body {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 32px;
}

.qr-text {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding-top: 24px;
}

.qr-text img {
  margin-bottom: 24px;
  max-width: 230px;
}

.qr-text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #524e60;
}

#bubleModal .button.button-text {
  justify-content: center;
  align-items: center;
  width: 100%;
}

#bubleModal .button.button-text img {
  margin-left: 8px;
}

img.buble-promo-img {
  max-width: 190px;
}

#bubleModal .modal-fullcol {
  text-align: center;
}

#bubleModal .modal-title span {
  background: #9784dd;
  border-radius: 4px;
  padding: 4px 8px;
}

#bubleModal .modal-title {
  line-height: 44px;
}

select {
  background: #f5f1ff;
  height: 56px;
  border: 1px solid #eee8ff;
  border-radius: 8px;
  padding: 10px;
}

@media (max-width: 991px) {
  select {
    height: 50px;
  }
}

#helpModal .button.transparent {
  width: 100%;
  margin-top: 16px;
}

@media (min-width: 740px) {
  #helpModal .modal-right {
    padding: 64px 32px 64px 0px;
  }
}

.buyModal-nameCopy {
  background: #f5f1ff;
  border: 1px dashed #9784dd;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.buyModal-nameCopy p {
  margin: 0px;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  color: #775fd2;
}

.buyModal-nameCopy span {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9784dd;
  margin-bottom: 4px;
}

.buyModal-nameCopy span button {
  background: none;
  border: 0;
}

#buyModal button[data-bs-target="#qrTgModal"] {
  width: 100%;
  margin-top: 8px;
}

.banner-help__form.telegram-form {
  display: flex;
  flex-wrap: wrap;
}

.banner-help__form.telegram-form > *:first-child {
  margin-right: 8px;
}

.single__example--js.loader:after,
div#lastorder.loader:after {
  width: 100%;
  height: 130px;
  content: "";
  position: relative;
  background-image: url("/wp-content/themes/24author/assets/img/preloader.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 78px;
}

.single__example--js.loader {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__button-menu {
  margin-left: auto;
  margin-right: 16px;
}

.header__button-menu .button {
  background: #ffffff;
  box-shadow: 0px 12px 28px rgba(51, 43, 80, 0.08);
  color: #9784dd;
}

.header__button-menu .button:hover {
  background-color: #eee8ff;
}

.header__button-menu .button img {
  margin-left: 8px;
}

.header__button-menu .dropdown-menu {
  padding: 0px;
  border: 0px;
  box-shadow: 0px 12px 28px rgba(51, 43, 80, 0.08);
  margin-top: 8px !important;
}

.header__button-menu .dropdown-menu ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.header__button-menu .dropdown-menu ul li a {
  color: inherit;
  border-bottom: 1px solid #eee;
  padding: 8px 16px;
  margin: 0px;
  display: block;
  text-decoration: none;
  font-size: 14px;
}

.header__button-menu .button.show img {
  transform: rotate(180deg);
}

.tg-chat {
  position: fixed;
  bottom: 0px;
  width: 240px;
  right: 0px;
  padding: 24px;
  background-size: cover;
  background-position: center;
  margin: 16px;
  border-radius: 16px;
  background-color: #00a3ff;
  z-index: 999;
}

.tg-chat .tg-chat-wrapper span.tg-chat-title {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 42px;
  font-weight: 600;
}

.tg-chat-wrapper {
  display: flex;
  flex-flow: column;
  position: relative;
}

.tg-chat .button {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.tg-chat:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(https://pbs.twimg.com/profile_images/1183117696730390529/LRDASku7_400x400.jpg);
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.tg-chat span.tg-chat-title:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #6cff6c;
  display: block;
  border-radius: 100px;
  margin-bottom: 4px;
  animation: blink 2s infinite;
}

button.tg-close {
  position: absolute;
  top: -8px;
  right: -6px;
  width: 24px;
  height: 24px;
  background-position: center;
  border-radius: 100px;
  border: 0px;
  outline: none;
  padding: 4px;
  background: #ff64b0
    url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 18L6 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 6L6 18' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.tg-icon img {
  padding: 4px;
  width: 22px;
  height: 22px;
  border-radius: 100px;
}

.tg-icon {
  background: #1da3f3;
  border-radius: 100px;
  height: 19px;
  width: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.tg-icon img {
  margin-left: -2px;
}

@keyframes blink {
  0% {
    background: #6cff6c;
  }
  50% {
    background: transparent;
  } /* Цвет фона во время "выключения" */
  100% {
    background: #6cff6c;
  }
}

.hidden span.tg-chat-title {
  display: none;
}

.tg-chat.hidden {
  padding: 0px;
  width: 150px;
}

.hidden button.tg-close {
  display: none;
}

.hidden.tg-chat .button {
  background: #1da3f3;
}

.tg-icon {
  background: #2391d4;
}

.hidden.tg-chat .button {
  color: #fff;
  padding: 0px 16px;
}

.hidden.tg-chat .button:hover {
  background: #0d8ddb;
}

.content table td,
.content table tr {
  border: 1px solid #e4deff;
  padding: 6px;
}

@media (max-width: 991px) {
  .hidden.tg-chat {
    display: none;
  }
  .tg-chat {
    padding: 8px 8px;
    width: 100%;
    right: 0px;
    bottom: 0px;
    margin: 0px;
    border-radius: 8px 8px 0px 0px;
  }

  .tg-chat .tg-chat-wrapper span.tg-chat-title {
    margin-bottom: 9px;
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-end;
  }

  button.tg-close {
    right: 6px;
  }

  .tg-chat span.tg-chat-title:before {
    margin-left: 4px;
  }

  .tg-chat .button {
    height: 34px;
  }

  .tg-chat:before {
    background-position: right -13px;
  }
}

.hint_footer {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.hint_footer_text {
  flex: 1 0 0;
  align-self: stretch;
  color: #93a1c8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 137.5% */
  display: flex;
  align-items: center;
}

.buttons1 {
  display: flex;
  margin-bottom: 16px;
  flex-flow: column;
}

.buttons2,
.buttons3 {
  display: none;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 16px;
  flex-flow: column;
}

.price_text {
  color: #0d1d4a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.hat_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  color: #fff;
}

#predmet,
#type,
#name,
#input-email,
#theme,
#whattodo,
#term {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  background: #fff;
  color: #524e60;
  flex-grow: 1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 16px;
  max-width: 100%;
  width: 100%;
}

#theme,
#whattodo,
#term,
.email_wrapper {
  display: none;
}

.steps {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  justify-content: space-between;
}

.steps_title {
  color: #0d1d4a;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
}

@media (max-width: 480px) {
  .steps_title {
    font-size: 16px;
  }
}
.step {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 13px;
  color: #0a0228;
  opacity: 0.4;
}

.price_sum {
  color: #0d1d4a;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 125% */
}

.email_wrapper {
  position: relative;
  flex-flow: column;
}

.stages {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 24px;
}

.stages > *:not(:last-child) {
  margin-right: 10px;
}

.stage1 {
  height: 4px;
  flex: 1 0 0;
  background-color: #7d2aeb;
  border-radius: 100px;
}

.stage2,
.stage3 {
  height: 4px;
  flex: 1 0 0;
  background-color: #eee8ff;
  border-radius: 100px;
}

#step2-button_back,
#step3-button_back {
  margin-bottom: 12px;
  margin-top: 16px;
  margin-right: auto;
  font-size: 14px;
  font-weight: 600;
}

#step2-button_back svg,
#step3-button_back svg {
  width: 20px;
}

.landing__price-table .hidden {
  display: none;
}

.price-table__with-calc {
  display: flex;
}

#calc-form {
  width: 402px;
  background: #f5f1ff;
  padding: 48px;
  border-radius: 16px;
}

@media (max-width: 991px) {
  div#calc-form {
    padding: 24px;
    width: 362px;
  }
  .price-table__wrapper {
    max-width: 100%;
  }
}

@media (max-width: 762px) {
  .price-table__with-calc {
    flex-flow: column;
  }

  div#calc-form {
    width: 100%;
    margin-top: 32px;
  }
}

.hat {
  padding: 24px;
  background: #9784dd;
  border-radius: 16px;
  position: relative;
}

.hat:before {
  content: "";
  width: 100px;
  height: 100px;
  background: url(/wp-content/themes/24author/assets/img/hat.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  position: absolute;
  right: -40px;
  top: -50px;
}

.hat_text span {
  font-weight: 600;
}

.buttons1 .price {
  display: flex;
  flex-flow: column;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;

  margin-bottom: 16px;
}

input#term {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #eee8ff;
  border-radius: 8px;
  padding: 0px 16px;
  height: 56px;
  background: #fff;
  width: 100%;
}

@media (max-width: 991px) {
  input#term {
    height: 50px;
  }
}
.discount {
  position: absolute;
  right: 0px;
  top: 0px;
  background: #9785de;
  padding: 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 12px;
}

.price_sum.old {
  text-decoration: line-through;
  font-size: 15px;
  line-height: normal;
  margin-right: 8px;
  opacity: 0.5;
}

.new_price {
  color: #0d1d4a;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.prices {
  display: flex;
  align-items: center;
}

.email-discount {
  position: relative;
}

.landing__reviews .swiper-slide {
  border: 24px solid #eee8ff;
  border-radius: 16px;
}

.landing__reviews .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.4;
  transform: scale(0.9);
}

.landing__reviews .swiper-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.landing__reviews .swiper-slide:not(.swiper-slide-active) a {
  pointer-events: none;
}

.swiper-gallery-navigation {
  max-width: 100%;
  position: relative;
  grid-area: 2 / 2;
  height: 0;
}

.swiper-gallery-h {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.swiper-gallery-navigation .swiper-button-next,
.swiper-gallery-navigation .swiper-button-prev {
  width: 42px;
  height: 42px;
}

.swiper-gallery-navigation .swiper-button-next {
  right: -16px;
}

.swiper-gallery-navigation .swiper-button-prev {
  left: -16px;
}

.landing__reviews {
  padding-bottom: 88px;
}

@media (max-width: 991px) {
  .landing__reviews {
    padding-bottom: 42px;
  }
}
.landing__reviews .swiper-slide img {
  width: 100%;
}

.swiper-gallery-mobile {
  display: none;
}

@media (max-width: 991px) {
  .landing__reviews .swiper-slide {
    border: 12px solid #eee8ff;
  }
}
@media (max-width: 762px) {
  .swiper-gallery-h {
    display: none;
  }

  .swiper-gallery-mobile {
    display: block;
  }
}

.message-cf7 {
  margin-top: 16px;
}

.message-cf7 .button {
  margin-top: 12px;
}

#calc-form .wpcf7-response-output {
  height: 220px;
  z-index: 2;
}

@media (max-width: 991px) {
  .landing__price-table {
    padding-top: 48px;
  }
}
@media (max-width: 740px) {
  .landing__price-table {
    padding-top: 32px;
  }
  .price-table__title .title {
    margin-bottom: 24px;
  }
}

.header__dashboard {
  display: flex;
  max-width: fit-content;
  max-height: 56px;
  padding: 19px;
  border-radius: 8px;
  background: #9785de;
  margin-left: 16px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.header__dashboard img {
  width: 100%;
}

.header__dashboard svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.header__dashboard svg * {
  fill: #fff;
}

.tab-content-signup {
  display: flex;
  flex-flow: column;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.tab-content-signup img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 12px 28px rgba(51, 43, 80, 0.08);
}

.tab-content-signup .single__header-price-elements {
  position: absolute;
  max-width: 400px;
  padding: 34px;
}

.tab-content-signup .single__header-price {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.modal-auth form {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}

.modal-auth form input {
  width: 100%;
}

.modal-auth form button {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
}

.modal-auth .modal-sm {
  max-width: 550px;
}

.single__right-header {
  flex: 0 0 293px;
  display: flex;
  flex-flow: column;
}

.fav-button {
  margin-top: 16px;
  width: 100%;
}

.fav-button svg {
  margin-right: 8px;
}

.modal-auth .loader {
  background-image: url("/wp-content/themes/24author/assets/img/preloader.svg");
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #fff;
  z-index: 2;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

.modal-auth .modal-content {
  position: relative;
}

.single .header__button-menu .button#dropdownMenuButton {
  background: none;
  box-shadow: none;
}

.single__right-header .fav-button.set {
  color: #9785de;
  background: #fff;
  box-shadow: none;
}

.fav-button.set svg * {
  stroke: #9785de;
  fill: #9785de;
}

.fav-button:hover {
  background: #9785de;
  color: #fff;
}

.fav-button:hover svg * {
  stroke: #fff;
  fill: #fff;
}

.fav-button.set:hover {
  background: #f5f1ff;
  color: #9785de;
}

.fav-button.set:hover svg * {
  stroke: #9785de;
  fill: #9785de;
}

.favorites__items {
  display: grid;
  grid-template-rows: 1fr;
  row-gap: 16px;
}

.favorites__items .favorites__item {
  padding: 24px;
  background: #f9f7ff;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
}

.favorites__items .favorites__item .favorites__item-title {
  width: 100%;
  padding-right: 24px;
}

.favorites__item-name {
  font-size: 25px;
  line-height: 34px;
  text-decoration: none;
  font-weight: 600;
  display: block;
  color: #0a0228;
  margin-bottom: 24px;
}

.favorites__item-category a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #a09ea7;
  text-decoration: none;
}

.favorites__item-category a + a {
  margin-left: 8px;
}

.favorites__item-category {
  margin-bottom: 8px;
}

.dashboard {
  background: #f9f7ff;
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-template-template-dashboard .site-footer {
  margin-top: 0px;
}

@media (max-width: 740px) {
  .favorites__item-name {
    font-size: 18px;
    line-height: normal;
  }

  .favorites__item-category a {
    font-size: 14px;
  }

  .favorites__item-category {
    display: flex;
    flex-flow: column;
  }

  .favorites__item-category a + a {
    margin-left: 0px;
  }

  .favorites__items .favorites__item {
    padding: 16px;
    flex-flow: column;
  }

  .fav-button {
    max-width: 100%;
    width: 100%;
    margin-top: 16px;
  }
}

.lost-password-page {
  background: #f5f1ff;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-flow: column;
  position: relative;
  min-height: 300px;
}

.lost-password-page input {
  width: 100%;
  background: #fff;
}

.lost-password-page button {
  width: 100%;
  background: #9785de;
  color: #fff;
}

.lost-password-page button:hover {
  background: #775fd2;
}

@media (max-width: 740px) {
  .lost-password-page {
    padding: 16px;
  }
}

.auth__about--wrapper {
  display: flex;
  background: #ff64b0;
  border-radius: 16px;
  align-items: flex-end;
}

.auth__about--left img {
  width: 380px;
}

.auth__about--right {
  flex: 1;
  padding: 24px;
}

.auth__about--right h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 48px;
}

.auth__about--item .auth__about-text {
  font-size: 25px;
  font-weight: 800;
  line-height: 34px;
  color: #fff;
}

.auth__about--item {
  max-width: 260px;
  display: flex;
  flex-flow: column;
  padding: 24px;
  border: 1px solid #ff79bb;
  border-radius: 8px;
}

.auth__about--items {
  display: flex;
  margin-bottom: 16px;
  margin-top: 42px;
}

.auth__about--item + .auth__about--item {
  margin-left: 16px;
}

span.auth__about-emj {
  margin-bottom: 16px;
  font-size: 24px;
}

.auth__about + .listing__work {
  padding-top: 0px;
}

.dashboard__section.dashboard__section--favorites.loading {
  width: 100%;
  min-height: 300px;
  content: "";
  position: relative;
  background-image: url("/wp-content/themes/24author/assets/img/preloader.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 78px;
  background-color: #fff;
  border-radius: 16px;
}

.dashboard__section.dashboard__section--favorites.loading * {
  display: none;
}

.publication__item--title-copy .fav-button svg {
  margin-right: 0px;
  margin-left: 8px;
}

.publication__item--title-copy > * {
  width: 100%;
}

.button.profile-icon-button {
  width: 100%;
  min-width: 64px;
  max-width: 64px;
  padding: 0px;
  display: flex;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 740px) {
  .button.profile-icon-button {
    min-width: 50px;
    max-width: 50px;
  }
}
.button.profile-icon-button svg {
  width: 24px;
  height: 24px;
}

.auth-error {
  color: red;
  text-align: left;
  margin-bottom: 8px;
}

span.password-send {
  text-align: left;
  margin-top: 6px;
  display: flex;
  font-size: 14px;
  opacity: 0.4;
}

.lost-password-page form > * + * {
  margin-top: 11px;
}

.lost-password-page form {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  width: 500px;
}

.lost-password-page h1 {
  font-size: 22px;
  margin-bottom: 0px;
  font-weight: 600;
}

.success-send {
  background: #fff;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-flow: column;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
}

.success-send span {
  font-weight: 600;
  font-size: 22px;
  max-width: 490px;
  text-align: center;
}

.success-send a {
  margin-top: 16px;
}

div#chat-box {
  background: #fff;
  display: flex;
  flex-flow: column;
}

.chat__message-item {
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 16px;
  margin-bottom: 16px;
}

.chat__message-item.message_assistant {
  background: #9785de;
  color: #fff;
  margin-left: 24px;
}

.chat__message-item.message_user {
  background: #ede9ff;
  margin-right: 16px;
}

.chat__message-item .role {
  font-weight: 600;
}

.chat__message-item .send-date {
  font-size: 14px;
  margin-top: 11px;
  opacity: 0.5;
}

form#file-url-form {
  display: flex;
  flex-wrap: wrap;
}

textarea#message_text {
  flex: 1;
  background: #fff;
  height: 90px;
  border-radius: 15px;
  padding: 16px;
  border: 0px;
  min-height: 92px;
}

.chat__block--document {
  background: #ffffff;
  border-radius: 14px;
  margin-top: auto;
  margin-top: -24px;
  box-shadow: 0px 0px 23px -6px rgba(51, 43, 80, 0.08);
  z-index: 3;
  border-top: 1px solid #eee;
  border-radius: 0px 0px 14px 14px;
}

.chat__block-inner {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.wrapper__chat {
  display: flex;
  position: relative;
  padding: 0px;
  border-radius: 24px;
  height: 90vh;
}

.chat__list-thread {
  width: 300px;
  margin-right: 26px;
  position: absolute;
  display: none;
  height: 100%;
  left: 0px;
  top: 0px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0px 12px 28px rgba(51, 43, 80, 0.08);
  border-radius: 14px;
}

.chat__list-thread.show {
  display: flex;
  z-index: 2;
  flex-flow: column;
}

.chat__list-thread-items {
  background: #fff;
  display: flex;
  flex-flow: column;
  max-height: 100%;
  height: 100%;
  overflow-y: scroll;
}

a.chat__list-thread-button {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

a.chat__list-thread-link {
  text-decoration: none;
  padding: 12px 16px;
  margin: 6px 0px;
  display: flex;
  flex-flow: column;
  color: inherit;
  background: #f9f7ff;
  border-radius: 8px;
  color: #0a0228;
}

span.chat__list-thread-date-update {
  font-size: 11px;
  margin-top: 8px;
  opacity: 0.4;
}

a.chat__list-thread-link + a.chat__list-thread-link {
  border-top: 1px solid #eee;
}

a.chat__list-thread-link {
}

span.chat__list-thread-title {
  font-weight: 600;
  font-size: 14px;
}

span.chat__list-thread-name-file {
  font-size: 13px;
  margin-top: 4px;
}

.chat__wrapper {
  display: flex;
  flex-flow: column;
  flex: 1;
}

.chat__chat-box-wrapper {
  overflow-y: scroll;
  padding: 24px;
  background: #fff;
  border-radius: 14px 14px 0px 0px;
  height: 100%;
  box-shadow: 0px 0px 23px -6px rgba(51, 43, 80, 0.08);
  margin-top: 24px;
}

.chat__navbar {
  display: flex;
  justify-content: space-between;
  padding: 0px 24px;
  border-radius: 14px;
  background: #fff;
  align-items: center;
  height: 100%;
  max-height: 80px;
}

.chat__navbar-item {
  font-size: 15px;
  display: flex;
  align-items: center;
}

.chat__navbar-item.chat_navbar-file-name {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  background: #ede8ff;
  border-radius: 6px;
  height: 34px;
  transition: 0.3s;
  border: 0px;
}

.chat__navbar-item.chat_navbar-file-name svg {
  margin-right: 8px;
  width: 16px;
}

.chat__navbar-item.chat_navbar-file-name span {
  max-width: 450px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
}

.chat__navbar-item.chat_navbar-menu svg {
  width: 34px;
  padding: 8px;
  background: #ede8ff;
  border-radius: 4px;
  height: 34px;
  margin-right: 8px;
}

.chat__navbar-item.chat__navbar-item-limit {
}

.chat__list-thread-header {
  padding-bottom: 12px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat__list-thread-header svg {
  padding: 4px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: 0.3s;
}

.chat__list-thread-header h2 {
  margin-bottom: 0px;
  color: #0a0228;
}

.chat__navbar-item {
  cursor: pointer;
}

.chat__message-system-button svg {
  margin-right: 8px;
  width: 16px;
}

.chat__message-system-button {
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 16px;
}

.chat__message-item.message_welcome span {
  font-size: 16px;
  text-align: center;
  justify-content: center;
  display: flex;
}

.chat__message-system-button svg * {
  stroke: #fff;
}

.chat__document {
  width: 40%;
  margin-right: 24px;
  display: flex;
  flex-flow: column;
}

.chat__document--select_document {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  height: 100%;
  margin-top: 24px;
  box-shadow: 0px 0px 23px -6px rgba(51, 43, 80, 0.08);
}

.chat__document--inner-file.loader:after {
  content: "";
  background: url("/wp-content/themes/24author/assets/img/preloader.svg");
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70px;
}

.chat__document--inner-file.loaded {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  height: 100%;
  margin-top: 24px;
  box-shadow: 0px 0px 23px -6px rgba(51, 43, 80, 0.08);
}

.chat__document--select_document.loaded {
  height: auto;
  padding: 16px;
  order: 100;
}

.chat__document--inner-file.loaded #pdf {
  height: 100%;
}

.chat__document--select_document.loaded button {
  margin: 0px;
  width: 100%;
}

.chat__navbar-item.chat__document-navbar-item {
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  transition: 0.3s;
}

form#file-url-form #send-button {
  margin: 24px;
}

.chat__navbar-item.chat__document-navbar-item {
  font-size: 16px;
  transition: 0.3s;
  border: 0px;
  height: 100%;
  max-height: 80px;
}

.chat__list-thread-header svg * {
  fill: #9785de;
}

.chat__list-thread-header svg:hover {
  opacity: 0.7;
  transform: scale(1.1);
  transition: 0.3s;
}

.chat__navbar-item.chat__document-navbar-item:hover svg {
  opacity: 0.7;
  transform: scale(1.1);
  transition: 0.3s;
}

.chat__navbar-item.chat__document-navbar-item:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.chat__navbar-item.chat__document-navbar-item:hover {
  opacity: 1;
}

.chat__navbar-item.chat__document-navbar-item:hover span {
  opacity: 0.7;
}

.chat__navbar-item.chat_navbar-file-name:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.selector_chat .listing__work-item--wrapper {
  padding: 0px;
}

a.button.user_limit_button {
  font-size: 15px;
  display: flex;
  align-items: center;
  padding: 0px 9px;
  background: #ede8ff;
  border-radius: 6px;
  height: 34px;
  transition: 0.3s;
  border: 0px;
  color: inherit;
  font-weight: 500;
  margin-left: 8px;
}

.chat__navbar-item.chat__navbar-item-limit {
  border-radius: 8px;
  border: 1px solid #ede9ff;
  padding: 5px 7px;
  font-size: 14px;
}

.chat__navbar-item.chat__navbar-item-limit .user_limit {
  margin-right: 6px;
  font-weight: 600;
  color: #ff64b0;
}

.shop_table.woocommerce-checkout-review-order-table {
  display: flex;
  flex-flow: column;
  margin-bottom: 16px;
}

.woocommerce-checkout-payment {
  display: none;
}

.woocommerce-terms-and-conditions-wrapper * {
  font-size: 16px;
}

.woocommerce-terms-and-conditions-wrapper {
  display: flex;
  flex-flow: column;
}

.checkout-wrapper {
  padding: 48px;
}

.checkout__profile-info > * + * {
  margin-top: 12px;
  border-top: 1px solid #a594ed;
  padding-top: 12px;
}

.shop_table.woocommerce-checkout-review-order-table .title {
  margin-bottom: 16px;
  text-decoration: none;
}

.ui_block_shadow {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #eee;
}

.checkout-page {
  background: #ffffff;
  box-shadow: 0px 12px 28px rgba(51, 43, 80, 0.08);
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.shop_table span.label {
  font-weight: 600;
  text-decoration: none !important;
}

.checkout__profile-info span {
  text-decoration: underline;
}

ul.pricelist {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}

.pricelist li.product-item {
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  flex: 1;
  min-width: 32%;
  box-shadow: 0px 12px 28px rgba(51, 43, 80, 0.08);
}

.pricelist li.product-item + li.product-item {
  margin-left: 16px;
}

h3.product--name {
  font-size: 28px;
  margin-bottom: 14px;
  margin-top: 8px;
}

.product--label {
  font-size: 14px;
  opacity: 0.5;
}

.product--price {
  font-size: 24px;
  color: #ff64b0;
  font-weight: 600;
  display: flex;
  padding: 4px 9px;
  background: #f1eeff;
  border-radius: 8px;
  text-align: center;
  justify-content: center;
  margin-bottom: 12px;
}

.product--description {
  margin-bottom: 48px;
  display: flex;
  flex-flow: column;
}

.product--description .description--item {
  font-size: 15px;
  opacity: 0.7;
}

.product--description > * + * {
  margin-top: 8px;
}

.buylimitButton.loading-button:after {
  background: url("/wp-content/themes/24author/assets/img/preloader.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70px;
  content: "";
  position: absolute;
  z-index: 2;
  background-color: #9784dd;
  width: 100%;
  height: 100%;
}

.buylimitButton.loading-button {
  position: relative;
  overflow: hidden;
}

.checkout--wrapper p {
  font-size: 24px;
  max-width: 620px;
  color: #36314b;
}

.checkout--label {
  color: #7d749e;
}

input.notreq:focus + span {
  top: 4px;
  right: 4px;
  font-size: 10px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .checkout-wrapper {
    padding: 24px;
  }
}
@media (max-width: 740px) {
  .checkout--wrapper p {
    font-size: 16px;
  }

  .checkout-wrapper {
    padding: 16px;
  }

  .ui_block_shadow {
    padding: 16px;
  }
}

.isnot__auth .button.profile-icon-button {
  background: #f5f1ff;
}

.isnot__auth .button.profile-icon-button svg * {
  fill: #775fd2;
}

.chat__message-item.message_welcome .button svg * {
  stroke: #fff;
}

.chat__message-item.message_welcome .button svg {
  width: 18px;
  margin-right: 12px;
}

.chat__message-item.message_welcome .message {
  display: flex;
  flex-flow: column;
}

.chat__message-item.message_welcome .button {
  margin-top: 14px;
  display: none;
}

@media (max-width: 991px) {
  .chat__message-item.message_welcome .button {
    display: flex;
  }

  .chat__document--select_document {
    display: none;
  }

  .wrapper__chat {
    flex-flow: column;
  }

  .chat__document {
    width: 100%;
    margin-bottom: 16px;
  }

  .chat__chat-box-wrapper {
    margin-top: 16px;
  }
}

.chat_preloader img {
  width: 48px;
  height: 48px;
}

.chat_preloader.__active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  order: 999;
}
.chat_preloader {
  padding: 16px;
  border-radius: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  justify-content: center;
  align-items: center;
  display: none;
}

.pricelist__items {
  max-width: 700px;
  margin: 0 auto;
}

.pricelist__freeplan {
  padding: 48px;
  font-size: 24px;
  border: 1px solid #eee;
  border-radius: 16px;
  margin-right: 24px;
}

.pricelist__plan {
  padding: 48px;
  flex: 1;
  background: #f5f1ff;
  border-radius: 24px;
}

.pricelist__items .title {
  margin-bottom: 24px;
  display: flex;
}

.plan--label {
  font-size: 16px;
  opacity: 0.5;
  margin-bottom: 8px;
  font-weight: 600;
}

.plan--info {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid #fff;
  border-radius: 16px;
  background: #fff;
}

.plan--info #selected_id {
  margin-top: 16px;
}

span#product_name {
  font-weight: 600;
  font-size: 24px;
  margin-top: 16px;
  display: flex;
}

.plan--select {
  padding: 24px;
  background: #fff;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .pricelist__plan {
    padding: 24px;
  }

  .plan--info {
    padding: 16px;
  }
  .plan--select {
    padding: 16px;
  }
}

@media (max-width: 740px) {
  .pricelist__plan {
    padding: 16px;
  }
}

.modal-auth .modal-expert-wrapper {
  width: 100%;
}

#notenoughModal.modal-auth .modal-expert-wrapper {
  text-align: center;
}

#notenoughModal.modal-auth .modal-expert-wrapper .modal-title {
  margin-bottom: 24px;
}

@media (max-width: 740px) {
  form#file-url-form {
    flex-flow: column;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
  }
}


.favorites_empty {
  text-align: center;
  background: #fff;
  padding: 32px;
  border-radius: 14px;
} 

.order-info {
  padding: 32px;
  text-align: center;
  min-height: 370px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-flow: column;
}

.order-info h1 {
  font-weight: 600;
}

.woocommerce-terms-and-conditions-wrapper .error {
  color: red;
  margin-top: 6px;
}


.message ol li {display: flex;width: 100%;flex-wrap: wrap;}

.message ol li:before {
    color: #fff;
    font-weight: 600;
}

.message ol {
    padding-left: 6px;
    display: flex;
    flex-flow: column;
}

.message ol ul {
    width: 100%;
    padding-left: 8px;
    display: flex;
    flex-flow: column;
}

.message ol ul li::before {
    content: '-';
}

.message ul {
    padding-bottom: 8px;
}

.message p {
    flex: 1;
}