@charset "UTF-8";
:root {
  --common--background-color: #B6C6FE;
  --common--gray-background-color: #E5EAF8;
  --common--gray-light-color: #eef1f9;
  --common--gray-light2-color: rgba(120, 120, 128, 0.16);
  --common--basic-color: #0B2D87;
  --common--basic-color-50: rgba(11, 45, 135, 0.50);
  --common--basic-color-06: rgba(11, 45, 135, 0.06);
  --common--basic-white: #ffffff;
  --common--basic-white2: #F9FAFE;
  --common--blue: #0036E9;
  --common--green: #1fd694;
  --common--dark-green: #008000;
  --common--danger: #FF0404;
  --common--warning: #ffc107;
  --common--blue-gradient: linear-gradient(180deg, #3963EF 0%, var(--common--blue) 100%);
}

.ug_page__header-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1440px;
  padding: 24px 60px 25px 60px;
  margin: 0 auto;
}
@media screen and (max-width: 962px) {
  .ug_page__header-row {
    max-width: 962px;
    padding: 32px 32px 12px 32px;
  }
}
@media screen and (max-width: 768px) {
  .ug_page__header-row {
    max-width: 768px;
    padding: 24px 16px 24px 16px;
  }
}
.ug_page__footer-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1440px;
  padding: 0px 60px 32px 60px;
  margin: 0 auto;
}
@media screen and (max-width: 962px) {
  .ug_page__footer-row {
    max-width: 962px;
    padding: 0px 32px 32px 32px;
  }
}
@media screen and (max-width: 768px) {
  .ug_page__footer-row {
    max-width: 768px;
    padding: 32px 16px 58px 16px;
  }
}
.ug_page__row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1440px;
  padding: 0px 60px 64px 60px;
  margin: 0 auto;
}
@media screen and (max-width: 962px) {
  .ug_page__row {
    max-width: 962px;
    padding: 0px 32px 32px 32px;
  }
}
@media screen and (max-width: 768px) {
  .ug_page__row {
    max-width: 768px;
    padding: 0px 16px 32px 16px;
  }
}
.ug_page__blog {
  flex-direction: row;
}

.ug_landing__row {
  position: relative;
  max-width: 1220px;
  padding: 80px 40px 80px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 962px) {
  .ug_landing__row {
    max-width: 1000px;
    padding: 60px 30px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .ug_landing__row {
    max-width: 1000px;
    padding: 40px 15px 40px 15px;
  }
}

@media screen and (max-width: 768px) {
  .ug_max-width-tiny {
    margin: 0 auto;
    max-width: 360px;
  }
}

.ug_font-family--atyp {
  font-family: "Atyp Text", serif;
}

.ug_shadow {
  box-shadow: 0 0 12px 0 rgba(81, 94, 139, 0.25);
}

.ug_shadow_2 {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
}

.ug_clear--both {
  clear: both;
}

.ug_text-align--left {
  text-align: left;
}
.ug_text-align--right {
  text-align: right;
}
.ug_text-align--center {
  text-align: center;
}

.ug_pad--no {
  padding: 0;
}
.ug_pad--no-vert {
  padding-top: 0;
  padding-bottom: 0;
}
.ug_pad--no-hor {
  padding-left: 0;
  padding-right: 0;
}

.ug_mar--no {
  margin: 0;
}
.ug_mar--no-vert {
  margin-top: 0;
  margin-bottom: 0;
}
.ug_mar--no-hor {
  margin-left: 0;
  margin-right: 0;
}
.ug_mar--auto-hor {
  margin-left: auto;
  margin-right: auto;
}

.ug_pseudo-select-element, .ug_btn, .ui-dialog-buttonset .ui-button, .ui-dialog-buttonset .ui-button {
  border-radius: 12px;
}

.ug_btn, .ui-dialog-buttonset .ui-button {
  display: inline-block;
  padding: 16px 48px;
  background: var(--common--blue) var(--common--blue-gradient);
  color: var(--common--basic-white);
  font-family: "Montserrat", serif;
  font-size: 18px;
  line-height: 22px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: normal;
  white-space: nowrap;
  text-align: center;
  text-transform: none;
  text-decoration: none;
}

.ug_btn, .ui-dialog-buttonset .ui-button {
  transition: background 0.2s, border 0.2s;
  cursor: pointer;
}
.ug_btn:hover, .ui-dialog-buttonset .ui-button:hover {
  background: var(--common--basic-color) none;
}
.ug_btn--pd-tiny {
  padding: 16px 24px;
}
.ug_btn--small {
  font-size: 18px;
  line-height: 22px;
  padding: 3px 14px;
  border-radius: 8px;
}
.ug_btn--disabled, .ug_btn--disabled:hover {
  cursor: default;
  pointer-events: none;
  background: #ddd;
  color: #888;
  border-color: #ddd;
}
.ug_btn.ug_btn-o, .ui-dialog-buttonset .ug_btn-o.ui-button {
  background: none;
  border: 1px solid var(--common--basic-color);
  color: var(--common--basic-color) !important;
}
.ug_btn.ug_btn-o:hover, .ui-dialog-buttonset .ug_btn-o.ui-button:hover {
  background: none;
}

.panel-footer-1 .feedback-fields-row [type=text],
.panel-footer-1 .feedback-fields-row [type=email], .panel-header__user, .panel {
  border-radius: 24px;
  border: none;
}

.cabinet-header__balance .wrapper, .add-project__tools-search, .projects-filters-dropdown, .support-request-content, .support-items__item, .support-filters-dropdown, .support-filters-button, .support-filters-search, .support .work-fields-container.message .work-fields:nth-child(1), .ug_calendar_widget, .work-table thead tr:nth-child(odd), .work-field label input[type=text],
.work-field label input[type=number],
.work-field label input[type=email],
.work-field label input[type=password],
.work-field label textarea,
.work-field label .ug_pseudo-select-element > div,
.work-field label select, .work-panel {
  border-radius: 12px;
  border: none;
}

.panel {
  background-color: var(--common--basic-white);
  padding: 42px 60px;
}
@media screen and (max-width: 962px) {
  .panel {
    padding: 32px 32px;
  }
}
@media screen and (max-width: 768px) {
  .panel {
    padding: 0px 0px;
    border-radius: unset;
  }
}
.panel-title {
  margin-bottom: 32px;
  text-align: center;
  font-family: Montserrat, serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 962px) {
  .panel-title {
    margin-bottom: 16px;
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .panel-title {
    text-align: left;
  }
}
.panel-text {
  margin-bottom: 48px;
  text-align: center;
  font-family: Montserrat, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 962px) {
  .panel-text {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .panel-text {
    margin-bottom: 16px;
    text-align: left;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--common--background-color);
  color: var(--common--basic-color);
  font-family: Montserrat, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  body {
    background-color: var(--common--basic-white);
  }
}

body > .header,
body > .footer {
  flex-shrink: 0;
}

body > .main {
  flex-grow: 1;
}

.container {
  margin: 0 auto;
}

table {
  border-spacing: 0;
}

a {
  position: relative;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/wp-content/themes/api/assets/images/preloader/5.gif");
  background-repeat: no-repeat;
  background-size: 128px;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999999;
}

.ugen-has-not-email-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 16px;
  z-index: 100;
  background-color: var(--common--dark-green);
  color: var(--common--basic-white);
}

.ugen-notice {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 16px;
  z-index: 1000;
}

.ugen-notice-success {
  background-color: var(--common--dark-green);
  color: var(--common--basic-white);
}

.ugen-notice-error {
  background-color: var(--common--danger);
  color: var(--common--basic-white);
}

.ui-dialog {
  border-radius: 12px;
}

.ui-dialog-buttonset .ui-button {
  padding: 0 40px;
}
.ui-dialog-buttonset .ui-button:hover {
  color: var(--common--basic-white);
}
.ui-dialog-buttonset .ui-button:focus {
  background: var(--common--blue) var(--common--blue-gradient);
  color: var(--common--basic-white);
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-not-valid {
  outline: 1px solid #dc3232 !important;
}

.wpcf7-not-valid-tip {
  display: none;
}

body > header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: inherit;
}
@media screen and (max-height: 500px) and (min-width: 768px) {
  body > header {
    position: static;
  }
}
body > header .container > div {
  position: relative;
}

body > header + .main {
  padding-top: 116px;
}
@media screen and (max-width: 962px) {
  body > header + .main {
    padding-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  body > header + .main {
    padding-top: 100px;
  }
}
@media screen and (max-height: 500px) and (min-width: 768px) {
  body > header + .main {
    padding-top: 0;
  }
}

.panel-header {
  background-color: var(--common--gray-background-color);
  padding-top: 14px;
  padding-bottom: 14px;
  width: 100%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .panel-header {
    border-radius: 24px;
    padding: 10px 18px;
    box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.25), 0 -4px 4px 0 rgba(255, 255, 255, 0.25);
    background-color: var(--common--basic-white);
  }
}
@media screen and (max-height: 500px) and (min-width: 768px) {
  .panel-header {
    position: static;
  }
}
.panel-header .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .panel-header .top .panel-header__menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .panel-header .top .panel-header__user {
    display: none;
  }
}
.panel-header .bottom {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-expanded .panel-header .bottom > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 42px;
    padding: 35px 34px 38px;
  }
}
.panel-header .bottom .socials-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-header .bottom .socials-buttons .gray-button {
  width: 48px;
  height: 48px;
  background-color: var(--common--gray-background-color);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 12px;
  flex-shrink: 0;
}
.panel-header .bottom .socials-buttons .gray-button.button-telegram {
  background-image: url(/wp-content/themes/api/assets/images/telegram-icon-mobile.svg);
}
.panel-header .bottom .socials-buttons .gray-button.button-whatsapp {
  background-image: url(/wp-content/themes/api/assets/images/whatsapp-icon-mobile.svg);
}
.panel-header .bottom .socials-buttons .gray-button.button-max {
  background-size: 25px;
  background-image: url(/wp-content/themes/api/assets/images/max-icon-mobile.svg);
}
.panel-header .bottom .socials-buttons .gray-button.button-email {
  background-image: url(/wp-content/themes/api/assets/images/email-icon-mobile.svg);
}
.panel-header__logo img {
  display: block;
}
@media screen and (max-width: 768px) {
  .panel-header__logo img {
    width: 140px;
    height: auto;
  }
}
.panel-header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-grow: 1;
  list-style: none;
}
@media screen and (max-width: 1440px) {
  .panel-header__menu {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .panel-header__menu {
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
  }
}
.panel-header__menu.empty {
  display: none;
}
.panel-header__menu a {
  position: relative;
  display: block;
  margin: 0 10px;
  color: var(--common--basic-color-50);
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .panel-header__menu a {
    color: var(--common--basic-color);
  }
  .header-expanded .panel-header__menu a {
    margin: 0;
  }
}
.panel-header__menu .active a {
  color: var(--common--basic-color);
}
.panel-header__menu .active a:after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--common--basic-color);
  content: "";
}
.header-expanded .panel-header__menu .active a:after {
  display: none;
}
.panel-header__mobile-button {
  display: none;
}
@media screen and (max-width: 768px) {
  .panel-header__mobile-button {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url("/wp-content/themes/api/assets/images/mobile-menu-button-left.svg") 50% 50% no-repeat;
  }
}
.panel-header__user {
  display: flex;
  background-color: var(--common--basic-white);
  border: 1px solid var(--common--background-color);
  border-radius: 12px;
  height: 48px;
  padding: 0 12px;
  text-decoration: none;
  overflow: hidden;
}
@media screen and (max-width: 962px) {
  .panel-header__user {
    height: 48px;
  }
}
.panel-header__user--logged-out {
  display: flex;
  align-items: center;
  gap: 24px;
}
.panel-header__user .label {
  color: var(--common--basic-color);
  line-height: normal;
}
.panel-header__user .icon {
  width: 18px;
  height: 20px;
  background: url("/wp-content/themes/api/assets/images/user.svg") 50% 50% no-repeat;
  background-size: 18px 20px;
}

@media screen and (max-width: 768px) {
  .panel-footer-1 {
    border-radius: 24px;
    border: none;
    background: var(--common--gray-background-color);
    padding: 32px 16px;
  }
}
.panel-footer-1 .footer-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-content {
    gap: 32px;
  }
}
.panel-footer-1 .footer-top {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top {
    gap: 32px;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.panel-footer-1 .footer-top__block-1 {
  display: flex;
  align-items: center;
}
.panel-footer-1 .footer-top__block-1 .logo img {
  display: block;
}
.panel-footer-1 .footer-top__block-2 {
  display: flex;
  flex-grow: 1;
}
.panel-footer-1 .footer-top__block-2 .footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-grow: 1;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1440px) {
  .panel-footer-1 .footer-top__block-2 .footer-menu {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-2 .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.panel-footer-1 .footer-top__block-2 .footer-menu.empty {
  display: none;
}
.panel-footer-1 .footer-top__block-2 .footer-menu a {
  display: block;
  padding: 0 10px;
  color: var(--common--basic-color-50);
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-2 .footer-menu a {
    color: var(--common--basic-color);
  }
}
.panel-footer-1 .footer-top__block-2 .footer-menu .active a {
  color: var(--common--basic-color);
}
.panel-footer-1 .footer-top__block-3 .socials {
  display: flex;
  gap: 12px;
  flex-shrink: 1;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials {
    flex-direction: column;
  }
}
.panel-footer-1 .footer-top__block-3 .socials .item {
  width: 48px;
  height: 48px;
  background-color: var(--common--gray-background-color);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 12px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials .item {
    background-color: var(--common--basic-white);
  }
}
.panel-footer-1 .footer-top__block-3 .socials .item.telegram {
  background-image: url(/wp-content/themes/api/assets/images/telegram-icon.svg);
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials .item.telegram {
    background-image: url(/wp-content/themes/api/assets/images/telegram-icon-mobile.svg);
  }
}
.panel-footer-1 .footer-top__block-3 .socials .item.max {
  background-image: url(/wp-content/themes/api/assets/images/max-icon.svg);
  background-size: 25px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials .item.max {
    background-image: url(/wp-content/themes/api/assets/images/max-icon-mobile.svg);
  }
}
.panel-footer-1 .footer-top__block-3 .socials .item.email {
  background-image: url(/wp-content/themes/api/assets/images/email-icon.svg);
  font-size: 0;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .footer-top__block-3 .socials .item.email {
    background-image: url(/wp-content/themes/api/assets/images/email-icon-mobile.svg);
  }
}
.panel-footer-1 .feedback {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.panel-footer-1 .feedback-title {
  text-align: left;
  margin-bottom: 12px;
}
@media screen and (max-width: 1260px) {
  .panel-footer-1 .feedback-title {
    font-size: 32px;
    margin-bottom: 0;
  }
}
.panel-footer-1 .feedback-text {
  text-align: left;
  margin-bottom: 0;
}
.panel-footer-1 .feedback-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel-footer-1 .feedback-fields-row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback-fields-row > * {
    width: 100%;
  }
}
@media screen and (max-width: 428px) {
  .panel-footer-1 .feedback-fields-row p {
    width: 100%;
  }
}
.panel-footer-1 .feedback-fields-row label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.panel-footer-1 .feedback-fields-row [type=text],
.panel-footer-1 .feedback-fields-row [type=email] {
  background: var(--common--gray-background-color);
  width: 100%;
  border-radius: 12px;
  border: none;
  outline: none;
  padding: 13px 35px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback-fields-row [type=text],
  .panel-footer-1 .feedback-fields-row [type=email] {
    background: var(--common--basic-white);
    padding: 12px 18px;
  }
}
.panel-footer-1 .feedback-fields-row [type=submit] {
  border: 0;
  margin-top: 4px;
}
@media screen and (max-width: 428px) {
  .panel-footer-1 .feedback-fields-row [type=submit] {
    width: 100%;
  }
}
.panel-footer-1 .feedback-fields-row [name=feedback-offer] {
  position: relative;
  top: 5px;
  left: 5px;
  cursor: pointer;
}
.panel-footer-1 .feedback-fields-row [name=feedback-offer]:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 24px;
  height: 24px;
  background: #EEF1F9;
  background: var(--common--basic-white);
  border: 1px solid var(--common--basic-color-50);
  border-radius: 5px;
}
.panel-footer-1 .feedback-fields-row [name=feedback-offer]:checked:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: -5px;
  left: -5px;
  background-image: url(/wp-content/themes/api/assets/images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.panel-footer-1 .feedback-fields-row .feedback-offer-text {
  color: var(--common--basic-color-50);
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
  margin: 2px 0 0 17px;
}
.panel-footer-1 .feedback-fields-row .feedback-offer-text a {
  color: var(--common--basic-color-50);
  font-size: 10px;
  line-height: 120%;
}
.panel-footer-1 .feedback-fields-row .wpcf7-list-item {
  margin: 0;
}
.panel-footer-1 .feedback-fields-label {
  display: none;
}
.panel-footer-1 .feedback > :nth-child(1) {
  margin-left: 72px;
  min-width: 45%;
}
@media screen and (max-width: 1440px) {
  .panel-footer-1 .feedback > :nth-child(1) {
    margin: 0;
  }
}
.panel-footer-1 .feedback > :nth-child(1) .image {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback > :nth-child(1) .image {
    display: none;
  }
}
.panel-footer-1 .feedback > :nth-child(1) .image img {
  display: inline-block;
  margin-top: 25px;
}
@media screen and (max-width: 1260px) {
  .panel-footer-1 .feedback > :nth-child(1) .image img {
    margin-top: 18px;
    width: 300px;
    max-width: 100%;
  }
}
.panel-footer-1 .feedback > :nth-child(2) {
  max-width: 584px;
}
@media screen and (max-width: 768px) {
  .panel-footer-1 .feedback > :nth-child(2) {
    max-width: unset;
  }
}

.panel-footer-2 {
  background: var(--common--gray-background-color);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .panel-footer-2 {
    background: none;
    padding: 0 16px;
  }
}
.panel-footer-2 a {
  color: inherit;
}
.panel-footer-2__top {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .panel-footer-2__top {
    flex-direction: column;
  }
}
.panel-footer-2__bottom {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  text-align: center;
}
.panel-footer-2 .footer-left {
  min-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .panel-footer-2 .footer-left {
    color: var(--common--basic-color-50);
  }
}
@media screen and (max-width: 428px) {
  .panel-footer-2 .footer-left {
    font-size: 12px;
    line-height: normal;
  }
}
.panel-footer-2 .footer-right {
  max-width: 584px;
  flex-grow: 1;
}
@media screen and (max-width: 1440px) {
  .panel-footer-2 .footer-right {
    margin: 0;
  }
}
@media screen and (max-width: 1240px) {
  .panel-footer-2 .footer-right {
    max-width: unset;
    justify-content: flex-end;
  }
}
.panel-footer-2 .footer-right .supported_by__items {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1240px) {
  .panel-footer-2 .footer-right .supported_by__items {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .panel-footer-2 .footer-right .supported_by__items {
    justify-content: flex-start;
  }
}
.panel-footer-2 .footer-right .supported_by__items.count-2 .supported_by__item {
  width: 50%;
}
.panel-footer-2 .footer-right .supported_by__item {
  display: flex;
}
.panel-footer-2 .footer-right .supported_by__item-left {
  width: 120px;
}
.panel-footer-2 .footer-right .supported_by__item-left img {
  width: 100%;
  border-radius: 25px;
}
.panel-footer-2 .footer-right .supported_by__item-right {
  padding-left: 15px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.panel-footer-2 .footer-right .supported_by__item-label {
  font-size: 10px;
  line-height: 14px;
  color: var(--common--basic-color);
}
.panel-footer-2 .footer-right .supported_by__item-title {
  font-weight: 600;
  line-height: 22px;
  color: var(--common--basic-color);
}

.wpcf7-response-output {
  border-radius: 12px;
}

.ug_overflow_y_scroll.ps--active-y {
  padding-right: 28px;
}
.ug_overflow_y_scroll .ps__rail-y {
  width: 8px;
}
.ug_overflow_y_scroll .ps__thumb-y {
  width: 100% !important;
  background: var(--common--basic-color-50);
  border-radius: 12px;
}

textarea::-webkit-scrollbar {
  width: 8px;
}
textarea::-webkit-scrollbar-button {
  display: none;
}
textarea::-webkit-scrollbar-track {
  background-color: transparent;
}
textarea::-webkit-scrollbar-thumb {
  background: var(--common--basic-color-50);
  border-radius: 12px;
}

.ug_h_100_keep {
  position: relative;
}
.ug_h_100_keep > div {
  width: 100%;
  max-height: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lbox_overlay {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
  overflow-x: hidden;
}
.lbox_overlay .lbox_container {
  background-color: #fff;
  border-radius: 22px;
  position: absolute;
  top: 15vh;
  left: 20vw;
  right: 20vw;
  padding: 35px 50px;
}
.lbox_overlay .lbox_container .lbox_close {
  display: block;
  position: absolute;
  height: 24px;
  width: 24px;
  background-image: url("/wp-content/plugins/u-generator/assets/images/close_icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  top: 24px;
  right: 24px;
}
.lbox_overlay .lbox_container .lbox_content img {
  max-width: 100%;
}

#tour {
  display: block;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
#tour .tour-content {
  background-color: #fff;
  border-radius: 22px;
  position: absolute;
  padding: 30px;
  z-index: 1;
}
#tour .tour-content p {
  display: none;
  margin-bottom: 15px;
}
#tour .tour-content .tour_footer {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
#tour .tour-content .tour_footer .ug_btn, #tour .tour-content .tour_footer .ui-dialog-buttonset .ui-button, .ui-dialog-buttonset #tour .tour-content .tour_footer .ui-button {
  padding: 10px 15px;
}
#tour .tour-content .tour_footer .skip {
  color: var(--common--basic-color);
  right: 0;
  bottom: 0;
  position: absolute;
}
#tour .hole {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}
#tour.step1 .tour-content {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 600px;
}
#tour.step2 .tour-content {
  width: 600px;
  top: 200px;
  left: 475px;
}
#tour.step2 .hole {
  top: 197px;
  left: 192px;
  width: 210px;
  height: 85px;
}
#tour.step3 .tour-content {
  width: 600px;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}
#tour.step3 .hole {
  top: 318px;
  left: 322px;
  width: 785px;
  height: 60px;
}
#tour.step4 .tour-content {
  width: 500px;
  top: 150px;
  left: 600px;
}
#tour.step4 .hole {
  top: 287px;
  left: 180px;
  width: 181px;
  height: 30px;
}

@media screen and (max-width: 768px) {
  .lbox_overlay .lbox_container {
    top: 10vh;
    left: 5vw;
    right: 5vw;
    padding: 20px;
  }
  .cabinet .cabinet-body #tour .hole {
    width: 0;
    height: 0;
  }
  .cabinet .cabinet-body #tour .tour-content {
    min-width: auto;
    transform: none;
    left: 15px;
    right: 15px;
    top: 70px;
    padding-bottom: 50px;
    width: auto;
  }
  .cabinet .cabinet-body #tour .tour-content .tour_footer .skip {
    bottom: -35px;
  }
}
.work-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  margin-bottom: 30px;
}
.work-row:last-child {
  margin-bottom: 0;
}
.work-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.work-container-empty {
  width: 100%;
}
.work-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 34px 30px 30px;
}
.work-panel h2,
.work-panel h3 {
  display: flex;
  gap: 15px;
  font-weight: 600;
}
.work-panel h3 {
  justify-content: space-between;
}
.work-panel h3 a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
  color: var(--common--basic-color);
}
.work-panel h3 a svg path {
  fill: var(--common--basic-color);
}
.work-title {
  font-weight: 600;
  margin-left: 14px;
  margin-bottom: 2px;
}
.work-title-small {
  margin-bottom: -9px;
}
.work-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 14px;
}
.work-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 21px 30px;
}
.work-fields-2 .work-field {
  width: calc(50% - 15px);
}
.work-fields-1-3 > div:nth-child(1) {
  width: calc(33.3333333333% - 15px);
}
.work-fields-1-3 > div:nth-child(2) {
  width: calc(66.6666666667% - 15px);
  flex-direction: column;
}
.work-fields-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.work-field {
  position: relative;
  width: 100%;
  min-height: 24px;
}
.work-field label {
  display: flex;
  flex-direction: column;
}
.work-field label.check {
  flex-direction: row;
  justify-content: space-between;
  width: calc(100% - 39px);
  position: relative;
  height: 24px;
}
.work-field label.check span {
  margin-left: 14px;
  margin-bottom: 5px;
}
.work-field label.check input[type=checkbox] {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.work-field label.check input[type=checkbox] + span:after {
  content: "";
  display: block;
  width: 39px;
  height: 24px;
  background-image: url("/wp-content/plugins/u-generator/assets/images/checkbox.svg");
  cursor: pointer;
}
.work-field label.check input[type=checkbox]:checked + span:after {
  background-image: url("/wp-content/plugins/u-generator/assets/images/checkbox-active.svg");
}
.work-field label.check-arrow {
  flex-direction: row-reverse;
  justify-content: left;
  align-items: center;
  position: relative;
  column-gap: 12px;
}
.work-field label.check-arrow span {
  margin-left: 14px;
  margin-bottom: 0;
}
.work-field label.check-arrow .checkbox {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.work-field label.check-arrow input[type=checkbox] {
  width: 0;
  height: 0;
  cursor: pointer;
}
.work-field label.check-arrow input[type=checkbox] + span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--common--basic-color-50);
  border-radius: 5px;
  overflow: hidden;
}
.work-field label.check-arrow input[type=checkbox]:checked + span {
  background-image: url("/wp-content/plugins/u-generator/assets/images/checkbox-arrow.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px;
}
.work-field label.radio {
  display: flex;
  gap: 15px;
  cursor: pointer;
}
.work-field label.radio input[type=radio] {
  display: none;
}
.work-field label.radio input[type=radio] + span {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/plugins/u-generator/assets/images/radio.svg");
}
.work-field label.radio input[type=radio]:checked + span {
  background-image: url("/wp-content/plugins/u-generator/assets/images/radio-active.svg");
}
.work-field label.file {
  position: relative;
  height: 100%;
}
.work-field label.file .file-view.load {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--common--basic-white);
}
.work-field label.file .file-view.load img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.work-field label.file .file-view.load:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("/wp-content/plugins/u-generator/assets/images/remove-icon.svg");
}
.work-field label span {
  color: var(--common--basic-color);
  margin-left: 24px;
  margin-bottom: 8px;
}
.work-field label input[type=text],
.work-field label input[type=number],
.work-field label input[type=email],
.work-field label input[type=password],
.work-field label textarea,
.work-field label .ug_pseudo-select-element > div,
.work-field label select {
  background: var(--common--basic-white);
  padding: 13px 35px;
  outline: none;
}
.work-field label textarea {
  height: 141px;
  resize: none;
}
.work-table {
  border-spacing: 0;
}
.work-table thead thead th,
.work-table thead tbody td {
  padding: 13px 10px 13px 60px;
}
.work-table thead th {
  text-align: left;
  color: var(--common--gray-light-color);
}
.work-table thead tr:nth-child(odd) {
  background: var(--common--gray-background-color);
}
.work-table thead tr:nth-child(odd) td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.work-table thead tr:nth-child(odd) td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

@media screen and (max-width: 768px) {
  .work-row {
    gap: 0;
    display: block;
  }
}
.form_v2 .form_v2-row .settings-fields .settings-field label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: rgba(11, 45, 135, 0.5);
}
.form_v2 .form_v2-row .settings-fields .settings-field label input, .form_v2 .form_v2-row .settings-fields .settings-field label select {
  border-radius: 12px;
  line-height: 22px;
  color: #0b2d87;
  font-size: 14px;
  font-weight: bold;
}
.form_v2 .form_v2-row .settings-fields .settings-field label input::placeholder, .form_v2 .form_v2-row .settings-fields .settings-field label select::placeholder {
  color: rgb(154.2123287671, 179.595890411, 246.7876712329);
}
.form_v2 .form_v2-row .settings-fields .settings-field label input:disabled, .form_v2 .form_v2-row .settings-fields .settings-field label select:disabled {
  color: #757575;
}
.form_v2 .form_v2-row .settings-fields .settings-field label input:disabled::placeholder, .form_v2 .form_v2-row .settings-fields .settings-field label select:disabled::placeholder {
  color: #a8a8a8;
}
.form_v2 .form_v2-row .settings-fields .settings-field label input.yes_back, .form_v2 .form_v2-row .settings-fields .settings-field label select.yes_back {
  background: #fff;
  padding: 7px 20px;
}
.form_v2 .form_v2-row .settings-fields .settings-field label > span {
  color: rgba(11, 45, 135, 0.5);
  font-size: 12px;
  margin-left: 0;
  margin-bottom: 0;
  width: 75px;
  line-height: 16px;
}
.form_v2 .form_v2-row .settings-fields .settings-field label > span.value {
  color: #757575;
  font-weight: 500;
  padding: 0 18px;
  font-size: 14px;
}
.form_v2 .form_v2-row .settings-fields .settings-field label > span .input-info {
  display: inline-block;
  position: absolute;
  top: -5px;
  right: 5px;
  width: 24px;
  height: 24px;
  font-size: 14px;
  color: rgb(11, 45, 135);
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  padding: 4px;
}
.form_v2 .form_v2-row .settings-fields .settings-field label > span .input-info:hover .notification_block {
  display: block;
  right: 0;
  color: rgb(11, 45, 135);
}
.form_v2 .form_v2-row .settings-fields .settings-field .buttons-after {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}
.form_v2 .form_v2-row .settings-fields .settings-field .buttons-after a {
  padding: 5px 25px 2px;
  border-radius: 12px;
  border: 1px solid rgb(0, 54, 233);
  text-decoration: none;
  font-size: 12px;
  margin-left: -7px;
}
.form_v2 .form_v2-row .settings-fields .settings-field .margin-form {
  margin-left: 60px;
}
.form_v2 .form_v2-row .settings-fields .settings-button {
  border-bottom: 0;
}
.form_v2 .form_v2-row.block_v3 .settings-fields .settings-field label input {
  border-radius: 12px;
  background: #fff;
  padding: 7px 20px;
  width: 80%;
}
.form_v2 .form_v2-row.block_v3 .settings-fields .settings-field label input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.form_v2 .form_v2-row.block_v3 .settings-fields .settings-field label input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  line-height: 20px;
  cursor: pointer;
  width: 100%;
}
.form_v2 .form_v2-row.block_v3 .settings-fields .settings-field label input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
  border-radius: 2px;
}
.form_v2 .form_v2-row.block_v3 .settings-fields .settings-field.field_check {
  display: flex;
  align-items: center;
}

.settings-field.field_check.field_check2 input[type=checkbox]:checked, .settings-field.field_check.field_check2 input[type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.settings-field.field_check.field_check2 input[type=checkbox]:checked + label:before, .settings-field.field_check.field_check2 input[type=checkbox]:not(:checked) + label:before {
  content: "";
  border: 1px solid #d2d2d2;
  left: 0px;
  top: 0px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  position: absolute;
  background: #fff;
}
.settings-field.field_check.field_check2 input[type=checkbox]:checked + label:after, .settings-field.field_check.field_check2 input[type=checkbox]:not(:checked) + label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.settings-field.field_check.field_check2 input[type=checkbox]:checked + label:after {
  left: 3px;
  top: 4px;
  width: 10px;
  height: 5px;
  border-radius: 1px;
  border-left: 4px solid rgb(52, 168, 83);
  border-bottom: 4px solid rgb(52, 168, 83);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.settings-field.field_check.field_check2 input[type=checkbox]:checked:disabled + label:after {
  border-left: 4px solid #a8a8a8;
  border-bottom: 4px solid #a8a8a8;
}

.checkbox3 input[type=radio]:checked + label:after {
  content: "";
  background: rgb(31, 214, 148);
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 3px;
  bottom: 3px;
  border-radius: 10px;
}
.checkbox3 input[type=radio]:checked:disabled + label:after {
  background: #a8a8a8;
}

.form_v2-row .settings-field.field_check {
  position: relative;
}
.form_v2-row .settings-field.field_check label {
  margin-left: 30px;
}

.accounts-slider .slick-slide {
  display: block;
  margin: 15px;
}
.accounts-slider .slick-slide .item {
  cursor: pointer;
  padding: 15px;
  border-radius: 12px;
  width: 232px;
  height: 72px;
  background: rgb(255, 255, 255);
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.accounts-slider .slick-slide .item.active {
  border: 2px solid rgb(31, 214, 148);
}
.accounts-slider .slick-slide .item.disabled {
  filter: grayscale(1);
}
.accounts-slider .slick-arrow {
  cursor: pointer;
  border: none;
  font-size: 0;
  background: url(/wp-content/plugins/u-generator/assets/images/arrow_active.svg);
  width: 38px;
  height: 38px;
  position: absolute;
  left: -20px;
  top: 50%;
  margin-top: -19px;
  transform: rotate(180deg);
}
.accounts-slider .slick-arrow.slick-next {
  transform: none;
  left: auto;
  right: -20px;
}

.ug_calendar_widget {
  position: absolute;
  background-color: var(--common--basic-white);
  top: 0;
  left: 0;
  display: flex;
  gap: 74px;
  min-width: 100%;
  min-height: 100px;
  padding: 16px 16px;
  z-index: 1;
  cursor: default;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s;
}
.ug_calendar_widget__wrapper {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.ug_calendar_widget__buttons {
  display: flex;
  justify-content: flex-end;
}
.ug_calendar_widget__self .ui-datepicker {
  width: auto !important;
  display: flex !important;
  gap: 28px;
}
.ug_calendar_widget__self .ui-datepicker-header {
  display: flex;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 9px;
  color: var(--common--basic-color-50);
}
.ug_calendar_widget__self .ui-datepicker-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ug_calendar_widget__self .ui-datepicker-calendar {
  text-align: center;
}
.ug_calendar_widget__self .ui-datepicker-calendar thead th span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: var(--common--basic-color-50);
  width: 36px;
}
.ug_calendar_widget__self .ui-datepicker-calendar tbody td > * {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--common--basic-color);
  height: 27px;
  border-radius: 4px;
  margin: 1px;
}
.ug_calendar_widget__self .ui-datepicker-calendar tbody td.ui-datepicker-other-month > *, .ug_calendar_widget__self .ui-datepicker-calendar tbody td.ui-datepicker-unselectable > * {
  color: var(--common--basic-color-50);
}
.ug_calendar_widget__self .ui-datepicker-calendar tbody td.dp-highlight:not(.ui-datepicker-other-month) > * {
  background-color: var(--common--basic-color);
  color: var(--common--basic-white);
}
.ug_calendar_widget__self .ui-datepicker-group-last .ui-datepicker-header {
  flex-direction: row-reverse;
}
.ug_calendar_widget__self .ui-datepicker-prev {
  cursor: pointer;
  display: block;
  width: 7px;
  height: 13px;
  background: url("/wp-content/plugins/u-generator/assets/images/user-interface/datepicker-arrow-left.svg") 50% 50% no-repeat;
}
.ug_calendar_widget__self .ui-datepicker-prev span {
  display: none;
}
.ug_calendar_widget__self .ui-datepicker-next {
  cursor: pointer;
  display: block;
  width: 7px;
  height: 13px;
  background: url("/wp-content/plugins/u-generator/assets/images/user-interface/datepicker-arrow-right.svg") 50% 50% no-repeat;
}
.ug_calendar_widget__self .ui-datepicker-next span {
  display: none;
}
.ug_calendar_widget__ranges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.ug_calendar_widget__ranges > div {
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.ug_calendar_widget__ranges > div:hover, .ug_calendar_widget__ranges > div.active {
  background-color: var(--common--basic-color);
  color: var(--common--basic-white);
}

.modal-form {
  display: flex;
}
.modal-form.center {
  justify-content: center;
}
.modal-form h3 {
  font-size: 48px;
  line-height: 1.2;
}
.modal-form p {
  margin-bottom: 15px;
}
.modal-form input, .modal-form select {
  padding: 15px 24px;
  border-radius: 12px;
  background-color: #E5EAF8;
  border: 0;
  width: 100%;
  margin-bottom: 15px;
}
.modal-form input::placeholder, .modal-form select::placeholder {
  color: var(--common--basic-color-50);
}
.modal-form .ug_btn, .modal-form .ui-dialog-buttonset .ui-button, .ui-dialog-buttonset .modal-form .ui-button {
  border: 0;
  width: 100%;
}
.modal-form .settings-field {
  margin-bottom: 10px;
}
.modal-form .error {
  display: none;
  color: var(--common--danger);
}

.referral-form {
  margin-bottom: -50px;
}
.referral-form img {
  max-width: 350px;
}

@media screen and (max-width: 768px) {
  .modal-form h3 {
    font-size: 28px;
  }
  .referral-form {
    margin-bottom: 0;
  }
}
.auth {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.auth .header {
  display: flex;
  align-items: center;
  padding: 0 120px;
  height: 78px;
  background-color: var(--common--basic-white);
}
@media screen and (max-width: 768px) {
  .auth .header {
    padding: 0 32px;
  }
}
.auth .header .logo img {
  display: block;
}
.auth-login .work-field label.check {
  justify-content: flex-start;
  gap: 15px;
  white-space: nowrap;
}
.auth-login .work-field label.check span {
  margin-left: 0;
}
.auth-signup {
  display: none;
}
.auth-signup.auth-section .work-field label.check-arrow span {
  font-size: 10px;
  color: #a9afc3;
  letter-spacing: -0.2px;
}
.auth-signup.auth-section .work-field label.check-arrow span a {
  color: inherit;
}
.auth-signup.auth-section .work-field label.check-arrow span i {
  color: var(--common--blue);
  font-style: normal;
}
.auth-message {
  color: var(--common--danger);
}
.auth-message:empty {
  display: none;
}
.auth-section {
  position: relative;
  flex-grow: 1;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--common--basic-white) url("/wp-content/plugins/u-generator/assets/images/auth/background-image.png") 50% 50% no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .auth-section {
    padding: 0;
    background-image: none;
  }
}
.auth-section:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #071C54;
  opacity: 0.7;
  content: "";
}
@media screen and (max-width: 768px) {
  .auth-section:before {
    display: none;
  }
}
.auth-section .work-panel {
  max-width: 440px;
  margin: 0 auto;
  padding: 40px 30px;
  row-gap: 16px;
}
@media screen and (max-width: 768px) {
  .auth-section .work-panel {
    padding: 0 16px 32px;
  }
}
.auth-section .work-fields {
  row-gap: 8px;
}
.auth-section .work-field label span {
  margin-left: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
}
.auth-section .work-field label [type=text],
.auth-section .work-field label [type=number],
.auth-section .work-field label [type=email],
.auth-section .work-field label [type=password],
.auth-section .work-field label textarea,
.auth-section .work-field label select {
  background-color: var(--common--gray-background-color);
  padding: 15px 24px;
  font-size: 12px;
  line-height: 130%;
}
.auth-section__title {
  font-size: 36px;
  text-align: center;
  line-height: normal;
  margin-left: 0;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .auth-section__title {
    font-size: 24px;
  }
}
.auth-section__submit > * {
  width: 100%;
}
.auth-section__buttons-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.auth-section__buttons-bottom > * {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: var(--common--basic-color);
}
.auth-section__buttons-bottom > *:after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--common--basic-color);
  content: "";
}
.auth-section__buttons-bottom .signup {
  font-weight: 800;
}
.auth-section__signup-success {
  display: none;
}
.auth-section__signup-success .image {
  margin-bottom: 16px;
  text-align: center;
}
.auth-section__signup-success .image img {
  display: inline-block;
  width: 100px;
}
.auth-section__signup-success .message {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .auth-section__signup-success .message {
    font-size: 18px;
  }
}
.auth-section__signup-success .center {
  text-align: center;
}
.auth-section__social {
  display: flex;
  column-gap: 4px;
}
.auth-section__social--button {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  border: 1px solid var(--common--gray-background-color);
  border-radius: 12px;
  text-decoration: none;
}
.auth-section__social--button .icon {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.auth-section__social--button .label {
  font-weight: 700;
  font-size: 14px;
  color: var(--common--blue);
  line-height: normal;
}
.auth-section__social--button.button-social-yandex .icon {
  background-image: url("/wp-content/plugins/u-generator/assets/images/auth/yandex-icon.svg");
}
.auth-section__social--button.button-social-google .icon {
  background-image: url("/wp-content/plugins/u-generator/assets/images/auth/google-icon.svg");
}
.auth-section__social--button.button-social-vk .icon {
  background-image: url("/wp-content/plugins/u-generator/assets/images/auth/vk-icon.svg");
}

.support.work-row {
  height: 100%;
}
.support .work-title {
  font-family: Montserrat, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.support .work-container {
  height: 100%;
}
.support .work-container:first-child {
  width: 400px;
  flex-shrink: 0;
}
.support .work-container:first-child .work-title {
  margin-left: 0;
  margin-bottom: 12px;
}
.support .work-container:last-child .work-title {
  margin-left: 0;
  margin-bottom: 18px;
}
.support .work-panel label span {
  color: var(--common--basic-color);
  font-family: Montserrat, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  margin-left: 0;
  margin-bottom: 12px;
}
.support .work-panel .ug_btn, .support .work-panel .ui-dialog-buttonset .ui-button, .ui-dialog-buttonset .support .work-panel .ui-button {
  font-size: 14px;
  padding: 0 18px;
}
.support .work-fields-container.message .work-fields:nth-child(1) {
  flex-grow: 1;
  flex-direction: column;
  background: var(--common--basic-white);
  overflow: hidden;
  gap: 0;
}
.support .work-fields-container.message .work-field.message .enter {
  padding: 5px 10px;
}
.support .work-fields-container.message .work-field.message .enter textarea {
  border-radius: 0;
  height: 1.6em;
  padding: 0;
  max-height: 200px;
}
.support .work-fields-container.message .work-field.submit {
  display: flex;
  justify-content: flex-end;
}
.support .work-fields-container.message .file-input .file-preview {
  border: none;
  border-radius: unset;
  padding: 0;
  width: 100%;
  margin: 0;
}
.support .work-fields-container.message .file-input .file-drop-zone {
  border: none;
  min-height: 0;
  border-radius: unset;
  margin: 0;
  padding: 0;
}
.support .work-fields-container.message .file-input .file-drop-zone-title {
  display: none;
}
.support .work-fields-container.message .file-input .file-preview-thumbnails {
  display: flex;
  flex-wrap: wrap;
}
.support .work-fields-container.message .file-input .file-preview-thumbnails .file-preview-frame {
  display: flex;
  gap: 20px;
  float: none;
  margin: 0;
  border: none;
  box-shadow: none;
  background: #f3f3f3;
  border-radius: 2px;
  padding: 4px 6px;
}
.support .work-fields-container.message .file-input .file-preview-thumbnails .file-preview-frame .file-thumbnail-caption {
  text-align: left;
  max-width: 400px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.support .work-fields-container.message .file-input .file-preview-thumbnails .file-preview-frame .file-thumbnail-actions {
  display: flex;
  align-items: center;
}
.support .work-fields-container.message .file-input .file-preview-thumbnails .file-preview-frame .file-footer-buttons {
  display: flex;
  align-items: center;
}
.support .work-fields-container.message .file-input .file-preview-thumbnails .file-preview-frame .kv-file-remove {
  cursor: pointer;
  border: none;
  width: 12px;
  height: 12px;
  background: url("/wp-content/plugins/u-generator/assets/images/user-interface/detach-file-icon.svg") 50% 50% no-repeat;
}
.support .work-fields-container.message .file-input-browse {
  cursor: pointer;
}
.support .work-fields-container.message .file-input-browse span {
  display: flex;
  margin: 0;
  height: 100%;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: inherit;
}
.support .work-fields-container.message .file-input-browse span :nth-child(2) {
  color: var(--common--gray-background-color);
}
.support-filters {
  display: flex;
  position: relative;
  gap: 24px;
  height: 28px;
  margin-bottom: 10px;
}
.support-filters-search {
  position: relative;
  display: flex;
  flex-grow: 1;
  padding-left: 45px;
  padding-right: 40px;
  background-color: var(--common--basic-white);
  background-image: url("/wp-content/plugins/u-generator/assets/images/user-interface/filter-search-icon.svg");
  background-position: 17px 52%;
  background-repeat: no-repeat;
}
.support-filters-search input {
  display: flex;
  width: 100%;
  border: none;
  outline: unset;
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
}
.support-filters-search span {
  margin: 0 !important;
}
.support-filters-search__tools {
  display: block;
  position: absolute;
  top: 0;
  right: 6px;
  height: 100%;
  width: 28px;
}
.support-filters-search__tools--clear {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  background: url("/wp-content/plugins/u-generator/assets/images/user-interface/detach-file-icon.svg") 50% 50% no-repeat;
}
.support-filters-search.loading .support-filters-search__tools {
  background-image: url("/wp-content/themes/api/assets/images/preloader/5.gif");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
}
.support-filters-search.loading .support-filters-search__tools--clear {
  display: none;
}
.support-filters-button {
  cursor: pointer;
  width: 50px;
  flex-shrink: 0;
  background-color: var(--common--basic-white);
  background-image: url("/wp-content/plugins/u-generator/assets/images/user-interface/filter-button-icon.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.support-filters-button:hover {
  background-color: var(--common--basic-color-50);
  background-image: url("/wp-content/plugins/u-generator/assets/images/user-interface/filter-button-icon-hovered.svg");
  color: var(--common--basic-white);
}
.support-filters-dropdown {
  background-color: var(--common--basic-white);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 100px;
  padding: 30px 24px 26px;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.2s;
}
.support-filters-dropdown.collapsed {
  z-index: unset;
  opacity: 0;
  pointer-events: none;
}
.support-filters-dropdown__filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.support-filters-dropdown__filters .ug_pseudo-select-element > div {
  border-radius: 24px;
  background-color: var(--common--gray-background-color);
}
.support-filters-dropdown__filters .ug_pseudo-select-element__option {
  border-color: var(--common--basic-white);
  color: var(--common--basic-color-50);
  font-family: Montserrat, serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.support-filters-dropdown__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.support-filters-dropdown__buttons--statuses {
  display: flex;
  justify-content: space-between;
  width: 160px;
}
.support-filters-dropdown__buttons--statuses > div {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--common--gray-background-color);
  border-radius: 18px;
  padding: 0 8px;
  color: var(--common--basic-color-50);
  font-size: 12px;
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.support-filters-dropdown__buttons--statuses > div.closed:hover, .support-filters-dropdown__buttons--statuses > div.closed.active {
  background-color: var(--common--basic-color-50);
  color: var(--common--basic-white);
}
.support-filters-dropdown__buttons--statuses > div.new:hover, .support-filters-dropdown__buttons--statuses > div.new.active {
  background-color: var(--common--green);
  color: var(--common--basic-color);
}
.support-filters-dropdown__buttons--clear {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--common--basic-color-50);
  border-radius: 72px;
  padding: 0 18px;
  color: var(--common--basic-color-50);
  font-size: 12px;
  background-color: var(--common--basic-white);
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.support-filters-dropdown__buttons--clear:hover {
  background-color: var(--common--basic-color-50);
  color: var(--common--basic-white);
}
.support-filters-dropdown__apply {
  width: 100%;
}
.support-filters-dropdown__apply.inactive {
  background: var(--common--gray-background-color);
  pointer-events: none;
}
.support-filters-dropdown__filter {
  border-radius: 24px;
  background-color: var(--common--gray-background-color);
  cursor: pointer;
}
.support-filters-dropdown__filter.filter-dates,
.support-filters-dropdown__filter .ug_pseudo-select-element:before,
.support-filters-dropdown__filter .ug_pseudo-select-element > div {
  padding: 12px 24px;
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
}
.support-filters-dropdown__filter.filter-dates {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.support-filters-dropdown__filter.filter-dates.collapsed .ug_calendar_widget {
  opacity: 0;
  z-index: unset;
  pointer-events: none;
}
.support-filters-dropdown__filter.filter-dates.collapsed .ug_calendar_widget__buttons {
  display: none;
}
.support-filters-dropdown__filter.filter-dates .label {
  white-space: nowrap;
}
.support-filters-dropdown__filter.filter-dates .inputs {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.support-filters-dropdown__filter.filter-dates .inputs input {
  background: transparent;
  border: unset;
  width: 60px;
  font-size: inherit;
  outline: unset;
}
.support-items {
  display: flex;
  flex-grow: 1;
}
.support-items__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support-items__list.empty {
  justify-content: center;
  align-items: center;
  font-family: Montserrat, serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  color: var(--common--basic-color-50);
}
.support-items__item {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--common--basic-white);
  border: 3px solid transparent;
  padding: 11px;
}
.support-items__item--line1 {
  display: flex;
  gap: 24px;
  font-family: Montserrat, serif;
  font-size: 14px;
  font-weight: 700;
}
.support-items__item--line2 {
  display: flex;
}
.support-items__item--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 15px;
  bottom: 11px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  overflow: hidden;
}
.support-items__item--date {
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
}
.support-items__item--title {
  flex-grow: 1;
}
.support-items__item--author {
  flex-grow: 1;
}
.support-items__item--status {
  display: flex;
  width: 108px;
}
.support-items__item--status span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  border-radius: 18px;
  background-color: var(--common--basic-color-50);
  padding: 0 8px;
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--common--basic-white);
}
.support-items__item.current {
  border-color: var(--common--green);
}
.support-items__item.current .support-items__item--icon {
  background-color: var(--common--green);
}
.support-items__item.current .support-items__item--icon svg path {
  fill: var(--common--basic-white);
}
.support-items__item.status-new .support-items__item--status span {
  background-color: var(--common--green);
  color: var(--common--basic-color);
}
.support-items__item.status-in-progress .support-items__item--status span {
  background-color: var(--common--blue-gradient);
}
.support-items .ps--active-y {
  padding-right: 16px;
  width: calc(100% + 11px);
}
.support-new-request-button {
  margin-top: 18px;
}
.support-request-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 10px;
  font-family: Montserrat, serif;
  font-size: 16px;
  font-weight: 700;
}
.support-request-header--status span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  border-radius: 18px;
  background-color: var(--common--basic-color-50);
  padding: 0 8px;
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--common--basic-white);
}
.support-request-header--title {
  flex-grow: 1;
}
.support-request-header--date {
  align-self: flex-start;
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
}
.support-request-content {
  background-color: var(--common--basic-white);
  padding: 10px 18px;
  height: 100%;
  flex-grow: 1;
}
.support-request-content__messages {
  height: 100%;
}
.support-request-content__messages--list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.support-request-content__message {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.support-request-content__message--header {
  display: flex;
  align-items: center;
  gap: 32px;
}
.support-request-content__message--body {
  display: flex;
}
.support-request-content__message--name {
  flex-grow: 1;
  font-weight: 500;
}
.support-request-content__message--date {
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
}
.support-request-content__message--avatar {
  display: flex;
  flex-shrink: 0;
  width: 110px;
}
.support-request-content__message--avatar img {
  display: flex;
  width: 68px;
  height: 68px;
}
.support-request-content__message--text {
  font-size: 12px;
}
.support-request-content__message--files {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
}
.support-request-content__message--files .file {
  display: flex;
  gap: 20px;
  float: none;
  margin: 0;
  border: none;
  box-shadow: none;
  background: #f3f3f3;
  border-radius: 2px;
  padding: 4px 6px;
  text-decoration: none;
  color: inherit;
}
.support-request-content__message--files .file-caption {
  text-align: left;
  max-width: 400px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px;
  line-height: normal;
}
.support-request.status-new .support-request-header--status span {
  background-color: var(--common--green);
  color: var(--common--basic-color);
}
.support-request.status-in-progress .support-request-header--status span {
  background-color: var(--common--blue-gradient);
}
.support-request .work-fields-container.message, .support-request-new .work-fields-container.message {
  gap: 0;
  border-radius: 12px;
  margin-top: 15px;
  flex-direction: row;
  background-color: var(--common--basic-white);
  position: relative;
}
.support-request .work-fields-container.message.upload, .support-request-new .work-fields-container.message.upload {
  margin-bottom: 50px;
}
.support-request .work-fields-container.message .files, .support-request-new .work-fields-container.message .files {
  width: 40px;
  padding: 0 10px;
  position: static;
}
.support-request .work-fields-container.message .files .file, .support-request-new .work-fields-container.message .files .file {
  justify-content: center;
  position: static;
}
.support-request .work-fields-container.message .files .file .file-input, .support-request-new .work-fields-container.message .files .file .file-input {
  position: static;
}
.support-request .work-fields-container.message .files .file .file-input .file-preview, .support-request-new .work-fields-container.message .files .file .file-input .file-preview {
  position: static;
}
.support-request .work-fields-container.message .files .file .file-input .file-preview .kv-file-rotate, .support-request-new .work-fields-container.message .files .file .file-input .file-preview .kv-file-rotate {
  display: none;
}
.support-request .work-fields-container.message .submit, .support-request-new .work-fields-container.message .submit {
  width: auto;
  padding: 0 10px;
  align-items: center;
}
.support-request .work-fields-container.message .submit a, .support-request-new .work-fields-container.message .submit a {
  display: flex;
}
.support-request .work-fields-container.message .file-preview-thumbnails, .support-request-new .work-fields-container.message .file-preview-thumbnails {
  position: absolute;
  bottom: 0;
  transform: translateY(calc(100% + 5px));
  width: 100%;
  gap: 5px;
}

@media screen and (max-width: 768px) {
  .support.work-row {
    height: auto;
  }
  .support-request-content {
    height: 200px;
  }
  .support .work-container {
    height: auto;
    margin-bottom: 20px;
  }
  .support .work-container:first-child {
    width: 100%;
    height: 300px;
  }
  .support .support-request-new .work-fields {
    flex-direction: column;
  }
  .support .support-request-new .work-fields .work-field {
    width: 100%;
  }
}
.settings .settings-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.settings.form_v2 {
  height: 100%;
}
.settings.form_v2 .screen-title {
  margin-bottom: 32px;
}
.settings.form_v2 .form_v2-row {
  margin-bottom: 17px;
  background: rgb(229, 234, 248);
  padding: 42px 57px 39px;
  border-radius: 12px;
  width: 41%;
}
.settings.form_v2 .form_v2-row .settings-fields {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
}
.settings.form_v2 .form_v2-row .settings-fields .settings-field {
  width: 100%;
  border-bottom: 0.5px solid rgba(11, 45, 135, 0.2);
  position: relative;
}
.settings.form_v2 .form_v2-row .settings-fields .settings-field .timezone {
  cursor: pointer;
}
.settings.form_v2 .form_v2-row .settings-fields .settings-field #timezones {
  border-radius: 12px;
  position: absolute;
  top: -100px;
  background: #fff;
  padding: 15px;
  left: 150px;
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
  max-height: 250px;
  overflow-y: auto;
}
.settings.form_v2 .form_v2-row .settings-fields .settings-field #timezones.active {
  opacity: 1;
  top: 36px;
  z-index: 99;
}
.settings.form_v2 .form_v2-row .settings-fields .settings-field:last-child {
  border-bottom: 0;
}
.settings.form_v2 .form_v2-row .settings-fields .settings-field input {
  margin-right: 7px;
  font-family: Montserrat, serif;
  font-weight: 500;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings {
  display: flex;
  justify-content: space-between;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text {
  display: flex;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity_text {
  font-family: Montserrat;
  font-size: 8px;
  font-weight: 400;
  line-height: 8.8px;
  text-align: left;
  color: rgba(11, 45, 135, 0.5);
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block {
  position: relative;
  margin-right: 15px;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block:after {
  content: "мес";
  width: 30px;
  height: 20px;
  display: block;
  position: absolute;
  top: 7px;
  left: 28px;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-num {
  border-radius: 12px;
  border: 0;
  outline: none !important;
  padding: 10px 7px;
  margin-bottom: -4px;
  margin-top: -5px;
  width: 94px;
  -moz-appearance: textfield;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-num::-webkit-inner-spin-button, .settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-num::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-plus {
  position: absolute;
  color: #fff;
  border: 0;
  transform: rotate(180deg);
  width: 25px;
  height: 15px;
  background: none;
  right: 15px;
  top: 0;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-plus::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  border: 10px solid transparent;
  border-top: 10px solid rgb(229, 234, 248);
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-plus.act::after {
  border-top: 10px solid rgb(11, 45, 135);
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-minus {
  position: absolute;
  color: #fff;
  border: 0;
  width: 25px;
  height: 15px;
  background: none;
  right: 10px;
  top: 25px;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-minus::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  border: 10px solid transparent;
  border-top: 10px solid rgb(229, 234, 248);
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-minus.act::after {
  border-top: 10px solid rgb(11, 45, 135);
}
.settings.form_v2 .form_v2-row .settings-fields .settings-button {
  border-bottom: 0;
}
.settings.form_v2 .form_v2-row .settings-fields hr {
  border: 0.5px solid rgba(11, 45, 135, 0.2);
  margin-top: -14px;
  margin-bottom: 3px;
}
.settings.form_v2 .form_v2-row .settings-fields h4 {
  font-size: 13px;
  letter-spacing: 0.01em;
  margin-bottom: -12px;
}
.settings.form_v2 .form_v2-row.block_v3 .settings-fields .settings-field {
  width: 100%;
  border-bottom: 0;
}
.settings.form_v2 .form_v2-row.block_v3 .settings-fields h3 {
  font-size: 13px;
  letter-spacing: 0.03em;
}
.settings.form_v2 .form_v2-row.block_v3 .settings-fields.settings-button {
  margin-top: 29px;
}
.settings.form_v2 .form_v2-row.settings-fields-2 .settings-field:last-child {
  margin-top: -6px;
}

.mail_desc {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  margin-top: -30px;
  display: block;
  color: rgba(11, 45, 135, 0.5);
}

.left_name {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  text-align: left;
  color: rgba(11, 45, 135, 0.5);
  width: 140px;
  float: left;
  height: 100px;
}

@media screen and (max-width: 1440px) {
  .settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text {
    height: 45px;
  }
}
@media screen and (max-width: 768px) {
  .settings.form_v2 .form_v2-row .settings-fields .settings-field input {
    max-width: 155px;
  }
  .left_name {
    float: none;
    height: auto;
    margin-bottom: 10px;
  }
}
.projects {
  height: 100%;
}
.projects .notification.error {
  width: 80%;
  margin: 30px;
  padding: 22px 51px 22px 51px;
  background: rgb(255, 217, 217);
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: center;
  color: rgb(255, 0, 0);
  border-radius: 8px;
}
.projects .accounts-block {
  width: 100%;
  padding: 22px 51px 22px 51px;
  background: var(--common--gray-background-color);
  border-radius: 8px;
}
.projects .accounts-block h3 {
  font-size: 18px;
  font-weight: 700;
}
.projects .accounts-block p {
  font-size: 14px;
  font-weight: 500;
  color: var(--common--basic-color-50);
}
.projects .accounts-block .empty-projects-message {
  padding-top: 16px;
}
.projects .accounts-block .slick-slide img {
  height: 30px;
}
.projects-filters-wrapper {
  position: relative;
  display: flex;
  gap: 20px;
}
.projects-filters-dropdown {
  background-color: var(--common--basic-white);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 100px;
  padding: 30px 24px 26px;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.2s;
}
.projects-filters-dropdown.collapsed {
  z-index: unset;
  opacity: 0;
  pointer-events: none;
}
.projects-filters-dropdown__filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.projects-filters-dropdown__filters .ug_pseudo-select-element > div {
  border-radius: 24px;
  background-color: var(--common--gray-background-color);
}
.projects-filters-dropdown__filters .ug_pseudo-select-element__option {
  border-color: var(--common--basic-white);
  color: var(--common--basic-color-50);
  font-family: Montserrat, serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.projects-filters-dropdown__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.projects-filters-dropdown__buttons--statuses {
  display: flex;
  justify-content: space-between;
  width: 160px;
}
.projects-filters-dropdown__buttons--statuses > div {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--common--gray-background-color);
  border-radius: 18px;
  padding: 0 8px;
  color: var(--common--basic-color-50);
  font-size: 12px;
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.projects-filters-dropdown__buttons--statuses > div.closed:hover, .projects-filters-dropdown__buttons--statuses > div.closed.active {
  background-color: var(--common--basic-color-50);
  color: var(--common--basic-white);
}
.projects-filters-dropdown__buttons--statuses > div.new:hover, .projects-filters-dropdown__buttons--statuses > div.new.active {
  background-color: var(--common--green);
  color: var(--common--basic-color);
}
.projects-filters-dropdown__buttons--clear {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--common--basic-color-50);
  border-radius: 72px;
  padding: 0 18px;
  color: var(--common--basic-color-50);
  font-size: 12px;
  background-color: var(--common--basic-white);
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.projects-filters-dropdown__buttons--clear:hover {
  background-color: var(--common--basic-color-50);
  color: var(--common--basic-white);
}
.projects-filters-dropdown__apply {
  width: 100%;
}
.projects-filters-dropdown__apply.inactive {
  background: var(--common--gray-background-color);
  pointer-events: none;
}
.projects-filters-dropdown__filter {
  border-radius: 24px;
  background-color: var(--common--gray-background-color);
  cursor: pointer;
}
.projects-filters-dropdown__filter.filter-dates,
.projects-filters-dropdown__filter .ug_pseudo-select-element:before,
.projects-filters-dropdown__filter .ug_pseudo-select-element > div {
  padding: 12px 24px;
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
}
.projects-filters-dropdown__filter.filter-dates {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.projects-filters-dropdown__filter.filter-dates.collapsed .ug_calendar_widget {
  opacity: 0;
  z-index: unset;
  pointer-events: none;
}
.projects-filters-dropdown__filter.filter-dates.collapsed .ug_calendar_widget__buttons {
  display: none;
}
.projects-filters-dropdown__filter.filter-dates .label {
  white-space: nowrap;
}
.projects-filters-dropdown__filter.filter-dates .inputs {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.projects-filters-dropdown__filter.filter-dates .inputs input {
  background: transparent;
  border: unset;
  width: 60px;
  font-size: inherit;
  outline: unset;
}
.projects-filters-button {
  cursor: pointer;
  width: 109px;
  height: 28px;
  padding: 2px 16px;
  border-radius: 72px;
  align-items: center;
  justify-content: end;
  background: rgb(255, 255, 255);
  color: rgb(11, 45, 135);
  display: flex;
  position: relative;
}
.projects-filters-button:after {
  content: "";
  background: url(/wp-content/plugins/u-generator/assets/images/filter_icon.svg);
  width: 16px;
  height: 16px;
  position: absolute;
  left: 15px;
}
.projects-filters-clear {
  cursor: pointer;
  white-space: nowrap;
  padding: 2px 16px;
  border-radius: 72px;
  align-items: center;
  justify-content: end;
  background: var(--common--basic-white);
  color: var(--common--basic-color);
  display: flex;
  position: relative;
}
.projects .accounts-tools {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.projects .accounts-tools .accounts-link {
  width: auto;
  align-items: center;
  text-decoration: none;
}
.projects .accounts-tools .accounts-link .label {
  font-size: 16px;
  font-weight: bold;
  color: var(--common--blue);
}
.projects .accounts-tools .accounts-link .button {
  background: var(--common--blue-gradient);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}
.projects .accounts-tools .accounts-link:hover .button {
  color: #0036e9;
  background: none;
  border: 1px solid #0036e9;
}
.projects .project {
  border: 1px solid rgb(229, 234, 248);
  background: rgb(229, 234, 248);
  border-radius: 8px;
  padding: 25px 35px 10px;
}
.projects .project_row {
  display: flex;
}
.projects .project_row h4 {
  width: 50%;
  font-size: 18px;
  color: var(--common--basic-color);
}
.projects .project_row .info_pr a {
  text-decoration: none;
}
.projects .project_row .info_pr .label, .projects .project_row .info_pr .name {
  font-size: 12px;
  line-height: normal;
  color: var(--common--basic-color-50);
  display: block;
}
.projects .project_row .info_pr .name {
  color: var(--common--basic-color);
}
.projects .project_row .btn {
  width: 221px;
  height: 42px;
  display: block;
  padding: 0 18px;
  border-radius: 12px;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.94px;
  border: 1px solid rgb(0, 54, 233);
  text-decoration: none;
  text-align: center;
  transition: all 0.5s ease-out;
  color: rgb(255, 255, 255);
  background: linear-gradient(180deg, #3963EF 0%, #0036E9 100%);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.projects .project_row .crud {
  width: 35%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects .project_row.space-between {
  justify-content: space-between;
}
.projects .project hr {
  border: 1px solid rgb(255, 255, 255);
  margin: 10px 0;
}
.projects .project .add-project-link {
  width: auto;
  align-items: center;
  text-decoration: none;
}
.projects .project .add-project-link .label {
  font-size: 16px;
  font-weight: bold;
  color: var(--common--blue);
}
.projects .project .add-project-link .button {
  background: var(--common--blue-gradient);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}
.projects .project .add-project-link:hover .button {
  color: #0036e9;
  background: none;
  border: 1px solid #0036e9;
}

.notification_block {
  display: none;
  position: absolute;
  width: auto;
  height: auto;
  top: -33px;
  left: auto;
  padding: 10px 9px 10px 9px;
  gap: 10px;
  border-radius: 2px 0px 0px 0px;
  background: rgb(255, 255, 255);
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  text-align: left;
  color: rgb(11, 45, 135);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

a:hover .notification_block,
.dropdown-button:hover .notification_block {
  display: block;
}

.index-row {
  margin: 0 30px;
}
.index-row .index-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 70px;
  display: grid;
  width: 100%;
}
.index-row .index-container .index-panel {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  border: 1px solid rgba(11, 45, 135, 0.5);
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 0 0 30px 200px;
  max-height: 300px;
  overflow: hidden;
}
.index-row .index-container .index-panel img {
  margin: 0 35px;
  position: absolute;
  left: 15px;
}
.index-row .index-container .index-panel .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.index-row .index-container .index-panel .info h1, .index-row .index-container .index-panel .info h2 {
  font-family: Montserrat, serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 43.88px;
  text-align: left;
  color: rgb(11, 45, 135);
  margin: 25px 180px 10px 0;
}
.index-row .index-container .index-panel .info h2 {
  font-size: 24px;
  line-height: 29.6px;
}
.index-row .index-container .index-panel .info p {
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  margin: 0 180px 25px 0;
}
.index-row .index-container .index-panel .info a {
  width: 363px;
  height: 54px;
  display: block;
  padding: 16px 48px 16px 48px;
  border-radius: 12px;
  font-family: Montserrat, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.94px;
  border: 1px solid rgb(0, 54, 233);
  color: rgb(0, 54, 233);
  text-decoration: none;
  text-align: center;
  transition: all 0.5s ease-out;
}
.index-row .index-container .index-panel .info a:hover {
  color: rgb(255, 255, 255);
  background: linear-gradient(180deg, #3963EF 0%, #0036E9 100%);
}
.index-row .index-container .index-panel.video {
  border: 0;
  padding: 0;
}
.index-row .index-container .index-panel.video img {
  margin: 0;
  width: 100%;
  left: 0;
}
.index-row .index-container .index-panel.reclame {
  height: auto;
}
.index-row .index-container .index-panel.reclame img {
  left: 30px;
}

@media screen and (max-width: 768px) {
  a:hover .notification_block,
  .dropdown-button:hover .notification_block {
    display: none;
  }
}
.add-project {
  height: 100%;
}
.add-project .accounts-block {
  width: 100%;
  padding: 22px 51px 22px 51px;
  background: var(--common--gray-background-color);
  border-radius: 8px;
}
.add-project .accounts-block h3 {
  font-size: 18px;
  font-weight: 700;
}
.add-project .accounts-block p {
  font-size: 14px;
  font-weight: 500;
  color: var(--common--basic-color-50);
}
.add-project .accounts-block .empty-projects-message {
  padding-top: 16px;
}
.add-project .accounts-block .slick-slide img {
  height: 30px;
}
.add-project .accounts-block .accounts-tools {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.add-project .accounts-block .accounts-tools .accounts-link {
  width: auto;
  align-items: center;
  text-decoration: none;
}
.add-project .accounts-block .accounts-tools .accounts-link .label {
  font-size: 16px;
  font-weight: bold;
  color: var(--common--blue);
}
.add-project .accounts-block .accounts-tools .accounts-link .button {
  background: var(--common--blue-gradient);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}
.add-project .accounts-block .accounts-tools .accounts-link:hover .button {
  color: #0036e9;
  background: none;
  border: 1px solid #0036e9;
}
.add-project__tools {
  display: flex;
  justify-content: space-between;
}
.add-project__tools-left {
  display: flex;
  gap: 26px;
  align-items: center;
}
.add-project__tools-right {
  height: 28px;
  display: flex;
}
.add-project__tools-search {
  position: relative;
  display: flex;
  width: 284px;
  border: 1px solid var(--common--basic-color-50);
  padding-left: 45px;
  padding-right: 40px;
  background-color: unset;
  background-image: url("/wp-content/plugins/u-generator/assets/images/user-interface/filter-search-icon.svg");
  background-position: 17px 52%;
  background-repeat: no-repeat;
  background-size: 17px;
}
.add-project__tools-search input {
  display: flex;
  width: 100%;
  border: none;
  outline: unset;
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
}
.add-project__tools-search span {
  margin: 0 !important;
}
.add-project__tools-search__tools {
  display: block;
  position: absolute;
  top: 0;
  right: 6px;
  height: 100%;
  width: 28px;
}
.add-project__tools-search__tools--clear {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  background: url("/wp-content/plugins/u-generator/assets/images/user-interface/detach-file-icon.svg") 50% 50% no-repeat;
}
.add-project__tools-search.loading .add-project__tools-search__tools {
  background-image: url("/wp-content/themes/api/assets/images/preloader/5.gif");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
}
.add-project__tools-search.loading .add-project__tools-search__tools--clear {
  display: none;
}
.add-project__tools .items-number {
  width: 84px;
  border-radius: unset;
}
.add-project__tools .items-number:after {
  background-size: 16px;
  top: 8px;
  right: 14px;
  width: 16px;
  height: 16px;
}
.add-project__tools .items-number:before,
.add-project__tools .items-number .ug_pseudo-select-element__current {
  line-height: 28px;
}
.add-project__tools .items-number > div {
  border: 1px solid var(--common--basic-color);
  padding: 0 14px;
  background: var(--common--basic-white);
}
.add-project__tools .items-number .ug_pseudo-select-element__options {
  padding-bottom: 3px;
}
.add-project__tools .items-number .ug_pseudo-select-element__option {
  padding: 0;
  border: none;
}
.add-project .work-panel {
  padding: 0;
  flex-grow: 1;
}
.add-project .work-panel .work-table {
  width: 100%;
}
.add-project .work-panel .work-table thead tr:nth-child(odd) {
  background: none;
}
.add-project .work-panel .work-table thead th {
  color: var(--common--basic-color-50);
  border-bottom: 1px solid var(--common--basic-color-50);
  min-width: 70px;
  padding: 5px 12px;
}
.add-project .work-panel .work-table tbody td {
  min-width: 70px;
  padding: 12px 12px;
  font-size: 12px;
  line-height: normal;
}
.add-project .projects-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.main .notification.account {
  width: 100%;
  margin: 30px 0;
  padding: 22px 51px 22px 51px;
  background: rgb(229, 234, 248);
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  color: rgb(255, 0, 0);
  border-radius: 8px;
}
.main .notification.account h3 {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.94px;
  text-align: left;
  color: rgb(11, 45, 135);
}
.main .notification.account .account-slider {
  padding: 0 30px;
}
.main .notification .filter_row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.main .notification.account .account-slider .slick-arrow {
  border: none;
  font-size: 0;
  background: url(../images/arrow_active.svg);
  width: 38px;
  height: 38px;
  position: absolute;
  left: -20px;
  top: 50%;
  margin-top: -19px;
  transform: rotate(180deg);
}
.main .notification.account .account-slider .slick-arrow.slick-next {
  transform: none;
  left: auto;
  right: -20px;
}
.main .notification.account .account-slider .slick-slide {
  display: block;
  width: auto;
  margin: 15px;
}
.main .notification.account .account-slider .slick-slide .item-account {
  padding: 15px;
  border-radius: 12px;
  width: 232px;
  height: 72px;
  background: rgb(255, 255, 255);
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.main .notification.account .account-slider .slick-slide .item-account.active {
  border: 2px solid rgb(31, 214, 148);
}

.template-cabinet-add-account .connect-account p {
  display: flex;
  align-items: baseline;
}
.template-cabinet-add-account .connect-account svg {
  margin: 0 12px 0 0px;
}
.template-cabinet-add-account .work-table tr:hover {
  background: rgba(0, 0, 0, 0.04);
}
.template-cabinet-add-account .work-table thead {
  border-bottom: 1px solid rgba(11, 45, 135, 0.5);
  background: rgba(0, 0, 0, 0.04);
}
.template-cabinet-add-account .work-table thead th {
  color: rgb(11, 45, 135);
}
.template-cabinet-add-account .work-table tbody td {
  padding: 4px 12px;
}
.template-cabinet-add-account .work-panel {
  padding: 0 0 30px;
}

.work-container p {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
}

.tariff-row table {
  width: 100%;
  border-radius: 16px;
  background: rgb(255, 255, 255);
  padding: 40px 30px;
}
.tariff-row table td {
  padding: 12px 0;
  border: 0.5px solid rgba(11, 45, 135, 0.5);
}

.cabinet-content {
  padding: 24px 80px 64px 64px;
}
.cabinet-content > .cabinet-content {
  padding: 0;
}

.settings.form_v2 .form_v2-row {
  padding: 32px 52px 38px 56px;
}
.settings.form_v2 .form_v2-row .settings-fields .settings-field {
  padding-bottom: 0px;
  margin-bottom: -5px;
  margin-top: 9px;
}
.settings.form_v2 .form_v2-row .settings-fields .settings-field:last-child {
  margin-top: 0px;
}
.settings.form_v2 .form_v2-row.block_v3 {
  padding: 31px 57px 48px;
}

.form_v2 .form_v2-row .settings-fields .settings-field .buttons-after a {
  color: rgb(0, 54, 233);
}

.settings.form_v2 .form_v2-row .settings-fields .row-settings .h3 {
  width: 66%;
}
.settings.form_v2 .form_v2-row.block_v4 {
  padding: 39px 57px 39px;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block {
  margin-right: 10px;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-minus::after {
  border: 8px solid transparent;
  border-top: 8px solid rgb(229, 234, 248);
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-plus::after {
  border: 8px solid transparent;
  border-top: 8px solid rgb(229, 234, 248);
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-plus.act::after {
  border-top: 8px solid rgb(11, 45, 135);
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-minus.act::after {
  border-top: 8px solid rgb(11, 45, 135);
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-plus {
  right: 18px;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-arrow-minus {
  right: 9px;
  top: 22px;
}
.settings.form_v2 .form_v2-row .settings-fields .row-settings .otchet_text .quantity-block .quantity-num {
  padding: 12px 8px 10px;
  margin-bottom: -4px;
  margin-top: 0;
}

.settings.form_v2 .form_v2-row.block_v3.block_v4 .settings-fields .settings-field.settings-button {
  margin-top: 28px;
}
.settings.form_v2 .form_v2-row .settings-fields .settings-field input.up_balance {
  border: 1px solid rgba(11, 45, 135, 0.2);
  width: 150px;
  margin-right: 20px;
  padding: 5px 20px;
  font-size: 12px;
}

.form_v2 .form_v2-row .settings-fields .settings-field label input.pay {
  color: rgb(0, 54, 233);
  padding: 5px 25px 2px;
  border-radius: 12px;
  border: 1px solid rgb(0, 54, 233);
  text-decoration: none;
  font-size: 12px;
  margin-left: -7px;
}

label.checkbox_label {
  min-width: 51px;
}

.settings.form_v2 .form_v2-row .settings-fields .settings-field input:focus {
  outline: 1px solid rgb(0, 54, 233);
}

.item-info h4 {
  font-size: 14px;
  color: rgb(11, 45, 135);
}

.index .notification.account p {
  font-size: 12px;
}

.project_row a.add-account {
  background: linear-gradient(180deg, #3963EF 0%, #0036E9 100%);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 30px;
  text-decoration: none;
}

.ug_pseudo-select-element__current {
  color: rgb(11, 45, 135);
}

.filter_block .ug_btn, .filter_block .ui-dialog-buttonset .ui-button, .ui-dialog-buttonset .filter_block .ui-button {
  display: inline-block;
  padding: 10px 48px;
  font-size: 14px;
}

.password-checkbox {
  opacity: 0.5;
}

.my_tariff {
  width: 515px;
  height: 152px;
  padding: 24px;
  border-radius: 16px;
  background: rgb(255, 255, 255);
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
.my_tariff .passive {
  font-family: Montserrat;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  text-align: left;
  color: rgba(11, 45, 135, 0.5);
}
.my_tariff .right {
  width: 39%;
}
.my_tariff .right span {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
}
.my_tariff .right .row {
  margin: 0 0 19px;
  display: flex;
  justify-content: space-between;
}

.tariff-slider .slick-slide {
  background-color: white;
  border-radius: 12px;
  padding: 10px;
  margin-right: 10px;
}
.tariff-slider .panel-tariffs__tariff--name {
  font-size: 24px;
  font-family: Montserrat;
  font-weight: 600;
  margin-bottom: 15px;
  max-width: 180px;
}
.tariff-slider .panel-tariffs__tariff--price {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 16px;
  border: 1px solid var(--common--green);
  border-radius: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}
.tariff-slider .panel-tariffs__tariff--properties {
  padding-top: 28px;
  margin-bottom: 30px;
}
.tariff-slider .panel-tariffs__tariff--properties > div {
  display: flex;
  border-bottom: 1px solid rgba(11, 45, 135, 0.06);
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
}
.tariff-slider .panel-tariffs__tariff--properties > div:last-child {
  border: none;
}
.tariff-slider .panel-tariffs__tariff--properties > div .name {
  display: flex;
  align-items: center;
  flex-grow: 1;
  max-width: 180px;
  padding: 5px 0;
}
.tariff-slider .panel-tariffs__tariff--properties > div .value {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
  font-weight: 600;
  text-align: center;
}
.tariff-slider .panel-tariffs__tariff--properties > div .value.check-mark {
  background: url("/wp-content/themes/api/assets/images/home/check-mark.svg") 50% 50% no-repeat;
}
.tariff-slider .panel-tariffs__tariff--name {
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
}
.tariff-slider .panel-tariffs__tariff--button {
  display: flex;
  justify-content: center;
}
.tariff-slider .panel-tariffs__tariff--button .ug_btn, .tariff-slider .panel-tariffs__tariff--button .ui-dialog-buttonset .ui-button, .ui-dialog-buttonset .tariff-slider .panel-tariffs__tariff--button .ui-button {
  padding: 16px 40px;
}

.tariffs .screen-title.title-center {
  text-align: center;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 22px;
  margin-right: 130px;
}

.form_v2 .form_v2-row .tariff.form_v2-panel .settings-fields .settings-field label {
  display: block;
}
.form_v2 .form_v2-row .tariff.form_v2-panel .settings-fields .settings-field label + .error {
  display: none;
  color: var(--common--danger);
}

@media screen and (max-width: 768px) {
  .my_tariff {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .my_tariff .right {
    width: 100%;
  }
  .tariffs .screen-title.title-center {
    margin-right: 0;
  }
}
.accounts {
  height: 100%;
}
.accounts .accounts-block {
  width: 100%;
  padding: 22px 51px 22px 51px;
  background: var(--common--gray-background-color);
  border-radius: 8px;
}
.accounts .accounts-block h3 {
  font-size: 18px;
  font-weight: 700;
}
.accounts .accounts-block p {
  font-size: 14px;
  font-weight: 500;
  color: var(--common--basic-color-50);
}
.accounts .accounts-block .empty-projects-message {
  padding-top: 16px;
}
.accounts .accounts-block .slick-slide {
  display: block;
  width: 200px !important;
}
.accounts .accounts-block .slick-slide .item-info p {
  display: flex;
  gap: 8px;
  align-items: center;
}
.accounts .accounts-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.accounts .accounts-list .work-panel {
  padding: 0;
  flex-grow: 1;
}
.accounts .accounts-list .work-panel .work-table {
  width: 100%;
}
.accounts .accounts-list .work-panel .work-table thead tr:nth-child(odd) {
  background: none;
}
.accounts .accounts-list .work-panel .work-table thead th {
  color: var(--common--basic-color-50);
  border-bottom: 1px solid var(--common--basic-color-50);
  min-width: 70px;
  padding: 5px 12px;
}
.accounts .accounts-list .work-panel .work-table tbody td {
  min-width: 70px;
  padding: 12px 12px;
  font-size: 12px;
  line-height: normal;
}

.project-row .all_projects.account-project .project .project_row .btn {
  width: 221px;
  height: 42px;
  display: block;
  padding: 0 18px;
  border-radius: 12px;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.94px;
  border: 1px solid rgb(0, 54, 233);
  text-decoration: none;
  text-align: center;
  transition: all 0.5s ease-out;
  color: rgb(255, 255, 255);
  background: linear-gradient(180deg, #3963EF 0%, #0036E9 100%);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.project-row .all_projects.account-project .project .project_row .btn.disabled {
  border: 0;
  cursor: default;
  background: linear-gradient(180deg, #E0E0E0 0%, #C4C4C4 100%);
}

.project-row .index-none-project {
  width: 100%;
  height: 45vh;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: end;
}
.project-row .index-none-project .info h1 {
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 600;
  line-height: 43.88px;
  text-align: center;
  color: rgb(11, 45, 135);
  margin: 25px 180px 10px 0;
  width: 100%;
}
.project-row .index-none-project .info p {
  margin-bottom: 10px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: center;
  color: rgba(11, 45, 135, 0.5);
}
.project-row .index-none-project .info a {
  width: 254px;
  height: 54px;
  display: block;
  padding: 16px 18px;
  border-radius: 12px;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.94px;
  border: 1px solid rgb(0, 54, 233);
  color: rgb(0, 54, 233);
  background: none;
  text-decoration: none;
  text-align: center;
  transition: all 0.5s ease-out;
  margin: 0 auto;
}
.project-row .index-none-project .info a:hover {
  color: rgb(255, 255, 255);
  background: linear-gradient(180deg, #3963EF 0%, #0036E9 100%);
}

.project-row .all_projects {
  display: none;
}
.project-row .all_projects.account-project .project {
  border: 1px solid rgb(229, 234, 248);
  background: rgb(229, 234, 248);
  border-radius: 8px;
  padding: 25px 35px 10px;
}
.project-row .all_projects.account-project .project .project_row {
  display: flex;
}
.project-row .all_projects.account-project .project .project_row .h4 {
  width: 50%;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.94px;
  text-align: left;
  color: rgb(11, 45, 135);
  padding: 0 20px 0 0;
}
.project-row .all_projects.account-project .project .project_row .info_pr {
  width: 50%;
}
.project-row .all_projects.account-project .project .project_row .info_pr .url, .project-row .all_projects.account-project .project .project_row .info_pr .name {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  text-align: left;
  color: rgba(11, 45, 135, 0.5);
  display: block;
}
.project-row .all_projects.account-project .project .project_row .info_pr .url {
  color: rgb(11, 45, 135);
  width: 100%;
  word-break: break-all;
}
.project-row .all_projects.account-project .project .project_row .template-count a {
  display: flex;
  border: 2px solid rgb(11, 45, 135);
  border-radius: 50%;
  color: rgb(11, 45, 135);
  text-decoration: none;
  font-weight: 600;
  width: 24px;
  height: 24px;
  align-items: center;
}
.project-row .all_projects.account-project .project .project_row .template-count a.empty {
  color: var(--common--danger);
  border-color: var(--common-danger);
}
.project-row .all_projects.account-project .project .project_row.space-between {
  justify-content: space-between;
}
.project-row .all_projects.account-project .project hr {
  border: 1px solid rgb(255, 255, 255);
  margin: 10px 0;
}

.project-row .account-project {
  display: none;
}

.project-row .account-project.active {
  display: flex;
}

.project-container {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  display: grid;
  margin: 30px 0;
}
.project-container .account-project .project {
  width: 100%;
}

.user-accounts-list .table-icons {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1240px) {
  .project-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 962px) {
  .project-container {
    display: block;
    margin-top: 0;
  }
  .project-container .account-project {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .project-row .all_projects.account-project .project {
    padding: 10px 15px;
  }
  .project-row .all_projects.account-project .project .project_row {
    display: block;
  }
  .project-row .all_projects.account-project .project .project_row .h4 {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
  }
  .project-row .all_projects.account-project .project .project_row .info_pr br {
    display: none;
  }
  .project-row .all_projects.account-project .project .project_row.buttons {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 15px;
  }
  .project-row .all_projects.account-project .project hr {
    display: none;
  }
  .accounts .accounts-block {
    padding: 20px;
  }
}
.left-menu {
  width: 220px;
  margin: 24px 50px 0 0;
}

.right-content {
  background: rgb(229, 234, 248);
  width: 1076px;
  height: auto;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  max-width: 100%;
}

.left-menu span {
  color: rgb(229, 234, 248);
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  line-height: 17.07px;
  text-align: left;
  margin: 25px 0px;
  display: block;
  cursor: pointer;
  transition: 0.5s;
}
.left-menu span.active {
  color: rgb(11, 45, 135);
}
.left-menu span.first_step {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  text-align: left;
  color: rgb(11, 45, 135);
  margin-top: 70px;
}

.form_v3-container {
  display: flex;
}

.right-content .form_v2-container h3 {
  margin-bottom: 50px;
}
.right-content .step {
  display: none;
}
.right-content .step.active {
  position: relative;
  right: auto;
  opacity: 1;
  display: block;
}
.right-content .step.passive {
  right: auto;
}
.right-content .step5 .form_v2-container h3 {
  margin-bottom: 30px;
}
.right-content .row {
  display: flex;
  gap: 80px;
  margin-bottom: 25px;
}
.right-content .report-format {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.right-content .report-format .settings-field {
  background-color: var(--common--basic-white);
  border-radius: 12px;
  padding: 10px;
}
.right-content .report-format .settings-field label {
  margin: 0;
}
.right-content .report-format .settings-field label:after {
  top: 3px;
  bottom: auto;
}
.right-content .report-format .settings-field label:before {
  top: 0;
  bottom: auto;
}
.right-content .report-format .settings-field label svg {
  margin-left: -15px;
}

.form_v2 .right-content .form_v2-row .settings-fields .settings-field label {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-right: 17px;
}
.form_v2 .right-content .form_v2-row .settings-fields .settings-field input, .form_v2 .right-content .form_v2-row .settings-fields .settings-field select {
  border-radius: 12px;
  background: #fff;
  padding: 7px 20px;
  border: 1px solid rgba(11, 45, 135, 0.3);
  width: 400px;
}
.form_v2 .right-content .form_v2-row .settings-fields .settings-field label > span {
  width: 100%;
  margin-bottom: 8px;
}
.form_v2 .right-content .form_v2-row .settings-field.field_check.field_check2 {
  position: relative;
}

.guest-access label {
  padding-left: 30px;
}

.form_v2 .right-content .form_v2-row .settings-fields .settings-field label span b {
  font-weight: 300;
  color: red;
}

.step_nav .next_step, .step_nav .prev_step {
  width: 120px;
  display: block;
  align-items: center;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  line-height: 17.07px;
  text-align: left;
  color: rgb(0, 54, 233);
  z-index: 1;
  cursor: pointer;
  position: relative;
}
.step_nav .next_step.last_step, .step_nav .prev_step.last_step {
  width: 160px;
}
.step_nav .next_step.active:after, .step_nav .prev_step.active:after {
  background-image: url(/wp-content/plugins/u-generator/assets/images/arrow_act.png);
}
.step_nav .next_step {
  float: right;
}
.step_nav .next_step:after {
  content: "";
  background-image: url(/wp-content/plugins/u-generator/assets/images/arrow.png);
  width: 38px;
  height: 38px;
  position: absolute;
  right: 25px;
  top: -9px;
  cursor: pointer;
  z-index: 1;
}
.step_nav .prev_step {
  text-align: right;
  width: 90px;
  height: 38px;
  display: none;
}
.step_nav .prev_step:before {
  background-image: url(/wp-content/plugins/u-generator/assets/images/arrow_act.png);
  transform: scaleX(-1);
  content: "";
  width: 38px;
  height: 38px;
  position: absolute;
  left: 0;
  top: -9px;
  cursor: pointer;
  z-index: 1;
}

.step {
  position: absolute;
  right: -500px;
  opacity: 0;
  transition: 0.5s;
}
.step.active {
  position: relative;
  right: auto;
  opacity: 1;
}
.step.passive {
  right: auto;
}

.form_v2 .right-content .form_v2-row .settings-fields .add_logo {
  background: #fff;
  color: #000;
  line-height: 1.2;
  padding: 15px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px dashed rgba(11, 45, 135, 0.5);
  width: 110px;
  height: 110px;
}
.form_v2 .right-content .form_v2-row .settings-fields .add_logo:after {
  content: "+";
  font-size: 50px;
  font-weight: 200;
  width: 30px;
  position: absolute;
  top: 25%;
  left: 35%;
}

#preview {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
}
#preview img {
  max-width: 100px;
  max-height: 100px;
}

.form_v2 .right-content .form_v2-row .settings-field.flex-row {
  display: flex;
}
.form_v2 .right-content .form_v2-row .settings-field.flex-row .image_desc p {
  color: rgba(11, 45, 135, 0.5);
  font-size: 12px;
  margin-top: 23px;
  font-weight: 300;
}
.form_v2 .image_desc_mobile {
  display: none;
  color: rgba(11, 45, 135, 0.5);
  font-size: 12px;
  font-weight: 300;
}
.form_v2 .form_v2-row .settings-fields .settings-field.color-fields label input {
  opacity: 0;
  width: 25px;
  height: 25px;
  padding: 0px 2px;
  background-color: #fff;
  border: 1px solid rgb(182, 198, 254);
  border-radius: 2px;
}

.token-error {
  display: none;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
}

.settings-scope .settings-field {
  margin-bottom: 30px;
}
.settings-scope .settings-field label {
  margin: 8px 0;
}
.settings-scope.disabled {
  opacity: 0.3;
}

.services .index {
  width: 50px;
}

.settings-field.color-fields {
  width: 40%;
}

.form_v2 .form_v2-row .settings-fields .settings-field.color-fields label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 12px;
  border-bottom: 1px dotted rgba(11, 45, 135, 0.5);
}
.form_v2 .form_v2-row .settings-fields .settings-field.color-fields label .clr-field {
  width: 25px;
  height: 25px;
  border: 1px solid #B6C6FE;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
}
.form_v2 .form_v2-row .settings-fields .settings-field.color-fields label .clr-field button {
  width: 19px;
  height: 19px;
  border-radius: 2px;
  left: 2px;
  top: 12px;
}
.form_v2 .form_v2-row .settings-fields .settings-field.color-fields label .clr-field input {
  opacity: 0;
  cursor: pointer;
}

.image_desc, .message_desc, .settings-field.color-fields h4 {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  color: rgb(11, 45, 135);
}

.image_desc, .settings-field.color-fields h4 {
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  height: 260px;
  resize: none;
  padding: 220px 25px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  box-sizing: border-box;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  color: rgba(11, 45, 135, 0.5);
  border: 0;
  outline: 0;
}

.messtemplate-wrap {
  margin-top: 80px;
}

.messtemplate {
  margin-top: 10px;
}
.messtemplate:after, .messtemplate:before {
  content: "";
  background: rgb(182, 198, 254);
  width: 100%;
  height: 51px;
  display: block;
  border-radius: 15px 15px 0 0;
}
.messtemplate:after {
  border-radius: 0 0 15px 15px;
  margin-top: -5px;
}

.form_v2 .right-content .form_v2-row .settings-field.flex-row.row-space-between {
  justify-content: space-between;
  width: 100%;
}
.form_v2 .right-content .form_v2-row .settings-field.flex-row.row-space-between span {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  line-height: 17.07px;
  text-align: left;
  color: rgba(11, 45, 135, 0.5);
  margin-bottom: 10px;
}
.form_v2 .right-content .form_v2-row .services {
  display: none;
}
.form_v2 .right-content .form_v2-row .services .block {
  cursor: grab;
  border-radius: 25px;
  width: 100%;
  padding: 9px 34px 9px 28px;
  justify-content: space-between;
  align-items: center;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(11, 45, 135, 0.3);
  margin: 12px 0;
}
.form_v2 .right-content .form_v2-row .services .block .block-header {
  display: flex;
  justify-content: space-between;
}
.form_v2 .right-content .form_v2-row .services .item {
  display: flex;
  border-radius: 25px;
  width: 100%;
  padding: 9px 34px 9px 28px;
  justify-content: space-between;
  align-items: center;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(11, 45, 135, 0.3);
  margin: 12px 0;
}
.form_v2 .right-content .form_v2-row .services .service__icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.form_v2 .right-content .form_v2-row .services .service__icons div {
  display: flex;
}
.form_v2 .right-content .form_v2-row .services .right-item {
  display: flex;
}
.form_v2 .right-content .form_v2-row .services .left-item {
  display: flex;
  align-items: center;
}
.form_v2 .right-content .form_v2-row .services .left-item img {
  margin-right: 10px;
}

.info {
  position: relative;
}
.info:hover .notification_block {
  display: block;
  transform: translateX(-50%);
}

.service-settings {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.service-settings .item {
  box-sizing: border-box;
  display: inline-block;
  max-width: 50%;
  width: calc(50% - 15px);
  border: 1px solid rgba(11, 45, 135, 0.3);
  height: 254px;
  border-radius: 12px;
  background: rgb(255, 255, 255);
}

.top-item {
  border-bottom: 1px solid rgba(11, 45, 135, 0.3);
  display: flex;
  padding: 10px 15px;
  align-items: center;
}
.top-item img {
  margin-right: 20px;
}

#reportTime {
  width: auto;
}

.item_service {
  border: 1px solid rgba(11, 45, 135, 0.3);
  margin: 7px 25px;
  display: flex;
  justify-content: space-between;
  padding: 5px 30px;
  align-items: center;
}
.item_service .right-item {
  font-size: 45px;
  font-weight: 200;
}

.content-item {
  margin: 30px 12px 0 0;
  overflow: auto;
  height: 60%;
}
.content-item::-webkit-scrollbar {
  width: 8px;
  /* Ширина всего элемента навигации */
}
.content-item::-webkit-scrollbar-track {
  background: #fff;
  /* Цвет дорожки */
}
.content-item::-webkit-scrollbar-thumb {
  background-color: rgb(229, 234, 248);
  /* Цвет бегунка */
  border-radius: 20px;
  /* Округление бегунка */
  border: 1px solid rgb(229, 234, 248);
  /* Оформление границ бегунка */
}

.form_v2 .right-content .form_v2-row .settings-fields .settings-field.field_check2.check3 label {
  padding-left: 30px;
  color: rgb(11, 45, 135);
}

.checkbox3 {
  margin-bottom: 10px;
}
.checkbox3 input[type=radio] {
  display: none;
}

.form_v2 .right-content .form_v2-row .settings-fields .settings-field label.checkbox3 label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 0;
  line-height: 18px;
  user-select: none;
  overflow: unset;
}

.checkbox3 label:before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(11, 45, 135, 0.5);
}
.checkbox3 input[type=radio]:checked + label:after {
  content: "";
  background: rgb(31, 214, 148);
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 3px;
  bottom: 3px;
  border-radius: 10px;
}
.checkbox3 label:hover:before {
  filter: brightness(120%);
}
.checkbox3 input[type=radio]:disabled + label:before {
  filter: grayscale(100%);
}

/* Checked */
/* Hover */
/* Disabled */
.form_v2 .right-content .step5.form_v2-row .settings-fields .settings-field label {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-right: 17px;
  padding-left: 30px;
  margin: 8px 0;
}

.settings-field.all_day_checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding-left: 30px;
}
.settings-field.all_day_checkbox span {
  color: rgb(11, 45, 135) !important;
}

.right-content .step5 .row {
  display: flex;
  gap: 40px;
  margin-bottom: 6px;
}

.h3 {
  margin-top: 60px;
}

.page-templates .section-title {
  margin-top: 57px;
}
.page-templates .work-panel {
  padding-left: 0;
  padding-right: 0;
}
.page-templates .work-panel .templates-table thead tr {
  background: var(--common--gray-background-color);
}
.page-templates .work-panel .templates-table thead th {
  text-align: left;
  color: var(--common--basic-color);
}
.page-templates .work-panel .templates-table thead th:first-child {
  width: 20px;
}
.page-templates .work-panel .templates-table thead th:last-child {
  text-align: right;
}
.page-templates .work-panel .templates-table tbody tr:nth-child(even) {
  background: var(--common--gray-background-color);
}
.page-templates .work-panel .templates-table tbody tr td:last-child {
  text-align: right;
}
.page-templates .work-panel .templates-table tbody tr td a {
  text-decoration: none;
  color: var(--common--basic-color);
}
.page-templates .work-panel .templates-table tbody tr td a .notification_block {
  z-index: 1;
  top: -50px;
  left: 0;
  transform: translateX(-50%);
}
.page-templates .work-panel .templates-table tbody tr td .table-icons {
  display: flex;
  justify-content: end;
}

.work-panel a {
  color: var(--common--basic-color);
  text-decoration: none;
}

.template-welcome {
  display: flex;
  gap: 27px;
  margin-top: 60px;
}
.template-welcome .template-welcome-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-direction: column;
  padding: 32px 100px 32px 178px;
  border: 1px solid var(--common--basic-color-50);
  border-radius: 4px;
  background-repeat: no-repeat;
}
.template-welcome .template-welcome-block.start {
  background-position-x: 30px;
  background-image: url("/wp-content/plugins/u-generator/assets/images/templates/template-start.svg");
}
.template-welcome .template-welcome-block.advice {
  background-position-x: 54px;
  background-image: url("/wp-content/plugins/u-generator/assets/images/templates/template-advice.svg");
}
.template-welcome .template-welcome-block .template-welcome-block-title-1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
}
.template-welcome .template-welcome-block .template-welcome-block-title-2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

a.add-template {
  text-decoration: none;
  color: var(--common--basic-color);
  display: inline-flex;
  align-items: center;
}
a.add-template.btn-add {
  display: inline-flex;
  margin-right: 16px;
}

@media screen and (min-width: 962px) {
  .step_nav_mobile .next_step {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .page-templates .section-title {
    margin-top: 20px;
  }
  .work-table .table-icons a {
    margin-left: 8px;
  }
  .left-menu {
    display: none;
  }
  .step_nav .next_step {
    display: none !important;
  }
  .step_nav_mobile .next_step {
    display: block;
    width: auto !important;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
  }
  .step_nav_mobile .next_step::after {
    display: none;
  }
  .right-content {
    padding: 20px;
  }
  .right-content .form_v2-container h3 {
    margin-bottom: 20px;
  }
  .right-content .row {
    flex-direction: column;
    gap: 20px;
  }
  .right-content .report-format {
    flex-direction: column;
  }
  .form_v2 .right-content .form_v2-row .settings-fields .settings-field input, .form_v2 .right-content .form_v2-row .settings-fields .settings-field select {
    width: 100%;
  }
  .form_v2 .right-content .form_v2-row .settings-fields .settings-field label {
    margin-right: 0;
  }
  .form_v2 .right-content .form_v2-row .settings-fields .settings-field.flex-row {
    gap: 15px;
  }
  .form_v2 .right-content .form_v2-row .settings-fields .settings-field.flex-row .image_desc p {
    display: none;
  }
  .form_v2 .right-content .form_v2-row .settings-fields .image_desc_mobile {
    display: block;
  }
  .form_v2 .right-content .form_v2-row .settings-fields .add_logo {
    width: 70px;
    height: 70px;
  }
  .form_v2 .right-content .form_v2-row .settings-fields .add_logo::after {
    top: 3px;
    left: 20px;
  }
  .form_v2 .right-content .form_v2-row .services .block, .form_v2 .right-content .form_v2-row .services .item {
    padding: 9px 15px;
  }
  .form_v2 .right-content .form_v2-row .services .service__icons {
    display: none;
  }
  .settings-field.color-fields {
    width: 100%;
  }
  .checkbox_label {
    margin-left: 0 !important;
  }
  .messtemplate-wrap {
    margin-top: 20px;
  }
  #preview img {
    max-width: 60px;
    max-height: 60px;
  }
  .template-welcome {
    gap: 27px;
    margin-top: 20px;
  }
  .template-welcome .template-welcome-block {
    padding: 25px;
  }
  .template-welcome .template-welcome-block.start {
    background-image: none;
  }
}
@media screen and (max-width: 768px) {
  .template-welcome .template-welcome-block.advice {
    background: none;
  }
}
.report-settings {
  width: 60%;
}
.report-settings .date-picker-wrapper {
  min-width: 350px;
  position: relative;
}
.report-settings .date-picker-wrapper:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/arrow-open.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 8px;
  top: 8px;
}
.report-settings .date-picker-wrapper #datepicker {
  appearance: none;
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  border: 0;
  cursor: pointer;
  color: var(--common--basic-color);
}

.report-options {
  margin-left: 100px;
  display: flex;
}
.report-options .dropdown {
  margin-right: 32px;
}

#downloads {
  display: none;
}

.reportPdf {
  cursor: pointer;
}

.project-report-form {
  padding: 24px;
  position: relative;
  border-radius: 12px;
  background-color: var(--common--gray-background-color);
  display: flex;
}
.project-report-form .form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.project-report-form .form-row label {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-report-form .form-row .custom-select {
  min-width: 350px;
  position: relative;
}
.project-report-form .form-row input, .project-report-form .form-row select {
  border-radius: 12px;
}
.project-report-form .form-row .custom-select select {
  appearance: none;
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  border: 0;
  cursor: pointer;
  color: var(--common--basic-color);
}
.project-report-form .form-row .custom-select::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/edit-icon.svg");
  position: absolute;
  right: 8px;
  top: 8px;
}
.project-report-form .form-row .button-wrap {
  min-width: 350px;
}
.project-report-form .form-row .button-wrap button.generate {
  display: flex;
  justify-content: center;
  padding: 8px 48px;
  border-radius: 12px;
  border: 1px solid rgb(0, 54, 233);
  color: var(--common--basic-color);
  background-color: transparent;
  text-decoration: none;
  font-size: 12px;
  margin: 0 auto;
  cursor: pointer;
}

.report .report {
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
}
.report .report.timeout h3 {
  display: block;
  text-align: center;
  margin-bottom: 15px;
}
.report .report.timeout p {
  text-align: center;
}
.report .report .report-account-info hr {
  clear: both;
  border: 0;
  border-bottom: 1px dotted var(--common--basic-color-50);
}
.report .work-panel {
  background-color: var(--common--gray-background-color);
  padding: 26px 20px 26px;
  margin-top: 20px;
}
.report .report-header {
  display: flex;
  justify-content: space-between;
}
.report .report-header .report-account-info {
  width: 40%;
}
.report .report-header .report-account-info dl {
  line-height: 2;
}
.report .report-header .report-account-info dl:after {
  clear: both;
}
.report .report-header .report-account-info dl dt {
  color: var(--common--basic-color-50);
  float: left;
  clear: left;
}
.report .report-header .report-account-info dl dd {
  float: right;
}
.report .report-header .report-logo {
  padding: 10px;
  border: 1px solid var(--common--basic-color-50);
  border-radius: 25px;
}
.report .report-header .report-logo img {
  max-width: 100%;
  max-height: 120px;
  display: block;
}
.report .report-summary {
  margin-bottom: 30px;
}
.report .report-summary .summary-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.report .report-summary .summary-title .work-title {
  margin: 0;
}
.report .report-summary .summary-title label {
  color: var(--common--basic-color-50);
}
.report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:not(:checked) + label, .report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:checked + label {
  padding-right: 30px;
  position: relative;
}
.report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:not(:checked) + label:before, .report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:checked + label:before {
  left: auto;
  right: 0;
}
.report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:not(:checked) + label:after, .report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:checked + label:after {
  right: 3px;
  left: auto;
}
.report .report-summary .stat-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.report .report-summary .stat-card {
  background-color: var(--common--basic-white);
  border-radius: 16px;
  padding: 24px;
  height: 170px;
}
.report .report-summary .stat-card .stat-card-title {
  margin-bottom: 23px;
  color: var(--common--basic-color-50);
}
.report .report-summary .stat-card .stat-card-val {
  font-size: 39px;
  line-height: 1.2;
  font-weight: 700;
  transition: top 0.2s;
  position: relative;
  top: 0;
}
.report .report-summary .stat-card .percent, .report .report-summary .stat-card .stat-card-val-before {
  position: relative;
}
.report .report-summary .stat-card .stat-card-val-before {
  font-size: 30px;
  font-weight: 600;
  color: var(--common--basic-color-50);
}
.report .report-summary .stat-card .percent {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  top: -36px;
}
.report .report-summary .stat-card .percent.percent-plus {
  color: var(--common--green);
}
.report .report-summary .stat-card .percent.percent-minus {
  color: var(--common--danger);
}
.report .report-summary.compare-on .stat-card .stat-card-val {
  top: -10px;
}
.report .chart-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
.report .charts-block {
  background-color: var(--common--basic-white);
  border-radius: 16px;
  padding: 100px 64px;
}
.report .charts-block .work-title {
  color: var(--common--basic-color-50);
}
.report .chart-legend {
  margin-top: 65px;
}
.report .chart-legend .legend-row {
  display: flex;
}
.report .chart-legend .legend-row div {
  margin-right: 13px;
}
.report .chart-legend .legend-row div:last-child {
  margin-right: 0;
}
.report .chart-legend .legend-row .bar-color {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
}
.report .chart-legend .legend-row.cpa .bar-color {
  background-color: #15B47B;
}
.report .chart-legend .legend-row.bbip .bar-color {
  background-color: #0B2D87;
}
.report .chart-legend .legend-row.cpa-before .bar-color {
  background-color: #7BFBB8;
}
.report .chart-legend .legend-row.bbip-before .bar-color {
  background-color: #3872C5;
}
.report .chart-legend .legend-row .spacing {
  flex-grow: 1;
  border-bottom: 1px dotted var(--common--basic-color-50);
}
.report .chart-legend .legend-row.total {
  margin-top: 32px;
  font-weight: 600;
}
.report .chart-legend .before {
  display: none;
}

.cabinet .report-history {
  padding: 0;
}
.cabinet .report-history td {
  padding: 5px;
}
.cabinet .report-history td .success {
  color: var(--common--dark-green);
}
.cabinet .report-history td .pending {
  color: var(--common--warning);
}

@media screen and (max-width: 768px) {
  .project-report-form {
    flex-direction: column-reverse;
  }
  .project-report-form .form-row {
    flex-direction: column;
  }
  .project-report-form .form-row .custom-select, .project-report-form .form-row .button-wrap {
    min-width: auto;
  }
  .report-options {
    margin-left: 0;
  }
  .report-options .dropdown .dropdown-menu {
    right: -150px;
  }
  .report-options .dropdown .dropdown-menu:before {
    right: 149px;
  }
  .report-settings {
    width: 100%;
  }
  .report-settings .date-picker-wrapper {
    min-width: auto;
  }
  .report .report-header {
    flex-direction: column-reverse;
  }
  .report .report-header .report-logo {
    margin-bottom: 10px;
  }
  .report .report-header .report-logo img {
    margin: 0 auto;
  }
  .report .report-header .report-account-info {
    width: 100%;
  }
  .report .report-summary .summary-title {
    flex-direction: column;
    gap: 10px;
  }
  .report .report-summary .stat-wrap {
    display: flex;
    flex-direction: column;
  }
  .report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:not(:checked) + label, .report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:checked + label {
    padding-right: 0;
    padding-left: 30px;
  }
  .report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:not(:checked) + label:before, .report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:checked + label:before {
    left: 0;
    right: auto;
  }
  .report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:not(:checked) + label:after, .report .report-summary .settings-field.field_check.field_check2 input[type=checkbox]:checked + label:after {
    right: auto;
    left: 3px;
  }
  .report .charts-block {
    padding: 20px;
  }
}
.ug_pseudo-select-element {
  position: relative;
  cursor: pointer;
}
.ug_pseudo-select-element:before {
  content: "1"/"";
  display: block;
  opacity: 0;
}
.ug_pseudo-select-element:after {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 1;
  pointer-events: none;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("/wp-content/plugins/u-generator/assets/images/user-interface/pseudo-selector-arrow.svg") 50% 50% no-repeat;
  transform: rotate(180deg);
  transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
}
.ug_pseudo-select-element > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.ug_pseudo-select-element__current {
  display: block;
  padding-right: 34px;
}
.ug_pseudo-select-element__options {
  padding-top: 3px;
  padding-bottom: 13px;
}
.ug_pseudo-select-element__options-wrapper {
  overflow: hidden;
  transition: height 0.2s;
  -webkit-transition: height 0.2s;
  -moz-transition: height 0.2s;
  -o-transition: height 0.2s;
}
.ug_pseudo-select-element__option {
  cursor: pointer;
  padding: 12px 34px 12px 0;
  border-bottom: 1px solid var(--common--basic-color-50);
}
.ug_pseudo-select-element__option:last-child {
  border-bottom: none;
}
.ug_pseudo-select-element.collapsed .ug_pseudo-select-element__options-wrapper {
  height: 0;
}
.ug_pseudo-select-element.collapsed > div {
  z-index: unset;
}
.ug_pseudo-select-element.collapsed:after {
  transform: rotate(0deg);
  z-index: unset;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-button {
  cursor: pointer;
}
.dropdown .dropdown-menu {
  position: absolute;
  z-index: 1;
  cursor: default;
  top: 30px;
  right: -27px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  transition: opacity 0.4s;
  pointer-events: none;
  opacity: 0;
}
.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 25px;
  transform: rotate(315deg);
  border: 13px solid var(--common--basic-white);
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.25);
}
.dropdown .dropdown-menu .dropdown-menu-content {
  position: relative;
  padding: 19px 24px 14px;
  background-color: var(--common--basic-white);
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}
.dropdown .dropdown-menu .dropdown-menu-content a {
  color: var(--common--basic-color);
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 3;
}
.dropdown .dropdown-menu .dropdown-menu-content.notifications ul li a {
  display: inline;
  white-space: normal;
  line-height: 1em;
}
.dropdown.open .dropdown-menu {
  pointer-events: all;
  opacity: 1;
}

.report .dropdown-menu {
  right: -150px;
}
.report .dropdown-menu::before {
  right: 149px;
}

label.checkbox-block {
  width: 51px;
  height: 31px;
  display: flex;
}
label.checkbox-block input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
label.checkbox-block input[type=checkbox] + span {
  background: var(--common--gray-light2-color);
  float: left;
}
label.checkbox-block input[type=checkbox]:checked + span {
  background: var(--common--green);
}
label.checkbox-block input[type=checkbox]:checked + span:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}
label.checkbox-block span {
  cursor: pointer;
  text-indent: 9px;
  width: 100%;
  height: 100%;
  background: var(--common--gray-light2-color);
  display: block;
  border-radius: 100px;
  position: relative;
}
label.checkbox-block span:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 27px;
  height: 27px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}
label.checkbox-block:active span:after {
  width: 40px;
}

label.checkbox-v1 {
  display: flex;
  justify-content: left;
  align-items: center;
  position: relative;
  gap: 12px;
  cursor: pointer;
}
label.checkbox-v1 span {
  margin: 0;
}
label.checkbox-v1 .checkbox {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  padding: 3px;
  border: 1px solid var(--common--basic-color-50);
  border-radius: unset;
  overflow: hidden;
}
label.checkbox-v1 input[type=checkbox] {
  width: 0;
  height: 0;
}
label.checkbox-v1 input[type=checkbox]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--common--basic-white);
  background-color: rgba(11, 45, 135, 0.06);
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
}
label.checkbox-v1 input[type=checkbox]:checked:after {
  background-color: var(--common--green);
}

ol, ul {
  padding-left: 40px;
}

.noscroll {
  overflow: hidden;
}

.text-right {
  text-align: right !important;
}

.cabinet {
  height: 100%;
  background-color: var(--common--basic-white);
}
.cabinet-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  background-color: var(--common--basic-color);
  padding-right: 46px;
  z-index: 3;
}
.cabinet-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 38px;
}
.cabinet-header .dropdown-menu {
  border-radius: 12px;
  right: 0;
  top: 50px;
}
.cabinet-header .dropdown-menu::before {
  display: none;
}
.cabinet-header .dropdown-menu .dropdown-menu-content {
  padding: 0 0 15px;
  border-radius: 12px;
  width: 414px;
}
.cabinet-header .dropdown-menu .dropdown-menu-content .help-menu-header {
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--common--basic-color-50);
}
.cabinet-header .dropdown-menu .dropdown-menu-content .help-menu-header .help-title {
  font-size: 18px;
  font-weight: 700;
}
.cabinet-header .dropdown-menu .dropdown-menu-content .help-menu-header .help-close {
  display: block;
  height: 24px;
  width: 24px;
  background-image: url("../images/close_icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.cabinet-header .dropdown-menu .dropdown-menu-content ul {
  list-style: none;
}
.cabinet-header .dropdown-menu .dropdown-menu-content ul li {
  padding: 5px 32px;
}
.cabinet-header .dropdown-menu .dropdown-menu-content ul li.bottom {
  text-align: center;
}
.cabinet-header .dropdown-menu .dropdown-menu-content ul li a {
  display: flex;
}
.cabinet-header .dropdown-menu .dropdown-menu-content ul li a img {
  margin-right: 22px;
  width: 36px;
  height: 36px;
}
.cabinet-header .notifications > span.number {
  position: absolute;
  display: block;
  background-color: var(--wp--preset--color--luminous-vivid-amber);
  top: -7px;
  right: 0;
  transform: translateX(50%);
  border-radius: 50%;
  padding: 2px 5px;
  line-height: 1;
  font-size: 12px;
}
.cabinet-header .notifications li {
  padding-left: 10px !important;
}
.cabinet-header .notifications li.new {
  list-style: disc;
}
.cabinet-header .notifications li.new::marker {
  color: var(--wp--preset--color--luminous-vivid-amber);
}
.cabinet-header__balance {
  display: flex;
  align-items: center;
}
.cabinet-header__balance .wrapper {
  display: flex;
  align-items: center;
  column-gap: 12px;
  height: 30px;
  padding: 0 18px 0 50px;
  background: var(--common--basic-white) url("/wp-content/plugins/u-generator/assets/images/user-interface/balance-icon.svg") 18px 50% no-repeat;
  border: 1px solid var(--common--gray-background-color);
}
.cabinet-header__balance .wrapper .label {
  font-size: 12px;
}
.cabinet-header__balance .wrapper .value {
  color: var(--common--basic-color-50);
  font-size: 12px;
}
.cabinet-header__buttons {
  display: flex;
  column-gap: 24px;
}
.cabinet-header__button {
  cursor: pointer;
  display: flex;
  column-gap: 24px;
}
.cabinet-header__button--help {
  display: flex;
  column-gap: 24px;
}
.cabinet-header__user {
  position: relative;
  width: 48px;
  height: 48px;
}
.cabinet-header__user .user-avatar {
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
}
.cabinet-header__user .user-avatar img {
  display: block;
  width: 100%;
  height: auto;
}
.cabinet-header__user .user-menu {
  display: flex;
  flex-direction: column;
}
.cabinet-header__user .user-menu-item {
  display: flex;
  align-items: center;
  height: 30px;
  color: var(--common--basic-color);
  font-size: 12px;
  text-decoration: none;
  outline: none;
}
.cabinet-header__user .user-menu-item.item-tariff {
  display: flex;
  align-items: stretch;
  column-gap: 10px;
  color: var(--common--blue-gradient);
}
.cabinet-header__user .user-menu-item.item-tariff .label {
  display: flex;
  align-items: center;
}
.cabinet-header__user .user-menu-item.item-tariff .value {
  display: flex;
  align-items: center;
  column-gap: 24px;
  padding: 0 16px;
  border: 1px solid var(--common--basic-color-50);
  border-radius: 22px;
}
.cabinet-header__user .user-menu-item.item-tariff .value .tariff-name {
  margin-top: 0;
  background: var(--common--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
  white-space: nowrap;
}
.cabinet-header__user .user-menu-item.item-tariff .value .tariff-status {
  background: var(--common--blue-gradient);
  padding: 0 6px;
  border-radius: 4px;
  color: var(--common--basic-white);
  font-size: 10px;
  line-height: 20px;
  white-space: nowrap;
}
.cabinet-header__user .user-name {
  padding-bottom: 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--common--gray-light-color);
  color: #515e8b;
  font-size: 15px;
  font-weight: 600;
}
.cabinet-header__user .user-name-item {
  display: flex;
  align-items: center;
  height: 30px;
  color: var(--common--basic-color);
  font-size: 12px;
  text-decoration: none;
  outline: none;
}
.cabinet-header__user .user-popup {
  position: absolute;
  top: 58px;
  right: -14px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  pointer-events: none;
  opacity: 0;
}
.account-menu-opened .cabinet-header__user .user-popup {
  pointer-events: all;
  opacity: 1;
}
.cabinet-header__user .user-popup-content {
  border-radius: 12px;
  position: relative;
  padding: 19px 12px 14px 24px;
  background-color: var(--common--basic-white);
}
.cabinet-header__user .user-popup::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 25px;
  transform: rotate(315deg);
  border: 13px solid var(--common--basic-white);
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.25);
}
.cabinet-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 115px;
  height: 100%;
  background: linear-gradient(143deg, var(--common--gray-light-color) 0%, #d7e2ff 100%);
  z-index: 2;
}
.cabinet-sidebar--top {
  display: flex;
  align-items: center;
  height: 60px;
  padding-left: 32px;
  padding-right: 27px;
}
.cabinet-sidebar--middle {
  flex-grow: 1;
  padding: 92px 27px 32px 32px;
}
.cabinet-sidebar--bottom {
  padding: 32px;
}
.cabinet-sidebar--bottom a {
  display: inline-block;
  text-decoration: none;
  outline: none;
}
.cabinet-sidebar--bottom a img {
  display: block;
}
.cabinet-sidebar__fold_button {
  cursor: pointer;
  width: 22px;
  height: 20px;
  margin-left: 16px;
  background: url("/wp-content/plugins/u-generator/assets/images/user-interface/expand-right-icon-white.svg") 50% 50% no-repeat;
  background-size: cover;
}
.cabinet-sidebar__fold_button.open {
  transform: rotate(180deg);
}
.cabinet-sidebar__menu {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.cabinet-sidebar__menu-item {
  display: flex;
  align-items: center;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  outline: none;
  color: inherit;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  padding: 0 16px 0 40px;
  background-repeat: no-repeat;
  background-position: 16px 50%;
}
.cabinet-sidebar__menu-item.active {
  background-color: var(--common--basic-white);
}
.cabinet-sidebar__menu-item.part-projects {
  background-image: url("/wp-content/plugins/u-generator/assets/images/menu-parts/projects-icon.svg");
}
.cabinet-sidebar__menu-item.part-templates {
  background-image: url("/wp-content/plugins/u-generator/assets/images/menu-parts/templates-icon.svg");
}
.cabinet-sidebar__menu-item.part-accounts {
  background-image: url("/wp-content/plugins/u-generator/assets/images/menu-parts/accounts-icon.svg");
}
.cabinet-sidebar__menu-item.part-profile {
  background-image: url("/wp-content/plugins/u-generator/assets/images/menu-parts/profile-icon.svg");
}
.cabinet-sidebar__menu-item.part-support {
  background-image: url("/wp-content/plugins/u-generator/assets/images/menu-parts/support-icon.svg");
}
.cabinet-sidebar__menu-item.part-tariffs {
  background-image: url("/wp-content/plugins/u-generator/assets/images/menu-parts/tariffs-icon.svg");
}
.cabinet-sidebar__menu-item.part-settings {
  background-image: url("/wp-content/plugins/u-generator/assets/images/menu-parts/settings-icon.svg");
}
.cabinet-sidebar__menu-item span {
  display: none;
  margin-left: 12px;
}
.cabinet-body {
  padding-top: 60px;
  padding-left: 115px;
  min-height: 100%;
  display: flex;
}
.cabinet-content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 32px 64px;
  margin: 0 auto;
}
.cabinet-content .screen-title {
  font-family: Montserrat, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}
.cabinet .work-field label [type=text],
.cabinet .work-field label [type=number],
.cabinet .work-field label [type=email],
.cabinet .work-field label [type=password],
.cabinet .work-field label textarea,
.cabinet .work-field label select,
.cabinet .work-field label .ug_pseudo-select-element:before,
.cabinet .work-field label .ug_pseudo-select-element > div {
  padding: 10px 18px;
  font-family: Montserrat, serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
}

.btn-ico {
  display: inline-block;
}

.auth-signup, .auth-lostpassword {
  display: none;
}

.ui-dialog {
  border-radius: 12px;
}

.ui-dialog-buttonset .ui-button {
  padding: 0 40px;
}
.ui-dialog-buttonset .ui-button:hover {
  color: var(--common--basic-white);
}
.ui-dialog-buttonset .ui-button:focus {
  background: var(--common--blue) var(--common--blue-gradient);
  color: var(--common--basic-white);
}

.work-table .table-icons a {
  text-decoration: none;
  margin-left: 22px;
}

.sm-visible {
  display: none;
}

@media screen and (max-width: 768px) {
  .sm-hidden {
    display: none;
  }
  .sm-visible {
    display: block;
  }
  .cabinet-header {
    padding-right: 20px;
  }
  .cabinet-header__balance {
    display: none;
  }
  .cabinet-header .dropdown .dropdown-menu {
    position: fixed;
    top: 65px;
    right: 5px;
    max-width: calc(100% - 10px);
  }
  .cabinet-header .dropdown .dropdown-menu .dropdown-menu-content {
    max-width: calc(100% - 10px);
  }
  .cabinet-header .dropdown .dropdown-menu .dropdown-menu-content ul {
    padding-left: 0;
  }
  .cabinet-header .dropdown .dropdown-menu .dropdown-menu-content ul li {
    padding: 5px 20px;
  }
  .cabinet-header__user .user-popup {
    right: -20px;
  }
  .cabinet-header__user .user-popup::before {
    right: 30px;
  }
  .cabinet-sidebar {
    left: -115px;
  }
  .cabinet-sidebar__fold_button {
    margin-left: 0;
  }
  .cabinet-sidebar--top {
    padding-left: 20px;
  }
  .cabinet-sidebar.sidebar-expanded {
    left: 0;
  }
  .cabinet-body {
    padding-left: 0;
  }
  .cabinet-content {
    padding: 24px 20px;
  }
  .work-table .table-icons a {
    margin-left: 10px;
  }
}

/*# sourceMappingURL=lk-style.css.map */
