@charset "UTF-8";
@-webkit-keyframes move-light {
  from {
    -webkit-transform: translateX(-4em) skewX(-45deg);
            transform: translateX(-4em) skewX(-45deg);
  }
  to {
    -webkit-transform: translateX(18em) skewX(-45deg);
            transform: translateX(18em) skewX(-45deg);
  }
}
@keyframes move-light {
  from {
    -webkit-transform: translateX(-4em) skewX(-45deg);
            transform: translateX(-4em) skewX(-45deg);
  }
  to {
    -webkit-transform: translateX(18em) skewX(-45deg);
            transform: translateX(18em) skewX(-45deg);
  }
}
.section-frame {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1200px) {
  .section-frame {
    max-width: 700px;
  }
}
@media only screen and (max-width: 720px) {
  .section-frame {
    max-width: 375px;
    padding: 0 20px;
  }
}

.section-frame_relative {
  position: relative;
}

.load * {
  -webkit-transition: none !important;
  transition: none !important;
}

.open-frame {
  overflow: hidden;
}

.js-checkbox {
  cursor: pointer;
}
.js-checkbox input {
  display: none;
}

.center {
  text-align: center;
}

.white {
  color: #fff;
}

.rd-white-page {
  background: #fff;
}

.header-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mob-frame {
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  left: 0;
  top: 0;
  z-index: 80;
}

.mob-menu {
  width: 300px;
  min-height: 100%;
  padding: 100px 20px 80px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  top: 0;
  right: -300px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mob-menu_active {
  right: 0px;
}

.menu-close {
  cursor: pointer;
  font-size: 16px;
  color: #B7B7B7;
  position: absolute;
  right: 20px;
  top: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu-close:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.logo {
  display: block;
}
.logo img {
  width: 100%;
  display: block;
}

/* Start redesign Modal */
.open-frame {
  overflow: hidden;
}

.rd-popup-frame {
  width: 100%;
  height: 100%;
  padding: 70px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  left: 0;
  top: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-frame.rd-active {
  opacity: 1;
  pointer-events: inherit;
}

.js-modal {
  cursor: pointer;
}

.rd-popup {
  display: none;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.rd-popup-close {
  display: block;
  cursor: pointer;
  position: absolute;
  top: -21px;
  right: -18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.rd-popup-default {
  width: 500px;
  padding: 40px;
  border-radius: 55px;
  background: #F4F4F4;
}
.rd-popup-default .rd-login__label {
  margin-bottom: 15px;
}
.rd-popup-default .rd-login__input {
  color: #5E67B3;
}
.rd-popup-default .rd-login__label-text {
  text-align: left;
  padding-left: 15px;
  color: #DF3E1A;
  font-size: 10px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-default {
    width: 300px;
    padding: 40px 15px;
    border-radius: 35px;
  }
}

.rd-popup-title {
  font-size: 30px;
  line-height: 135%;
  font-weight: 600;
  color: #3B4173;
  margin-bottom: 15px;
}
.rd-popup-title.rd-center {
  text-align: center;
}

.rd-popup-sub {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-sub input {
  display: none;
}
.rd-popup-sub svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-sub::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-sub::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-sub *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-sub *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-sub:hover {
  background: #DF3E1A;
  text-decoration: none;
}

.rd-popup-email__thanks {
  display: none;
}

.rd-popup-email__info {
  font-size: 15px;
  line-height: 18px;
  color: #3B4173;
  margin-top: -5px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-email__info {
    text-align: center;
  }
}

.rd-popup-email__btn {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-email__btn input {
  display: none;
}
.rd-popup-email__btn svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-email__btn::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-email__btn::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-email__btn *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-email__btn *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-email__btn:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-popup-email__btn {
  margin-top: 15px;
}

.rd-personal-tg__nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  grid-gap: 8px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .rd-personal-tg__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
@media screen and (max-width: 980px) {
  .rd-personal-tg__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
@media screen and (max-width: 700px) {
  .rd-personal-tg__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 1 - 15px), 1fr));
  }
}
.rd-personal-tg__nav img {
  max-width: 100%;
  display: block;
}
.rd-personal-tg__nav {
  margin-top: 15px;
}
.rd-personal-tg__nav a {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-personal-tg__nav a input {
  display: none;
}
.rd-personal-tg__nav a svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-personal-tg__nav a::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-tg__nav a::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-tg__nav a *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-tg__nav a *::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-tg__nav a:hover {
  background: #DF3E1A;
  text-decoration: none;
}

.rd-popup-questionnaire {
  width: 785px;
  padding: 25px 140px 80px;
  border-radius: 55px;
  background: #F4F4F4;
}
@media only screen and (max-width: 720px) {
  .rd-popup-questionnaire {
    width: 330px;
    padding: 12px 15px 40px;
    border-radius: 35px;
  }
}

.rd-popup-questionnaire__title {
  width: 100%;
  background: #F4F4F4;
  padding: 25px 0;
  position: sticky;
  z-index: 10;
  top: -70px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-questionnaire__title {
    width: calc(100% + 6px);
    margin-left: -3px;
    padding: 12px 0;
    text-align: center;
  }
}

.rd-questionnaire-list {
  margin-top: 25px;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire-list {
    margin-top: 11px;
  }
}

.rd-questionnaire-item {
  margin-bottom: 20px;
}
.rd-questionnaire-item:last-child {
  margin-bottom: 0;
}

.rd-questionnaire-item__title {
  color: #717171;
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 8px;
}

.rd-questionnaire__preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
}

.rd-questionnaire__preview-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.rd-questionnaire__preview__nav {
  margin-top: auto;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__preview__nav {
    margin-top: 10px;
  }
}

.rd-questionnaire__file {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__file input {
  display: none;
}
.rd-questionnaire__file svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__file::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__file::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__file *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__file *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__file:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-questionnaire__file {
  background: #3B4173;
  margin-bottom: 10px;
}
.rd-questionnaire__file:hover {
  background: #5E67B3;
}

.rd-questionnaire__lk {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__lk input {
  display: none;
}
.rd-questionnaire__lk svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__lk::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__lk::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__lk *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__lk *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__lk:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-questionnaire__lk {
  border: 1px solid #3B4173;
  color: #3B4173 !important;
  background: transparent;
}
.rd-questionnaire__lk:hover {
  color: #fff !important;
  background: #3B4173;
}

.rd-questionnaire__preview-photo {
  width: 240px;
  height: 240px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__preview-photo {
    width: 100%;
    height: 300px;
  }
}

.rd-select {
  position: relative;
  z-index: 2;
}
.rd-select.is-open {
  z-index: 10;
}
.rd-select.is-open .rd-select__drop {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.rd-select.is-open .rd-select__active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.rd-select__active {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-select__active p {
  font-size: 15px;
  line-height: 130%;
  color: #3B4173;
}
.rd-select__active svg {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-select__active:hover {
  border-color: #3B4173;
}

.rd-select__drop {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 1px;
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
}

.rd-select__drop-item {
  margin-bottom: 10px;
}
.rd-select__drop-item p {
  font-size: 15px;
  line-height: 130%;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-select__drop-item:last-child {
  margin-bottom: 0;
}
.rd-select__drop-item:hover p {
  color: #C1492E;
}

.js-checkbox {
  cursor: pointer;
}
.js-checkbox input {
  display: none;
}

.rd-questionnaire__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 5px;
  margin-bottom: 10px;
}
.rd-questionnaire__checkbox:last-child {
  margin-bottom: 0;
}
.rd-questionnaire__checkbox.rd-active .rd-questionnaire__checkbox-icon {
  background: #3B4173;
  border-color: #3B4173;
}
.rd-questionnaire__checkbox.rd-active .rd-questionnaire__checkbox-icon svg {
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}

.rd-questionnaire__checkbox-icon {
  width: 12px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #BCBFD7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__checkbox-icon svg {
  display: block;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.rd-questionnaire__checkbox-title {
  font-size: 15px;
  line-height: 130%;
  color: #3B4173;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}

.rd-questionnaire__quote {
  padding-left: 10px;
  border-left: 2px solid #3B4173;
  margin-top: 10px;
}
.rd-questionnaire__quote p {
  font-size: 12px;
  color: #717171;
}

.rd-questionnaire__textarea {
  width: 100%;
  height: 78px;
  padding: 13px 15px;
  border-radius: 12px;
  resize: none;
  border: 1px solid #fff;
  outline: none;
  font-size: 15px;
  background: #fff;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__textarea:focus {
  border-color: #3B4173;
}
.rd-questionnaire__textarea::-webkit-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea::-moz-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea:-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea::-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea::placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea.rd-size-textarea_120 {
  height: 120px;
}

.rd-questionnaire__photo-hint {
  width: 100%;
  display: block;
  border-radius: 8px;
  margin-top: 8px;
}

.rd-questionnaire__variant-item {
  margin-bottom: 15px;
}
.rd-questionnaire__variant-item p {
  font-size: 15px;
  color: #3B4173;
}
.rd-questionnaire__variant-item:last-child {
  margin-bottom: 0;
}

.rd-questionnaire__variant-title {
  font-weight: 700;
}

.rd-questionnaire__variant-quote {
  color: #717171;
  font-size: 15px;
  margin-top: 15px;
}

.rd-questionnaire__variant-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}
.rd-questionnaire__variant-nav a {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__variant-nav a input {
  display: none;
}
.rd-questionnaire__variant-nav a svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__variant-nav a::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__variant-nav a::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__variant-nav a *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__variant-nav a *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__variant-nav a:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-questionnaire__variant-nav a {
  background: transparent;
  border: 1px solid #C1492E;
  color: #C1492E !important;
}
.rd-questionnaire__variant-nav a:hover {
  background: #C1492E;
  color: #fff !important;
}
.rd-questionnaire__variant-nav .rd-popup-create-prev {
  width: 112px;
}

.rd-questionnaire__variant-max {
  width: 150px !important;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__variant-max {
    width: calc(50% - 8px) !important;
  }
}

.rd-questionnaire__variant-tg {
  width: 200px !important;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__variant-tg {
    width: calc(50% - 8px) !important;
  }
}

.rd-questionnaire__input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__input::-webkit-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input::-moz-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input:-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input::-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input::placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input:focus {
  border-color: #3B4173;
}

.rd-questionnaire__nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  grid-gap: 15px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .rd-questionnaire__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
@media screen and (max-width: 980px) {
  .rd-questionnaire__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
@media screen and (max-width: 700px) {
  .rd-questionnaire__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
.rd-questionnaire__nav img {
  max-width: 100%;
  display: block;
}

.rd-questionnaire__delete {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__delete input {
  display: none;
}
.rd-questionnaire__delete svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__delete::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__delete::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__delete *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__delete *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__delete:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-questionnaire__delete {
  background: transparent;
  border: 1px solid #C1492E;
  color: #C1492E !important;
}
.rd-questionnaire__delete:hover {
  background: #C1492E;
  color: #fff !important;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__delete {
    height: 40px;
    font-size: 14px;
  }
}

.rd-questionnaire__sub {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__sub input {
  display: none;
}
.rd-questionnaire__sub svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__sub::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__sub::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__sub *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__sub *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__sub:hover {
  background: #DF3E1A;
  text-decoration: none;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__sub {
    height: 40px;
  }
}

.rd-questionnaire__cat {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__cat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.rd-questionnaire__cat-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #5E67B3;
  cursor: pointer;
}
.rd-questionnaire__cat-file input {
  display: none;
}
.rd-questionnaire__cat-file svg {
  display: block;
}

.rd-questionnaire__cat-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
}
.rd-questionnaire__cat-group .rd-select {
  width: 105px;
}
.rd-questionnaire__cat-group .rd-select__active {
  height: 27px;
}
.rd-questionnaire__cat-group .rd-select__active p {
  font-size: 12px;
}
.rd-questionnaire__cat-group .rd-select__active svg {
  width: 6px;
}
.rd-questionnaire__cat-group .rd-select__drop {
  padding: 12px;
}
.rd-questionnaire__cat-group .rd-select__drop-item p {
  font-size: 12px;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__cat-group .rd-select {
    width: calc(33.3333333333% - 5px);
  }
}

.rd-questionnaire__cat-input {
  width: 110px;
  height: 27px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #fff;
  outline: none;
  border-radius: 12px;
  font-size: 12px;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__cat-input:focus {
  border-color: #3B4173;
}
.rd-questionnaire__cat-input::-webkit-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__cat-input::-moz-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__cat-input:-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__cat-input::-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__cat-input::placeholder {
  color: #BCBFD7;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__cat-input {
    width: calc(33.3333333333% - 5px);
  }
}

.rd-popup-create {
  width: 740px;
  padding: 80px 120px;
  border-radius: 55px;
  background: #F4F4F4;
}
.rd-popup-create .rd-popup-title {
  margin-bottom: 20px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create {
    width: 330px;
    padding: 40px 15px;
    border-radius: 35px;
  }
  .rd-popup-create .rd-popup-title {
    margin-bottom: 15px;
  }
}

.rd-popup-create-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 4px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create-progress {
    margin-bottom: 20px;
  }
}

.rd-popup-create-progress__item {
  width: 100%;
  height: 2px;
  background: #717171;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-create-progress__item.rd-active {
  background: #C1492E;
}

.rd-popup-create-item {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 300px;
}
.rd-popup-create-item .rd-questionnaire-item__title {
  margin-bottom: 12px;
}
.rd-popup-create-item .rd-questionnaire__quote {
  margin-top: 0;
  margin-bottom: 20px;
}
.rd-popup-create-item .rd-questionnaire__photo-hint {
  margin-bottom: 18px;
}
.rd-popup-create-item.rd-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create-item {
    min-height: auto;
  }
  .rd-popup-create-item .rd-questionnaire__quote {
    margin-bottom: 12px;
  }
  .rd-popup-create-item .rd-questionnaire__variant-nav {
    grid-gap: 10px;
  }
  .rd-popup-create-item .rd-questionnaire__variant-nav .rd-popup-create-prev, .rd-popup-create-item .rd-questionnaire__variant-nav .rd-questionnaire__variant-max, .rd-popup-create-item .rd-questionnaire__variant-nav .rd-questionnaire__variant-tg {
    width: calc(50% - 5px) !important;
  }
}

.rd-popup-create-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
  margin-top: auto;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create-nav {
    margin-top: 15px;
    grid-gap: 10px;
  }
}

.rd-popup-create-prev {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-create-prev input {
  display: none;
}
.rd-popup-create-prev svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-create-prev::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-prev::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-prev *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-prev *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-prev:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-popup-create-prev {
  background: transparent;
  border: 1px solid #C1492E;
  color: #C1492E !important;
}
.rd-popup-create-prev:hover {
  background: #C1492E;
  color: #fff !important;
}

.rd-popup-create-next {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-create-next input {
  display: none;
}
.rd-popup-create-next svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-create-next::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-next::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-next *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-next *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-next:hover {
  background: #DF3E1A;
  text-decoration: none;
}

.rd-popup-create-sub {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-create-sub input {
  display: none;
}
.rd-popup-create-sub svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-create-sub::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-sub::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-sub *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-sub *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-sub:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-popup-create-sub {
  margin-top: 25px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create-sub {
    width: calc(50% - 5px);
    margin-top: 0;
  }
}

/* End redesign Modal */
/* Start redesign login */
.rd-login {
  padding-bottom: 30px;
}
@media only screen and (max-width: 720px) {
  .rd-login {
    padding-bottom: 0;
  }
}

.rd-login-title {
  text-align: center;
  font-size: 70px;
  font-weight: 700;
  color: #3B4173;
}
@media only screen and (max-width: 1200px) {
  .rd-login-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 720px) {
  .rd-login-title {
    font-size: 20px;
  }
}

.rd-login-form {
  width: 500px;
  padding: 40px;
  border-radius: 55px;
  background: #F4F4F4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 50px auto 0;
}
@media only screen and (max-width: 720px) {
  .rd-login-form {
    max-width: 300px;
    padding: 40px 30px;
    border-radius: 35px;
    margin-top: 35px;
  }
}

.rd-login__label {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.rd-login__label.js-valid-error .rd-login__input {
  border-color: #C1492E;
  color: #C1492E;
}
.rd-login__label.js-valid-error .rd-login__label-text {
  display: block;
}
.rd-login__label:last-child {
  margin-bottom: 0;
}

.rd-login__input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  color: #626262;
  font-size: 13px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  outline: none !important;
}
.rd-login__input::-webkit-input-placeholder {
  color: #BCBFD7;
}
.rd-login__input::-moz-placeholder {
  color: #BCBFD7;
}
.rd-login__input:-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-login__input::-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-login__input::placeholder {
  color: #BCBFD7;
}
.rd-login__input:focus {
  border-color: #3B4173;
}

.rd-login__label-text {
  display: none;
  text-align: right;
  font-size: 13px;
  color: #C1492E;
  margin-top: 5px;
}
@media only screen and (max-width: 720px) {
  .rd-login__label-text {
    font-size: 12px;
    letter-spacing: -0.12px;
    margin-top: 10px;
  }
}

.rd-login__reset-password {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #3B4173;
  font-size: 15px;
  margin-left: auto;
  margin-top: 10px;
}
.rd-login__reset-password:hover {
  color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .rd-login__reset-password {
    text-decoration: underline;
  }
}

.rd-login__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  margin-top: 15px;
}
@media only screen and (max-width: 720px) {
  .rd-login__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 10px;
  }
}

.rd-login__sub {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-login__sub input {
  display: none;
}
.rd-login__sub svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-login__sub::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-login__sub::selection {
  color: inherit;
  background: transparent;
}
.rd-login__sub *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-login__sub *::selection {
  color: inherit;
  background: transparent;
}
.rd-login__sub:hover {
  background: #DF3E1A;
  text-decoration: none;
}

.rd-login__sub-tg {
  max-width: 100%;
  width: 245px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-login__sub-tg input {
  display: none;
}
.rd-login__sub-tg svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-login__sub-tg::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-login__sub-tg::selection {
  color: inherit;
  background: transparent;
}
.rd-login__sub-tg *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-login__sub-tg *::selection {
  color: inherit;
  background: transparent;
}
.rd-login__sub-tg:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-login__sub-tg {
  background: #3B4173;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-login__sub-tg:hover {
  background: #5E67B3;
}
@media only screen and (max-width: 720px) {
  .rd-login__sub-tg {
    width: 100%;
  }
}

.rd-login__register {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #3B4173 !important;
  font-size: 15px;
  font-weight: 600;
  margin-top: 15px;
}
@media only screen and (max-width: 720px) {
  .rd-login__register {
    margin-top: 20px;
    line-height: 135%;
    text-align: center;
  }
  .rd-login__register span {
    text-decoration: underline;
  }
}

.rd-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
  margin-top: 15px;
  cursor: pointer;
}
.rd-copy.active .rd-copy__check {
  background: #C1492E;
}
.rd-copy.active .rd-copy__check svg {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.rd-copy.active.sub-color .rd-copy__check {
  background: #3B4173;
}
.rd-copy.sub-color .rd-copy__check {
  border-color: #3B4173;
}
.rd-copy.sub-color .rd-copy__text a {
  color: #5E67B3;
}
@media only screen and (max-width: 720px) {
  .rd-copy {
    margin-top: 20px;
  }
}

.rd-copy__check {
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #C1492E;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-copy__check input {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.rd-copy__check svg {
  width: 9px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.rd-copy__text {
  font-size: 13px;
  line-height: 15px;
  color: #3B4173;
}
.rd-copy__text a {
  color: #C1492E;
}

.rd-login__enter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #3B4173 !important;
  margin: 15px auto 0;
}
@media only screen and (max-width: 720px) {
  .rd-login__enter {
    margin-top: 20px;
  }
}

.rd-register-tg {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-register-tg input {
  display: none;
}
.rd-register-tg svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-register-tg::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-register-tg::selection {
  color: inherit;
  background: transparent;
}
.rd-register-tg *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-register-tg *::selection {
  color: inherit;
  background: transparent;
}
.rd-register-tg:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-register-tg {
  background: #3B4173;
}
.rd-register-tg:hover {
  background: #5E67B3;
}
@media only screen and (max-width: 720px) {
  .rd-register-tg {
    padding: 0 20px;
    text-align: left;
  }
}

.rd-login__info {
  color: #3B4173;
  text-align: center;
  font-size: 15px;
  margin-top: 15px;
}
@media only screen and (max-width: 720px) {
  .rd-login__info {
    margin-top: 20px;
  }
}

.rd-login__email {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  text-align: center;
  color: #3B4173 !important;
  font-size: 15px;
  margin: 5px auto 0;
}
@media only screen and (max-width: 720px) {
  .rd-login__email span {
    text-decoration: underline;
  }
}

.rd-registration-title {
  text-align: center;
  color: #3B4173;
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 720px) {
  .rd-registration-title {
    font-size: 15px;
    line-height: 18px;
  }
}

.rd-registration-info {
  text-align: center;
  color: #3B4173;
  font-size: 15px;
  margin-top: 15px;
}
@media only screen and (max-width: 720px) {
  .rd-registration-info {
    font-size: 15px;
    line-height: 18px;
    margin-top: 20px;
  }
}

.rd-registration-btn {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-registration-btn input {
  display: none;
}
.rd-registration-btn svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-registration-btn::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-registration-btn::selection {
  color: inherit;
  background: transparent;
}
.rd-registration-btn *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-registration-btn *::selection {
  color: inherit;
  background: transparent;
}
.rd-registration-btn:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-registration-btn {
  margin-top: 15px;
}
@media only screen and (max-width: 720px) {
  .rd-registration-btn {
    margin-top: 20px;
  }
}

/* End redesign login */
/* Start redesign Diktory */
.rd-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 20px;
  margin-bottom: 35px;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 1200px) {
  .rd-sort {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 720px) {
  .rd-sort {
    grid-gap: 10px;
    margin-bottom: 20px;
  }
}

.rd-sort-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 720px) {
  .rd-sort-search {
    width: 100%;
  }
}

.rd-sort-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .rd-sort-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 720px) {
  .rd-sort-wrap {
    width: 100%;
  }
}

.rd-sort-search__input {
  width: 505px;
  height: 40px;
  padding-left: 12px;
  padding-right: 180px;
  border: 1px solid #3B4173;
  border-radius: 8px;
  color: #3B4173;
  font-size: 15px;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-sort-search__input::-webkit-input-placeholder {
  color: #BCBFD7;
}
.rd-sort-search__input::-moz-placeholder {
  color: #BCBFD7;
}
.rd-sort-search__input:-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-sort-search__input::-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-sort-search__input::placeholder {
  color: #BCBFD7;
}
.rd-sort-search__input:focus {
  border-color: #C1492E;
}
@media only screen and (max-width: 720px) {
  .rd-sort-search__input {
    width: 100%;
    height: 34px;
    font-size: 13px;
    padding-left: 15px;
    padding-right: 50px;
  }
}

.rd-sort-search__sub {
  max-width: 100%;
  width: 160px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-sort-search__sub input {
  display: none;
}
.rd-sort-search__sub svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-sort-search__sub::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-sort-search__sub::selection {
  color: inherit;
  background: transparent;
}
.rd-sort-search__sub *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-sort-search__sub *::selection {
  color: inherit;
  background: transparent;
}
.rd-sort-search__sub:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-sort-search__sub {
  background: #3B4173;
  border-radius: 8px;
  margin-left: -160px;
}
.rd-sort-search__sub:hover {
  background: #5E67B3;
}
@media only screen and (max-width: 720px) {
  .rd-sort-search__sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: none;
    margin-left: 0;
    position: absolute;
    right: 25px;
  }
}

.rd-lang {
  position: relative;
  z-index: 13;
}
@media only screen and (max-width: 1200px) {
  .rd-lang {
    width: 100%;
  }
}

.rd-lang__active {
  min-width: 250px;
  height: 40px;
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #3B4173;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-lang__active p {
  font-size: 15px;
  color: #3B4173;
}
.rd-lang__active img {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-lang__active.rd-open {
  border-color: #C1492E;
}
.rd-lang__active.rd-open img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.rd-lang__active:hover {
  border-color: #C1492E;
}
@media only screen and (max-width: 1200px) {
  .rd-lang__active {
    min-width: auto;
    width: 100%;
  }
}
@media only screen and (max-width: 720px) {
  .rd-lang__active {
    font-size: 13px;
    height: 34px;
    padding-right: 25px;
  }
}

.rd-lang__drop {
  width: 100%;
  display: none;
  padding: 20px 12px 12px;
  padding-right: 4px;
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 14, 51, 0.15);
          box-shadow: 0 4px 4px 0 rgba(0, 14, 51, 0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
}

.rd-lang__drop-item {
  margin-bottom: 30px;
}
.rd-lang__drop-item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 720px) {
  .rd-lang__drop-item {
    margin-bottom: 20px;
  }
}

.rd-lang__drop-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3B4173;
  grid-gap: 10px;
}
.rd-lang__drop-link img {
  width: 24px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-lang__drop-link b {
  display: block;
}
@media only screen and (max-width: 720px) {
  .rd-lang__drop-link img {
    width: 20px;
  }
  .rd-lang__drop-link b, .rd-lang__drop-link span {
    font-size: 14px;
  }
}

.rd-lang__drop-sub {
  margin-left: 45px;
  margin-top: 10px;
}
.rd-lang__drop-sub li {
  margin-bottom: 10px;
}
.rd-lang__drop-sub li:last-child {
  margin-bottom: 0;
}
.rd-lang__drop-sub a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .rd-lang__drop-sub li {
    margin-bottom: 7px;
  }
  .rd-lang__drop-sub a {
    font-size: 14px;
  }
}

.rd-lang__scroll {
  height: 230px;
  padding-right: 8px;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.rd-lang__scroll::-webkit-scrollbar {
  width: 2px;
  border-radius: 80px;
}
.rd-lang__scroll::-webkit-scrollbar-track {
  width: 20px;
  border-radius: 80px !important;
  background: #F4F4F4;
}
.rd-lang__scroll::-webkit-scrollbar-thumb {
  background-color: #C1492E;
  border: none;
  border-radius: 80px !important;
}

.rd-list-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 10px;
}

.rd-card {
  width: 180px;
  height: 270px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.rd-card .speaker-item__play svg:nth-child(1) {
  margin-left: 2px;
}
.rd-card::before {
  content: "";
  width: 100%;
  height: 250px;
  display: block;
  border-radius: 35px;
  background: #F4F4F4;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 1200px) {
  .rd-card:hover {
    z-index: 3;
  }
  .rd-card:hover .rd-card-wrap {
    width: 220px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-left: -20px;
    -webkit-box-shadow: 0 0 30px 0 rgba(59, 65, 115, 0.25);
            box-shadow: 0 0 30px 0 rgba(59, 65, 115, 0.25);
    position: absolute;
  }
  .rd-card:hover .rd-card__change-like {
    display: block;
  }
  .rd-card:hover .rd-card__hover {
    display: block;
  }
  .rd-card:hover .rd-card__actor {
    opacity: 1;
  }
  .rd-card.swiper-slide:hover .rd-card-wrap {
    margin-top: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(59, 65, 115, 0.2);
            box-shadow: 0 0 20px 0 rgba(59, 65, 115, 0.2);
  }
}
@media only screen and (max-width: 1200px) {
  .rd-card {
    width: 210px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media only screen and (max-width: 720px) {
  .rd-card {
    width: calc(50% - 5px);
  }
}

.rd-card-wrap {
  height: 100%;
  padding: 20px 20px 20px;
  border-radius: 35px;
  background: #F4F4F4;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
  -webkit-transition: margin-top 0.4s, -webkit-box-shadow 0.4s;
  transition: margin-top 0.4s, -webkit-box-shadow 0.4s;
  transition: margin-top 0.4s, box-shadow 0.4s;
  transition: margin-top 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}
@media only screen and (max-width: 1200px) {
  .rd-card-wrap {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media only screen and (max-width: 720px) {
  .rd-card-wrap {
    padding: 15px 10px;
    border-radius: 30px;
  }
}

.rd-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.rd-card__change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
}
.rd-card__change svg {
  display: block;
}

.rd-card__change-save {
  display: block;
}

.rd-card__change-like {
  display: none;
}
.rd-card__change-like svg {
  display: block;
}
.rd-card__change-like path {
  fill: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-card__change-like:hover path {
  fill: #C1492E;
}

.rd-card__timer {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  color: #3B4173;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.rd-card__preview {
  width: 110px;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 20px auto 0;
}
.rd-card__preview.is-playing .speaker-item__play-icon {
  display: none;
}
.rd-card__preview.is-playing .speaker-item__pause-icon {
  display: block;
}
@media only screen and (max-width: 720px) {
  .rd-card__preview .speaker-item__play {
    width: 40px;
    height: 40px;
    left: -10px;
    top: -14px;
  }
  .rd-card__preview .speaker-item__play-icon {
    width: 14px !important;
  }
  .rd-card__preview .speaker-item__pause-icon {
    width: 20px !important;
  }
}

.rd-card__actor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  z-index: 3;
  left: 65px;
  bottom: -10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.rd-card__actor-photo {
  width: 36px;
  height: 36px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 1px solid #C1492E;
  margin-left: -8px;
}
.rd-card__actor-photo:first-child {
  margin-left: 0;
}

.rd-card__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}

.rd-card__name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 15px;
  text-decoration: underline;
  color: #3B4173;
  margin: 20px auto 0;
}
.rd-card__name:hover {
  color: #C1492E;
}
@media only screen and (max-width: 720px) {
  .rd-card__name {
    font-size: 14px;
    margin-top: 10px;
  }
}

.rd-card__price {
  font-size: 15px;
  color: #3B4173;
  text-align: center;
  margin-top: 5px;
}
.rd-card__price b {
  font-weight: 600;
}
@media only screen and (max-width: 720px) {
  .rd-card__price {
    font-size: 14px;
    margin-top: 10px;
  }
}

.rd-card__hover {
  display: none;
  margin-top: 15px;
}
@media only screen and (max-width: 1200px) {
  .rd-card__hover {
    display: block;
  }
}
@media only screen and (max-width: 720px) {
  .rd-card__hover {
    margin-top: 10px;
  }
}

.rd-card__info {
  color: #717171;
  font-size: 15px;
  line-height: 130%;
  text-align: center;
}
@media only screen and (max-width: 720px) {
  .rd-card__info {
    font-size: 13px;
    line-height: 120%;
  }
}

.rd-card__btn {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-card__btn input {
  display: none;
}
.rd-card__btn svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-card__btn::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-card__btn::selection {
  color: inherit;
  background: transparent;
}
.rd-card__btn *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-card__btn *::selection {
  color: inherit;
  background: transparent;
}
.rd-card__btn:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-card__btn {
  margin-top: 15px;
}
@media only screen and (max-width: 720px) {
  .rd-card__btn {
    width: 140px;
    height: 30px;
    margin: 10px auto 0;
    border-radius: 7px;
    font-size: 14px;
  }
  .rd-card__btn img {
    width: 20px;
  }
}

.rd-tg-voices-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 10px;
}
@media only screen and (max-width: 720px) {
  .rd-tg-voices-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.rd-tg-voices-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) {
  .rd-diktory-list {
    grid-gap: 80px;
  }
}

.rd-show-more {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #C1492E;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 25px auto 0;
}
@media only screen and (max-width: 720px) {
  .rd-show-more {
    width: 40px;
    height: 40px;
  }
}

.rd-pagination {
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F4F4F4;
  border-radius: 27px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 25px;
}
@media only screen and (max-width: 720px) {
  .rd-pagination {
    padding: 15px;
    border-radius: 22px;
  }
}

.rd-pagination__arrow {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #C1492E;
  background: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  opacity: 0.4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-pagination__arrow:hover {
  opacity: 1;
}
@media only screen and (max-width: 720px) {
  .rd-pagination__arrow {
    width: 33px;
    height: 33px;
  }
}

.rd-pagination-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 75px;
}
.rd-pagination-nav .active a {
  font-weight: 600;
  border-bottom: 2px solid #3B4173;
}
.rd-pagination-nav a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 0 5px;
  font-size: 20px;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-pagination-nav a:hover {
  color: #5E67B3;
  text-decoration: none;
}
@media only screen and (max-width: 720px) {
  .rd-pagination-nav {
    grid-gap: 15px;
  }
  .rd-pagination-nav a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1200px) {
  .table-hide {
    display: none !important;
  }
}

.table-show {
  display: none !important;
}
@media only screen and (max-width: 1200px) {
  .table-show {
    display: block !important;
  }
}

.table-show-flex {
  display: none !important;
}
@media only screen and (max-width: 1200px) {
  .table-show-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.table-show-grid {
  display: none !important;
}
@media only screen and (max-width: 1200px) {
  .table-show-grid {
    display: grid !important;
  }
}

@media only screen and (max-width: 720px) {
  .mob-hide {
    display: none !important;
  }
}

.mob-show {
  display: none !important;
}
@media only screen and (max-width: 720px) {
  .mob-show {
    display: block !important;
  }
}

.mob-show-inline {
  display: none !important;
}
@media only screen and (max-width: 720px) {
  .mob-show-inline {
    display: inline !important;
  }
}

.mob-show-flex {
  display: none !important;
}
@media only screen and (max-width: 720px) {
  .mob-show-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.mob-show-grid {
  display: none !important;
}
@media only screen and (max-width: 720px) {
  .mob-show-grid {
    display: grid !important;
  }
}

@media only screen and (max-width: 720px) {
  .rd-wrap-filter {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .rd-wrap-filter button {
    margin: 0;
    padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

/* End redesign Diktory */
/* Start redesign Fast */
.rd-fast {
  margin-top: 75px;
}
@media only screen and (max-width: 720px) {
  .rd-fast {
    margin-top: 40px;
  }
}

.rd-fast-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 30px), 1fr));
  grid-gap: 30px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .rd-fast-wrap {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 1 - 30px), 1fr));
  }
}
@media screen and (max-width: 980px) {
  .rd-fast-wrap {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 1 - 30px), 1fr));
  }
}
@media screen and (max-width: 700px) {
  .rd-fast-wrap {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 1 - 30px), 1fr));
  }
}
.rd-fast-wrap img {
  max-width: 100%;
  display: block;
}
@media only screen and (max-width: 720px) {
  .rd-fast-wrap {
    grid-gap: 20px;
  }
}

.rd-fast__type {
  padding: 40px;
  border-radius: 15px;
  background: url("../../img/rd-bg/rd-fast-bg.svg") bottom right no-repeat, #C1492E;
}
@media only screen and (max-width: 720px) {
  .rd-fast__type {
    padding: 20px;
  }
}

.rd-fast__title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.rd-fast__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 20px;
  margin-top: 15px;
}
@media only screen and (max-width: 720px) {
  .rd-fast__list {
    grid-gap: 15px;
  }
}

.rd-fast__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  border-radius: 7px;
  border: 1px solid #FFF;
  font-size: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-fast__item span {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-fast__item svg {
  display: block;
}
.rd-fast__item path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-fast__item:hover {
  background: #fff;
  text-decoration: none;
}
.rd-fast__item:hover span {
  color: #C1492E;
}
.rd-fast__item:hover path {
  fill: #C1492E;
}

.rd-fast-section {
  padding: 20px 40px;
  border-radius: 15px;
  background: #BCBFD7;
  margin-bottom: 31px;
}
.rd-fast-section .rd-fast__title {
  color: #3B4173;
}
.rd-fast-section .rd-fast__item {
  border-color: #3B4173;
}
.rd-fast-section .rd-fast__item span {
  color: #3B4173;
}
.rd-fast-section .rd-fast__item:hover {
  background: #3B4173;
}
.rd-fast-section .rd-fast__item:hover span {
  color: #fff;
}
.rd-fast-section .rd-fast__item:hover path {
  fill: #fff;
}
.rd-fast-section:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 720px) {
  .rd-fast-section {
    padding: 20px;
    margin-bottom: 20px;
  }
}

/* End redesign Fast */
/* Start redesign New */
.new {
  margin-top: 45px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 720px) {
  .new {
    overflow: hidden;
    padding-bottom: 40px;
    margin-top: 35px;
  }
}

.new-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 25px;
}
.new-title img {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.new-title p {
  font-size: 35px;
  font-weight: 700;
  color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .new-title {
    grid-gap: 15px;
  }
  .new-title img {
    width: 40px;
  }
  .new-title p {
    font-size: 26px;
  }
}

.new-wrap {
  position: relative;
  margin-top: 40px;
}
@media only screen and (max-width: 720px) {
  .new-wrap {
    margin-top: 20px;
  }
}

.new-slider {
  position: relative;
}
.new-slider .swiper-slide-active {
  position: relative;
  z-index: 10;
}
@media only screen and (min-width: 1200px) {
  .new-slider::before, .new-slider::after {
    content: "";
    width: 2000px;
    height: 100%;
    background: #fff;
    position: absolute;
    z-index: 3;
    top: 0;
  }
  .new-slider::before {
    left: -2030px;
  }
  .new-slider::after {
    right: -2030px;
  }
}
@media only screen and (max-width: 1200px) {
  .new-slider {
    overflow: hidden;
  }
}
@media only screen and (max-width: 720px) {
  .new-slider {
    overflow: visible;
  }
  .new-slider .rd-card {
    width: 180px;
    border-radius: 20px;
  }
}

.new-arrow a {
  width: 33px;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid #C1492E;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: none;
  position: absolute;
  top: calc(50% - 16px);
  z-index: 4;
}
@media only screen and (max-width: 720px) {
  .new-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-gap: 15px;
    margin-top: 15px;
  }
  .new-arrow a {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
}

.new-prev {
  left: -16px;
}

.new-next {
  right: -16px;
}

/* End redesign New */
/* Start singe cart Diktory */
.speaker-list {
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__frame {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__frame {
    max-width: 335px;
  }
}
.speaker-item {
  padding: 45px 35px 35px;
  border-radius: 55px;
  background: #F4F4F4;
  position: relative;
  margin-bottom: 25px;
}

.speaker-item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {
  .speaker-item {
    padding: 25px 0 20px;
    border-radius: 30px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item {
    padding: 20px 0 15px;
    overflow: hidden;
    width: calc(100% + 30px);
    margin-left: -15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 18px;
    margin-bottom: 12px;
  }
}
.speaker-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: 30px;
}

@media only screen and (max-width: 720px) {
  .speaker-item__header {
    margin-left: 12px;
  }
}
.speaker-item__person {
  width: 90px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 30px;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__person {
    width: 58px;
    height: 58px;
    margin-right: 12px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__person {
    margin-right: 10px;
  }
}
.speaker-item__photo {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border-radius: 50%;
}

.speaker-item__play {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background: #C1492E;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  z-index: 3;
  left: -10px;
  top: -14px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.speaker-item__play svg {
  margin-left: 1px;
}

.speaker-item__play path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.speaker-item__play .fa-pause {
  font-size: 18px;
}

.speaker-item__play:hover {
  background: #fff;
  border-color: #C1492E;
  color: #C1492E;
}

.speaker-item__play:hover path {
  fill: #C1492E;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__play {
    top: -10px;
    left: -12px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__play {
    width: 24px;
    height: 24px;
    font-size: 8px;
    left: -6px;
    top: -4px;
  }
  .speaker-item__play-icon {
    width: 9px !important;
  }
  .speaker-item__pause-icon {
    width: 14px !important;
  }
  .speaker-item__play .fa-pause {
    font-size: 10px;
  }
}
.speaker-item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
}

.speaker-item__name a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
  color: #C1492E;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.speaker-item__name a:hover {
  text-decoration: underline;
}

.speaker-item__name img {
  display: block;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__name a {
    font-size: 18px;
  }
  .speaker-item__name img {
    width: 18px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__name {
    grid-gap: 4px;
  }
  .speaker-item__name a {
    max-width: 140px;
    font-size: 10px;
  }
  .speaker-item__name img {
    width: 13px;
  }
}
.speaker-item__address {
  font-size: 15px;
  font-weight: 400;
  color: #979AB3;
  line-height: 135%;
  margin-top: 5px;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__address {
    font-size: 12px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__address {
    max-width: 170px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 720px) {
  .mob-hide {
    display: none !important;
  }
}
.speaker-item__reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 25px;
  margin-top: 10px;
}

@media only screen and (max-width: 720px) {
  .speaker-item__reviews {
    grid-gap: 5px;
    margin-top: 6px;
  }
}
.speaker-item__star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 3px;
}

.speaker-item__star p {
  font-size: 16px;
  font-weight: 400;
  line-height: 135%;
  color: #3B4173;
  margin-right: 3px;
}

.speaker-item__star img {
  display: block;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__star p {
    font-size: 14px;
    margin-top: 2px;
  }
  .speaker-item__star img {
    width: 14px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__star {
    grid-gap: 4px;
  }
  .speaker-item__star p {
    font-size: 10px;
    margin-top: 1px;
  }
  .speaker-item__star img {
    width: 11px;
  }
}
.speaker-item__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 5px;
}

.speaker-item__counter p {
  font-size: 16px;
  font-weight: 400;
  line-height: 135%;
  color: #3B4173;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__counter p {
    font-size: 12px;
  }
  .speaker-item__counter img {
    width: 14px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__counter p {
    font-size: 10px;
  }
  .speaker-item__counter img {
    width: 12px;
  }
}
.speaker-item__shape {
  width: 235px;
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  right: 115px;
  top: 0;
}

.speaker-item__shape p {
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
  font-variant: all-small-caps;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__shape {
    width: 180px;
    padding: 15px 10px;
    right: 135px;
  }
  .speaker-item__shape p {
    font-size: 11px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__shape {
    width: 120px;
    padding: 7px 6px 14px;
    right: 25px;
  }
  .speaker-item__shape p {
    font-size: 7px;
  }
}
.speaker-item__shape-bg {
  width: 100%;
  display: block;
  -webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  position: absolute;
  left: 0;
  top: 0;
}

.speaker-item__like {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: absolute;
  top: 42px;
  right: 85px;
}

.speaker-item__like svg {
  display: block;
}

.speaker-item__like path {
  fill: rgba(193, 73, 46, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.speaker-item__like:hover path {
  fill: #c1492e;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__like {
    top: 25px;
    right: 25px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__like {
    display: none;
  }
}
.speaker-slider-wrap {
  position: relative;
}

.speaker-arrow {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #C1492E;
  background: #fff;
  position: absolute;
  top: calc(50% - 18px);
  z-index: 2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.speaker-arrow svg {
  display: block;
}

.speaker-arrow path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.speaker-arrow.swiper-button-lock {
  display: none;
}

.speaker-arrow:hover {
  background: #C1492E;
}

.speaker-arrow:hover path {
  stroke: #fff;
}

@media only screen and (max-width: 720px) {
  .speaker-arrow {
    display: none;
  }
}
.speaker-prev {
  left: -18px;
}

.speaker-next {
  right: -18px;
}

.speaker-item__gallery {
  overflow: hidden;
  border-radius: 30px;
  margin-top: 20px;
}

@media only screen and (max-width: 720px) {
  .speaker-item__gallery {
    overflow: visible;
  }
}
.speaker-item__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 10px), 1fr));
  grid-gap: 10px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .speaker-item__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 10px), 1fr));
  }
}
@media screen and (max-width: 980px) {
  .speaker-item__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 10px), 1fr));
  }
}
@media screen and (max-width: 700px) {
  .speaker-item__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% - 10px), 1fr));
  }
}
.speaker-item__wrapper img {
  max-width: 100%;
  display: block;
}

@media only screen and (max-width: 720px) {
  .speaker-item__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.speaker-item__gallery-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 27px;
}

@media only screen and (max-width: 720px) {
  .speaker-item__gallery-photo {
    width: 222px;
  }
}
.speaker-item__preview {
  width: 100%;
  height: 180px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 27px;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__preview {
    height: 140px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__preview {
    height: 155px;
    border-radius: 27px;
  }
}
.speaker-item__video {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background: #C1492E;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  z-index: 2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.speaker-item__video path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.speaker-item__video i {
  display: block;
  margin-left: 1px;
  margin-top: 1px;
}

.speaker-item__video:hover {
  background: #fff;
  border-color: #C1492E;
  color: #C1492E;
}

.speaker-item__video:hover path {
  fill: #C1492E;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__video {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.fancybox__content {
  padding: 0 !important;
}

.speaker-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-gap: 20px;
  margin-top: 20px;
}

@media only screen and (max-width: 720px) {
  .speaker-item__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-gap: 12px;
    margin-top: 15px;
  }
}
.speaker-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
}

.speaker-item__price img {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.speaker-item__price p {
  font-size: 20px;
  font-weight: 700;
  color: #C1492E;
  line-height: 135%;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__price img {
    width: 16px;
  }
  .speaker-item__price p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__price {
    grid-gap: 5px;
  }
  .speaker-item__price img {
    width: 10px;
  }
  .speaker-item__price p {
    font-size: 13px;
  }
}
.speaker-item__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 15px;
}

@media only screen and (max-width: 720px) {
  .speaker-item__nav {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.speaker-item__date {
  max-width: 100%;
  width: 170px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 13px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 16px "Roboto", sans-serif;
  text-align: center;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.speaker-item__date input {
  display: none;
}

.speaker-item__date::-moz-selection {
  color: inherit;
  /* Цвет текста */
  background: transparent;
  /* Цвет фона */
}

.speaker-item__date::selection {
  color: inherit;
  /* Цвет текста */
  background: transparent;
  /* Цвет фона */
}

.speaker-item__date *::-moz-selection {
  color: inherit;
  /* Цвет текста */
  background: transparent;
  /* Цвет фона */
}

.speaker-item__date *::selection {
  color: inherit;
  /* Цвет текста */
  background: transparent;
  /* Цвет фона */
}

.speaker-item__date:hover {
  background: #DF3E1A;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__date {
    width: 130px;
    height: 40px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__date {
    width: 125px;
    height: 30px;
    border-radius: 7px;
  }
}
.speaker-item__order {
  max-width: 100%;
  width: 170px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 13px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 16px "Roboto", sans-serif;
  text-align: center;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline-offset: 0px !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.speaker-item__order input {
  display: none;
}

.speaker-item__order::-moz-selection {
  color: inherit;
  /* Цвет текста */
  background: transparent;
  /* Цвет фона */
}

.speaker-item__order::selection {
  color: inherit;
  /* Цвет текста */
  background: transparent;
  /* Цвет фона */
}

.speaker-item__order *::-moz-selection {
  color: inherit;
  /* Цвет текста */
  background: transparent;
  /* Цвет фона */
}

.speaker-item__order *::selection {
  color: inherit;
  /* Цвет текста */
  background: transparent;
  /* Цвет фона */
}

.speaker-item__order:hover {
  background: #DF3E1A;
  text-decoration: none;
  color: #fff;
}

@media only screen and (max-width: 1200px) {
  .speaker-item__order {
    width: 130px;
    height: 40px;
    font-size: 14px;
    grid-gap: 7px;
  }
  .speaker-item__order img {
    width: 24px;
  }
}
@media only screen and (max-width: 720px) {
  .speaker-item__order {
    width: 125px;
    height: 30px;
    border-radius: 7px;
  }
  .speaker-item__order img {
    width: 20px;
  }
}
.speaker-item__progress {
  display: block;
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  -webkit-transform: rotate(-90deg) scale(1.05);
      -ms-transform: rotate(-90deg) scale(1.05);
          transform: rotate(-90deg) scale(1.05);
  color: #C1492E;
  fill: #F4F4F4;
  pointer-events: none;
  overflow: visible;
  position: absolute;
}

@media only screen and (max-width: 720px) {
  .speaker-item__progress {
    width: calc(100% + 4px);
    height: calc(100% + 4px);
  }
}
.speaker-item__progress-value {
  fill: none;
  stroke: #C1492E;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
}

.speaker-item__pause-icon {
  display: none;
}

.speaker-item__person.is-playing .speaker-item__play-icon {
  display: none;
}

.speaker-item__person.is-playing .speaker-item__pause-icon {
  display: block;
}

/* END singe cart Diktory */
/* Start redesign Personal */
.rd-personal-title {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .rd-personal-title {
    font-size: 28px;
  }
}

.rd-personal-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 25px;
}
@media only screen and (max-width: 1200px) {
  .rd-personal-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 720px) {
  .rd-personal-wrap {
    grid-gap: 0;
  }
}

.rd-personal-user {
  width: 372px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 720px) {
  .rd-personal-user {
    width: 300px;
    margin: 0 auto;
  }
}

.rd-personal-user__photo {
  position: relative;
  margin-bottom: 7px;
}

.rd-personal-user__label {
  display: block;
  position: relative;
  cursor: pointer;
}

.rd-personal-user__preview {
  width: 100%;
  height: 372px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 720px) {
  .rd-personal-user__preview {
    height: 300px;
  }
}

.rd-personal-user__label-quote {
  width: 98px;
  height: 31px;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 9px;
  bottom: 12px;
}
.rd-personal-user__label-quote svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-personal-user__label-quote span {
  display: block;
  font-size: 8px;
  line-height: 9px;
}
.rd-personal-user__label-quote input {
  display: none;
}

.rd-personal-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 13px;
}

.rd-personal-info__input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 12px;
  border: 1px solid #E8E8E8;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-personal-info__input:focus {
  border-color: #3B4173;
}

.rd-personal-info__group {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 12px;
  border: 1px solid #E8E8E8;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rd-personal-info__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 5px;
}
.rd-personal-info__label svg {
  display: block;
}
.rd-personal-info__label p {
  font-size: 15px;
  font-weight: 500;
  color: #3B4173;
}

.rd-personal-sub {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-personal-sub input {
  display: none;
}
.rd-personal-sub svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-personal-sub::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-sub::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-sub *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-sub *::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-sub:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-personal-sub.js-off {
  background: rgba(193, 73, 46, 0.6);
  pointer-events: none;
}

.rd-personal-link {
  margin-top: 13px;
}

.rd-personal-link__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #3B4173;
  text-decoration: underline;
  margin-bottom: 8px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-personal-link__item.rd-remove {
  color: #C1492E;
}
.rd-personal-link__item:last-child {
  margin-bottom: 0;
}

.rd-personal-order {
  width: 100%;
}
@media only screen and (max-width: 720px) {
  .rd-personal-order {
    margin-top: 60px;
  }
}

.rd-personal-order__mob-title {
  padding: 0 15px;
  font-size: 30px;
  font-weight: 600;
  color: #3B4173;
  margin-bottom: 20px;
}

.rd-personal-order__subtitle {
  font-size: 24px;
  line-height: 130%;
  color: #3B4173;
  margin-bottom: 20px;
}
@media only screen and (max-width: 720px) {
  .rd-personal-order__subtitle {
    padding: 0 15px;
    font-size: 20px;
  }
}

.rd-personal-order__link {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 15px;
  border: 1px solid #EAD2CC;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: 10px;
}
.rd-personal-order__link:last-child {
  margin-bottom: 0;
}
.rd-personal-order__link:hover {
  border-color: #3B4173;
  text-decoration: none !important;
  color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .rd-personal-order__link {
    width: calc(100% - 30px);
    margin: 0 auto 10px;
  }
}

.rd-personal-order__link-icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-personal-order__link-icon img {
  display: block;
  position: absolute;
}

.rd-personal-order__link-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
  color: #3B4173;
}

.rd-personal-order__item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 20px;
  border-radius: 15px;
  background: #F4F4F4;
  margin-bottom: 11px;
}
.rd-personal-order__item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 720px) {
  .rd-personal-order__item {
    grid-gap: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 720px) {
  .rd-personal-order__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.rd-personal-order__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 135%;
  color: #3B4173;
  text-decoration: none !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-personal-order__title:hover {
  color: #C1492E;
}

.rd-personal-order__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 10px;
  margin-top: 6px;
}
@media only screen and (max-width: 720px) {
  .rd-personal-order__tags {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0;
  }
}

.rd-personal-order__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 135%;
  grid-gap: 4px;
}
.rd-personal-order__tag p {
  color: #717171;
  font-size: 12px;
  opacity: 0.6;
}
.rd-personal-order__tag span {
  color: #717171;
  display: block;
}

.rd-personal-order__state {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 720px) {
  .rd-personal-order__state {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.rd-personal-order__status {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 4px;
}
.rd-personal-order__status p {
  color: #717171;
  font-size: 12px;
  opacity: 0.6;
}
.rd-personal-order__status span {
  padding: 2px 4px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.rd-order-work {
  background: #FF8D28;
}

.rd-order-сompleted {
  background: #34C759;
}

.rd-order-off {
  background: #DF3E1A;
}

.rd-personal-order__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 5px;
  margin-top: 6px;
}
.rd-personal-order__price p {
  color: #717171;
  font-size: 12px;
  opacity: 0.6;
}
.rd-personal-order__price b {
  display: block;
  font-size: 15px;
  line-height: 135%;
  color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .rd-personal-order__price b {
    margin-top: -1px;
  }
}

.rd-personal-order__all {
  max-width: 100%;
  width: 290px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-personal-order__all input {
  display: none;
}
.rd-personal-order__all svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-personal-order__all::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-order__all::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-order__all *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-order__all *::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-order__all:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-personal-order__all {
  background: #3B4173;
  margin: 30px auto 0;
}
.rd-personal-order__all.rd-personal-order__full-all {
  width: 100%;
}
.rd-personal-order__all:hover {
  background: #5E67B3;
}
@media only screen and (max-width: 720px) {
  .rd-personal-order__all {
    width: 300px;
    margin-top: 20px;
  }
  .rd-personal-order__all.rd-personal-order__full-all {
    width: 315px;
  }
}

.rd-personal-banner {
  width: 286px;
  padding: 37px 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 35px;
  background: url("../../img/rd-bg/rd-personal-banner-bg.svg") right bottom no-repeat, #BCBFD7;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 720px) {
  .rd-personal-banner {
    width: 300px;
    padding: 37px 15px;
    margin: 60px auto 0;
  }
}

.rd-personal-banner__title {
  padding: 0 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .rd-personal-banner__title {
    padding: 0;
    text-align: center;
  }
}

.rd-personal-banner__info {
  max-width: 230px;
  padding: 0 5px;
  font-size: 15px;
  line-height: 135%;
  color: #3B4173;
  margin-top: 30px;
}
@media only screen and (max-width: 720px) {
  .rd-personal-banner__info {
    max-width: 250px;
    padding: 0;
    text-align: center;
    margin: 30px auto 0;
  }
}

.rd-personal-banner__list {
  margin-top: 30px;
}

.rd-personal-banner__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 8px;
  margin-bottom: 10px;
}
.rd-personal-banner__item p {
  font-size: 15px;
  font-weight: 600;
  line-height: 135%;
  color: #3B4173;
}
.rd-personal-banner__item:last-child {
  margin-bottom: 0;
}

.rd-personal-banner__icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.rd-personal-banner__icon img {
  display: block;
  position: absolute;
}

.rd-personal-banner__profile {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-personal-banner__profile input {
  display: none;
}
.rd-personal-banner__profile svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-personal-banner__profile::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-banner__profile::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-banner__profile *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-banner__profile *::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-banner__profile:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-personal-banner__profile {
  background: #3B4173;
  margin-top: 30px;
}
.rd-personal-banner__profile:hover {
  background: #5E67B3;
}

/* End redesign Personal */
/* Start redesign Profile */
.rd-profile {
  margin-top: 60px;
}

.rd-profile-mob {
  width: 100%;
  margin-top: 60px;
}

.rd-profile__title {
  font-size: 30px;
  font-weight: 600;
  color: #3B4173;
  line-height: 135%;
}
@media only screen and (max-width: 720px) {
  .rd-profile__title {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 720px) {
  .rd-profile__slider {
    margin-top: 20px;
  }
}

.rd-profile-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 20px 6px;
  margin-top: 20px;
}

.rd-profile-item {
  width: 183px;
}
@media only screen and (max-width: 720px) {
  .rd-profile-item {
    width: 160px;
    height: auto;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.rd-profile-item__title {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 135%;
  color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .rd-profile-item__title {
    margin-bottom: 10px;
  }
}

.rd-profile-item__wrap {
  padding: 30px 10px 30px;
  border-radius: 35px;
  background: #F4F4F4;
  margin-top: 8px;
}
.rd-profile-item__wrap .rd-card__preview {
  margin-top: 0;
}
@media only screen and (max-width: 720px) {
  .rd-profile-item__wrap {
    margin-top: auto;
  }
}

.rd-profile-item__name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 15px;
  color: #3B4173;
  text-align: center;
  text-decoration: underline;
  margin: 20px auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-profile-item__name:hover {
  color: #C1492E;
}

.rd-profile-item__price {
  text-align: center;
  font-size: 15px;
  color: #3B4173;
  margin-top: 5px;
}
.rd-profile-item__price b {
  font-weight: 600;
}

.rd-profile-item__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 6px;
  font-size: 12px;
  color: #3B4173;
  line-height: 135%;
  margin-top: 5px;
}
.rd-profile-item__status::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-profile-item__status.rd-rejected::before {
  background: #DF3E1A;
}
.rd-profile-item__status.rd-moderation::before {
  background: #FFCC00;
}
.rd-profile-item__status.rd-posted::before {
  background: #34C759;
}

.rd-profile-item__change {
  width: 110px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  background: #FFF;
  font-size: 12px;
  font-weight: 700;
  color: #3B4173;
  margin: 15px auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-profile-item__change:hover {
  background: #C1492E;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 720px) {
  .rd-profile-item__change {
    font-size: 11px;
  }
}

.rd-profile-item__link {
  margin-top: 10px;
}
.rd-profile-item__link a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 12px;
  text-decoration: underline;
  color: #3B4173;
  margin: 0 auto 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-profile-item__link a:last-child {
  margin-bottom: 0;
}
.rd-profile-item__link a:hover {
  color: #C1492E;
}

/* End redesign Profile */
/* Start redesign Leading */
.rd-leading__nav {
  margin-top: 5px;
}
.rd-leading__nav .intro_navigation_58f7bdc3 {
  margin-bottom: 0;
}
.rd-leading__nav .intro_title_58f7bdc3 {
  margin-top: 40px;
}

.rd-leading__subtitle {
  font-size: 30px;
  font-weight: 600;
  color: #3B4173;
  margin-bottom: 25px;
}
@media only screen and (max-width: 720px) {
  .rd-leading__subtitle {
    font-size: 20px;
  }
}

.rd-leading__content {
  color: #3B4173;
}
.rd-leading__content p {
  font-size: 15px;
  line-height: 135%;
}
.rd-leading__content * {
  color: inherit;
}
.rd-leading__content *:first-child {
  margin-top: 0;
}
.rd-leading__content *:last-child {
  margin-bottom: 0;
}

.rd-leading__voiced {
  margin-top: 33px;
}
.rd-leading__voiced .info_list_info_character_photo_58f7bdc3 {
  width: 100%;
  height: 80px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 1px solid #C1492E;
}
.rd-leading__voiced .info_list_info_character_name_58f7bdc3 {
  font-size: 15px;
  line-height: 120%;
  color: #3B4173;
  text-align: center;
  margin-top: 5px;
}
@media only screen and (max-width: 720px) {
  .rd-leading__voiced .info_list_characters_58f7bdc3 {
    overflow: visible;
  }
  .rd-leading__voiced .info_list_info_character_photo_58f7bdc3 {
    width: 64px;
    height: 64px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .rd-leading__voiced .info_list_info_character_58f7bdc3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 6px;
  }
}

.rd-leading__voiced-title {
  font-size: 15px;
  color: #3B4173;
  font-weight: 600;
  margin-bottom: 15px;
}

.rd-leading__price {
  margin-top: 25px;
}

.rd-leading__price-item {
  padding: 22px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
  border-radius: 15px;
  background: #F4F4F4;
  margin-bottom: 25px;
}
.rd-leading__price-item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 720px) {
  .rd-leading__price-item {
    padding: 15px;
    margin-bottom: 15px;
  }
  .rd-leading__price-item:last-child {
    margin-bottom: 0;
  }
}

.rd-leading__price-title {
  width: 70%;
  font-size: 15px;
  font-weight: 600;
  line-height: 135%;
  color: #3B4173;
}

.rd-leading__price-rub {
  width: 30%;
  font-size: 15px;
  font-weight: 600;
  line-height: 13%;
  text-align: right;
  color: #C1492E;
}

.rd-leading__video {
  margin-top: 45px;
}
.rd-leading__video .info_list_video_58f7bdc3 {
  height: 470px;
  border-radius: 22px;
}
@media only screen and (max-width: 720px) {
  .rd-leading__video .info_list_video_58f7bdc3 {
    height: 170px;
  }
}

.rd-leading__swiper-arrow {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 25px;
  margin-top: 15px;
  margin-left: auto;
}
@media only screen and (max-width: 720px) {
  .rd-leading__swiper-arrow {
    grid-gap: 9px;
    margin: 15px auto 0;
  }
}

.rd-leading__arrow {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #C1492E;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none !important;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-leading__arrow.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.rd-leading__arrow svg {
  display: block;
}
.rd-leading__arrow path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-leading__arrow:hover {
  background: #C1492E;
}
.rd-leading__arrow:hover path {
  fill: #fff;
}
@media only screen and (max-width: 720px) {
  .rd-leading__arrow {
    width: 33px;
    height: 33px;
  }
}

.rd-leading__gallery {
  margin-top: 45px;
}
.rd-leading__gallery .info_list_photo_image_58f7bdc3 {
  width: 100%;
  height: 133px;
  border-radius: 20px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 720px) {
  .rd-leading__gallery .info_list_photo_image_58f7bdc3 {
    height: 96px;
    border-radius: 15px;
  }
}

.rd-leading__reviews {
  margin-top: 45px;
}

.info_comment_58f7bdc3 {
  padding: 20px 40px;
  position: relative;
  border: 1px solid #F4F4F4;
  border-radius: 15px;
}
@media screen and (max-width: 810px) {
  .info_comment_58f7bdc3 {
    padding: 10px 20px;
  }
}

.info_comment_author_58f7bdc3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.info_comment_author_name_58f7bdc3 {
  font-size: 15px;
  line-height: 18px;
  color: #3B4173;
  font-weight: 600;
}
@media screen and (max-width: 810px) {
  .info_comment_author_name_58f7bdc3 {
    font-size: 10px;
    line-height: 12px;
  }
}

.info_comment_author_date_58f7bdc3 {
  font-size: 15px;
  line-height: 18px;
  color: #717171;
}
@media screen and (max-width: 810px) {
  .info_comment_author_date_58f7bdc3 {
    font-size: 10px;
    line-height: 12px;
  }
}

.info_comment_text_58f7bdc3 {
  font-size: 15px;
  line-height: 18px;
}
@media screen and (max-width: 810px) {
  .info_comment_text_58f7bdc3 {
    font-size: 10px;
    line-height: 12px;
  }
}

.info_comment_button_58f7bdc3 {
  position: absolute;
  top: 20px;
  right: 40px;
  background-color: transparent;
  border: none;
  color: #717171;
  font-size: 15px;
  line-height: 18px;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 810px) {
  .info_comment_button_58f7bdc3 {
    font-size: 10px;
    line-height: 12px;
    top: 10px;
    right: 20px;
  }
}

.info_comment_button_58f7bdc3:hover {
  color: #3b4173;
  -webkit-text-decoration-color: #3b4173;
          text-decoration-color: #3b4173;
}

.info_comment_add_58f7bdc3 {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  border: 1px solid #C1492E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin: 15px auto 0;
}
@media screen and (max-width: 810px) {
  .info_comment_add_58f7bdc3 {
    width: 34px;
    height: 34px;
  }
}

.info_comment_add_58f7bdc3::after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #C1492E;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 810px) {
  .info_comment_add_58f7bdc3::after {
    width: 17px;
  }
}

.info_comment_add_58f7bdc3:before {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #C1492E;
  position: absolute;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 810px) {
  .info_comment_add_58f7bdc3:before {
    width: 17px;
  }
}

.info_comment_add_58f7bdc3:hover {
  background-color: #C1492E;
}

.info_comment_add_58f7bdc3:hover::after {
  background-color: white;
}

.info_comment_add_58f7bdc3:hover::before {
  background-color: white;
}

.info_comment_add_disabled_58f7bdc3 {
  opacity: 0.4;
}

.info_comment_navigation_58f7bdc3 {
  background-color: #F4F4F4;
  padding: 20px 40px;
  border-radius: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
@media screen and (max-width: 810px) {
  .info_comment_navigation_58f7bdc3 {
    padding: 15px 20px;
    border-radius: 15px;
  }
}

.info_comment_pagination_container_58f7bdc3 {
  max-width: calc(100% - 110px);
}

.comment-form-container {
  display: none;
  margin: 20px 0;
}

.info_swiper_navigation_58f7bdc3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 45px;
  gap: 25px;
}
@media screen and (max-width: 810px) {
  .info_swiper_navigation_58f7bdc3 {
    gap: 9px;
    margin-bottom: 35px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.info_comment_pagination_58f7bdc3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 75px;
}
.info_comment_pagination_58f7bdc3 .swiper-pagination-bullet {
  width: 23px !important;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  background: none !important;
  text-align: center;
  padding: 0 !important;
  font-size: 20px;
  color: #3B4173;
  border-bottom: 2px solid transparent;
  line-height: 135%;
  opacity: 1 !important;
  outline: none !important;
  border-radius: 0 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 !important;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.info_comment_pagination_58f7bdc3 .swiper-pagination-bullet:hover {
  color: #C1492E;
}
.info_comment_pagination_58f7bdc3 .swiper-pagination-bullet-active {
  border-color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .info_comment_pagination_58f7bdc3 {
    grid-gap: 24px;
  }
  .info_comment_pagination_58f7bdc3 .swiper-pagination-bullet {
    width: 17px !important;
    font-size: 15px;
  }
}

.info_swiper_button_58f7bdc3 {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #C1492E;
  outline: none;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.info_swiper_button_58f7bdc3.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.info_swiper_button_58f7bdc3 svg {
  display: block;
}
.info_swiper_button_58f7bdc3 path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.info_swiper_button_58f7bdc3:hover {
  background: #C1492E;
}
.info_swiper_button_58f7bdc3:hover path {
  fill: #fff;
}
@media screen and (max-width: 810px) {
  .info_swiper_button_58f7bdc3 {
    width: 33px;
    height: 33px;
  }
}

.rd-leading__movie {
  margin-top: 45px;
}
@media only screen and (max-width: 720px) {
  .rd-leading__movie .swiper {
    overflow: visible;
  }
}

.rd-leading__movie-photo {
  width: 100%;
  height: 220px;
  border-radius: 13px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 720px) {
  .rd-leading__movie-photo {
    height: 205px;
  }
}

.rd-leading__movie-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 135%;
  color: #3B4173;
  margin-top: 15px;
}
@media only screen and (max-width: 720px) {
  .rd-leading__movie-title {
    font-size: 15px;
  }
}

.rd-leading__movie-info {
  font-size: 15px;
  line-height: 135%;
  color: #3B4173;
  margin-top: 10px;
}
@media only screen and (max-width: 720px) {
  .rd-leading__movie-info {
    margin-top: 5px;
  }
}

.new_leading {
  overflow: hidden;
  padding-bottom: 200px;
  margin-top: 75px;
}
@media only screen and (max-width: 720px) {
  .new_leading {
    padding-bottom: 0;
  }
}

.page-visible {
  overflow-x: visible;
}
@media only screen and (max-width: 1200px) {
  .page-visible {
    overflow-x: hidden;
  }
}

.rd-leading__sticky-frame {
  max-width: 1268px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .rd-leading__sticky-frame {
    max-width: 700px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 720px) {
  .rd-leading__sticky-frame {
    max-width: 100%;
  }
  .rd-leading__sticky-frame .rd-leading__sticky-item, .rd-leading__sticky-frame .info_58f7bdc3 {
    max-width: 320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.rd-leading__sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 105px;
  position: relative;
}

.rd-leading__sticky-item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 100px;
}
@media only screen and (max-width: 1200px) {
  .rd-leading__sticky-item {
    position: static;
  }
}

.rd-leading__sidebar-price-info {
  font-size: 15px;
  color: #717171;
}

.rd-leading__sidebar-price-rub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 18px;
  margin-top: 5px;
}
.rd-leading__sidebar-price-rub svg {
  display: block;
}
.rd-leading__sidebar-price-rub p {
  color: #3B4173;
  font-size: 25px;
  font-weight: 600;
  line-height: 135%;
}
@media only screen and (max-width: 720px) {
  .rd-leading__sidebar-price-rub p {
    font-size: 20px;
  }
}

.rd-leading__voiced-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}
.rd-leading__voiced-wrap .rd-leading__voiced-title, .rd-leading__voiced-wrap .rd-leading__subtitle {
  margin-bottom: 0;
}

.rd-leading__voiced-arrow a {
  display: block;
  margin-bottom: 4px;
}
.rd-leading__voiced-arrow a:last-child {
  margin-bottom: 0;
}
.rd-leading__voiced-arrow svg {
  display: block;
}

/* End redesign Leading */
/* Start redesign Order */
.rd-order {
  padding-bottom: 140px;
  margin-top: 55px;
}
@media only screen and (max-width: 720px) {
  .rd-order {
    margin-top: 20px;
    padding-bottom: 85px;
  }
}

.rd-order-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 70px;
}
@media only screen and (max-width: 1200px) {
  .rd-order-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 30px;
  }
}

.rd-order-frame {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  padding: 40px 40px 30px;
  border-radius: 15px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 30px 0 rgba(113, 113, 113, 0.25);
          box-shadow: 0 0 30px 0 rgba(113, 113, 113, 0.25);
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .rd-order-frame {
    width: 100%;
  }
}
@media only screen and (max-width: 720px) {
  .rd-order-frame {
    padding: 30px 15px;
  }
}

.rd-order-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #E8E8E8;
}

.rd-order-title {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}
@media only screen and (max-width: 720px) {
  .rd-order-title {
    font-size: 20px;
  }
}

.rd-order-subtitle {
  color: rgba(113, 113, 113, 0.6);
  font-size: 15px;
  margin-top: 10px;
}
.rd-order-subtitle span {
  color: #717171;
}
.rd-order-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 30px;
  margin-top: 30px;
}
@media only screen and (max-width: 1200px) {
  .rd-order-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 720px) {
  .rd-order-product {
    margin-top: 20px;
    grid-gap: 5px;
  }
}

.rd-order-left {
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 720px) {
  .rd-order-left {
    width: 100%;
  }
}

.rd-order-type p {
  font-size: 20px;
  font-weight: 500;
  color: #3B4173;
}
@media only screen and (max-width: 720px) {
  .rd-order-type {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .rd-order-type p {
    font-size: 18px;
    color: #717171;
  }
}

.rd-order-contractor {
  font-size: 20px;
  font-weight: 500;
  color: #3B4173;
  margin-top: 60px;
}
@media only screen and (max-width: 720px) {
  .rd-order-contractor {
    font-size: 18px;
    margin-top: 20px;
  }
}

.rd-order-preview {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
@media only screen and (max-width: 1200px) {
  .rd-order-preview {
    width: 100%;
  }
}

.rd-order-preview-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 20px;
}

.rd-order-preview-title {
  font-size: 20px;
  color: #717171;
  font-weight: 500;
}

.rd-order-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 16px;
}
.rd-order-arrow a {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none !important;
  border: 1px solid #C1492E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-order-arrow a:hover {
  background: #C1492E;
}
.rd-order-arrow a:hover path {
  fill: #fff;
}
.rd-order-arrow a.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.rd-order-arrow svg {
  display: block;
}
.rd-order-arrow path {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 720px) {
  .rd-order-arrow {
    margin-left: auto;
  }
}

.rd-order-work-slider {
  width: 580px;
}
@media only screen and (min-width: 720px) {
  .rd-order-work-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 3 - 17px), 1fr));
    grid-gap: 17px 17px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1200px) {
  .rd-order-work-slider .swiper-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 17px), 1fr));
  }
}
@media only screen and (min-width: 720px) and (max-width: 980px) {
  .rd-order-work-slider .swiper-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 17px), 1fr));
  }
}
@media only screen and (min-width: 720px) and (max-width: 700px) {
  .rd-order-work-slider .swiper-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 17px), 1fr));
  }
}
@media only screen and (min-width: 720px) {
  .rd-order-work-slider .swiper-wrapper img {
    max-width: 100%;
    display: block;
  }
}
.rd-order-work-slider {
  margin: 65px 0 0;
}
.rd-order-work-slider .rd-profile-item__wrap {
  min-height: 250px;
  padding-bottom: 20px;
  margin-top: 0;
  margin-bottom: 15px;
}
.rd-order-work-slider .rd-card__header {
  padding: 0 10px;
  margin: -15px 0 20px;
}
.rd-order-work-slider .speaker-item__play {
  top: -3px;
}
.rd-order-work-slider .rd-profile-item__name {
  color: #C1492E;
}
@media only screen and (max-width: 720px) {
  .rd-order-work-slider {
    width: 100%;
    margin-top: 10px;
  }
  .rd-order-work-slider .rd-profile-item {
    width: 100%;
  }
  .rd-order-work-slider .rd-profile-item__wrap {
    min-height: 262px;
    border-radius: 30px;
  }
  .rd-order-work-slider .rd-profile-item__name {
    text-underline-offset: 3px;
  }
  .rd-order-work-slider .rd-profile-item__price {
    font-size: 14px;
  }
  .rd-order-work-slider .rd-card__header {
    margin-bottom: 15px;
  }
  .rd-order-work-slider .rd-profile-item__title {
    margin-bottom: 0;
  }
}

.is-playing .speaker-item__play-icon {
  display: none;
}
.is-playing .speaker-item__pause-icon {
  display: block;
}

.rd-order-conditions {
  padding: 20px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 35px;
  background: #F6F6F6;
  margin-top: 70px;
}
@media only screen and (max-width: 1200px) {
  .rd-order-conditions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 720px) {
  .rd-order-conditions {
    min-height: 320px;
  }
}

.rd-order-conditions__title {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #3B4173;
  font-size: 20px;
  line-height: 115%;
  font-weight: 500;
}
@media only screen and (max-width: 1200px) {
  .rd-order-conditions__title {
    width: 100%;
  }
}
@media only screen and (max-width: 720px) {
  .rd-order-conditions__title {
    font-size: 18px;
  }
}

.rd-order-conditions__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
@media only screen and (max-width: 1200px) {
  .rd-order-conditions__content {
    width: 100%;
  }
}

.rd-order-conditions__list {
  font-size: 15px;
  line-height: 150%;
  color: #717171;
  counter-reset: num;
}
.rd-order-conditions__list li::before {
  content: counter(num) ".";
  counter-increment: num;
}

.rd-order-bar {
  width: 325px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 1200px) {
  .rd-order-bar {
    width: 100%;
    margin-top: -10px;
  }
}

.rd-order-bar-main {
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px 0 rgba(113, 113, 113, 0.25);
          box-shadow: 0 0 30px 0 rgba(113, 113, 113, 0.25);
}
@media only screen and (max-width: 1200px) {
  .rd-order-bar-main {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media only screen and (max-width: 720px) {
  .rd-order-bar-main {
    padding: 20px 15px;
  }
}

.rd-order-check {
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 15px;
}

.rd-order-check__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 15px;
  margin-bottom: 10px;
}
.rd-order-check__item:last-child {
  margin-bottom: 0;
}

.rd-order-check__title {
  width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #717171;
  font-size: 15px;
  line-height: 135%;
}

.rd-order-check__status {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  color: #fff;
  padding: 2px 5px 0px;
  border-radius: 4px;
}

.rd-order-check__date {
  text-align: right;
  font-size: 15px;
  font-weight: 600;
  color: #717171;
}

.rd-order-check__price {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  color: #3B4173;
}

.rd-order-pay {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-order-pay input {
  display: none;
}
.rd-order-pay svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-order-pay::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-order-pay::selection {
  color: inherit;
  background: transparent;
}
.rd-order-pay *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-order-pay *::selection {
  color: inherit;
  background: transparent;
}
.rd-order-pay:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-order-pay {
  background: #3B4173;
  font-family: "Roboto", sans-serif;
  margin-top: 17px;
}
.rd-order-pay:hover {
  background: #5E67B3;
}

.rd-order-manager {
  margin-top: 20px;
}

.rd-order-manager__title {
  font-size: 15px;
  line-height: 135%;
  color: #717171;
}

.rd-order-manager__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
  margin-top: 15px;
}

.rd-order-manager__photo {
  width: 78px;
  height: 78px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.rd-order-manager__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

.rd-order-manager__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 135%;
  color: #3B4173;
}

.rd-order-manager__back {
  margin-top: 10px;
}

.rd-order-manager__back-title {
  font-size: 12px;
  color: #3B4173;
  line-height: 135%;
}

.rd-order-manager__back-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 4px;
  margin-top: 7px;
}

.rd-order-manager__back-link {
  width: 30px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-order-manager__back-link img {
  width: 100%;
  display: block;
  border-radius: 50%;
}
.rd-order-manager__back-link:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.rd-order-manager__tips {
  max-width: 195px;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #3B4173;
  color: #3B4173;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 15px;
  margin-top: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-order-manager__tips:hover {
  background: #3B4173;
  color: #fff;
}
@media only screen and (max-width: 720px) {
  .rd-order-manager__tips {
    max-width: 210px;
  }
}

.rd-order-other {
  padding: 20px;
  border-radius: 15px;
  background: #BDBFD9;
  margin-top: 30px;
}
@media only screen and (max-width: 1200px) {
  .rd-order-other {
    width: 100%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 720px) {
  .rd-order-other {
    padding: 20px 15px;
    padding-right: 30px;
  }
}

.rd-order-other__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  color: #3B4173;
}

.rd-order-other__list {
  margin-top: 24px;
}
@media only screen and (max-width: 720px) {
  .rd-order-other__list {
    margin-top: 15px;
  }
}

.rd-order-other__item {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #5E67B3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #3B4173;
  text-decoration: none !important;
  margin-bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-order-other__item:last-child {
  margin-bottom: 0;
}
.rd-order-other__item:nth-child(1) path, .rd-order-other__item:nth-child(4) path {
  stroke: none !important;
}
.rd-order-other__item svg {
  display: block;
}
.rd-order-other__item path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-order-other__item:hover {
  background: #3B4173;
  color: #fff;
}
.rd-order-other__item:hover path {
  fill: #fff;
  stroke: #fff;
}

.rd-order-paid {
  text-align: right;
  font-size: 15px;
  font-weight: 500;
  color: #C1492E;
}

/* End redesign Order */
.open-frame {
  overflow: hidden;
}

.rd-popup-frame {
  width: 100%;
  height: 100%;
  padding: 70px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  left: 0;
  top: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-frame.rd-active {
  opacity: 1;
  pointer-events: inherit;
}

.js-modal {
  cursor: pointer;
}

.rd-popup {
  display: none;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.rd-popup-close {
  display: block;
  cursor: pointer;
  position: absolute;
  top: -21px;
  right: -18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.rd-popup-default {
  width: 500px;
  padding: 40px;
  border-radius: 55px;
  background: #F4F4F4;
}
.rd-popup-default .rd-login__label {
  margin-bottom: 15px;
}
.rd-popup-default .rd-login__input {
  color: #5E67B3;
}
.rd-popup-default .rd-login__label-text {
  text-align: left;
  padding-left: 15px;
  color: #DF3E1A;
  font-size: 10px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-default {
    width: 300px;
    padding: 40px 15px;
    border-radius: 35px;
  }
}

.rd-popup-title {
  font-size: 30px;
  line-height: 135%;
  font-weight: 600;
  color: #3B4173;
  margin-bottom: 15px;
}
.rd-popup-title.rd-center {
  text-align: center;
}

.rd-popup-sub {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-sub input {
  display: none;
}
.rd-popup-sub svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-sub::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-sub::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-sub *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-sub *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-sub:hover {
  background: #DF3E1A;
  text-decoration: none;
}

.rd-popup-email__thanks {
  display: none;
}

.rd-popup-email__info {
  font-size: 15px;
  line-height: 18px;
  color: #3B4173;
  margin-top: -5px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-email__info {
    text-align: center;
  }
}

.rd-popup-email__btn {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-email__btn input {
  display: none;
}
.rd-popup-email__btn svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-email__btn::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-email__btn::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-email__btn *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-email__btn *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-email__btn:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-popup-email__btn {
  margin-top: 15px;
}

.rd-personal-tg__nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  grid-gap: 8px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .rd-personal-tg__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
@media screen and (max-width: 980px) {
  .rd-personal-tg__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
@media screen and (max-width: 700px) {
  .rd-personal-tg__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 1 - 15px), 1fr));
  }
}
.rd-personal-tg__nav img {
  max-width: 100%;
  display: block;
}
.rd-personal-tg__nav {
  margin-top: 15px;
}
.rd-personal-tg__nav a {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-personal-tg__nav a input {
  display: none;
}
.rd-personal-tg__nav a svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-personal-tg__nav a::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-tg__nav a::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-tg__nav a *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-personal-tg__nav a *::selection {
  color: inherit;
  background: transparent;
}
.rd-personal-tg__nav a:hover {
  background: #DF3E1A;
  text-decoration: none;
}

.rd-popup-questionnaire {
  width: 785px;
  padding: 25px 140px 80px;
  border-radius: 55px;
  background: #F4F4F4;
}
@media only screen and (max-width: 720px) {
  .rd-popup-questionnaire {
    width: 330px;
    padding: 12px 15px 40px;
    border-radius: 35px;
  }
}

.rd-popup-questionnaire__title {
  width: 100%;
  background: #F4F4F4;
  padding: 25px 0;
  position: sticky;
  z-index: 10;
  top: -70px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-questionnaire__title {
    width: calc(100% + 6px);
    margin-left: -3px;
    padding: 12px 0;
    text-align: center;
  }
}

.rd-questionnaire-list {
  margin-top: 25px;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire-list {
    margin-top: 11px;
  }
}

.rd-questionnaire-item {
  margin-bottom: 20px;
}
.rd-questionnaire-item:last-child {
  margin-bottom: 0;
}

.rd-questionnaire-item__title {
  color: #717171;
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 8px;
}

.rd-questionnaire__preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
}

.rd-questionnaire__preview-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.rd-questionnaire__preview__nav {
  margin-top: auto;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__preview__nav {
    margin-top: 10px;
  }
}

.rd-questionnaire__file {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__file input {
  display: none;
}
.rd-questionnaire__file svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__file::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__file::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__file *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__file *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__file:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-questionnaire__file {
  background: #3B4173;
  margin-bottom: 10px;
}
.rd-questionnaire__file:hover {
  background: #5E67B3;
}

.rd-questionnaire__lk {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__lk input {
  display: none;
}
.rd-questionnaire__lk svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__lk::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__lk::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__lk *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__lk *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__lk:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-questionnaire__lk {
  border: 1px solid #3B4173;
  color: #3B4173 !important;
  background: transparent;
}
.rd-questionnaire__lk:hover {
  color: #fff !important;
  background: #3B4173;
}

.rd-questionnaire__preview-photo {
  width: 240px;
  height: 240px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__preview-photo {
    width: 100%;
    height: 300px;
  }
}

.rd-select {
  position: relative;
  z-index: 2;
}
.rd-select.is-open {
  z-index: 10;
}
.rd-select.is-open .rd-select__drop {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.rd-select.is-open .rd-select__active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.rd-select__active {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-select__active p {
  font-size: 15px;
  line-height: 130%;
  color: #3B4173;
}
.rd-select__active svg {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rd-select__active:hover {
  border-color: #3B4173;
}

.rd-select__drop {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 1px;
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
}

.rd-select__drop-item {
  margin-bottom: 10px;
}
.rd-select__drop-item p {
  font-size: 15px;
  line-height: 130%;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-select__drop-item:last-child {
  margin-bottom: 0;
}
.rd-select__drop-item:hover p {
  color: #C1492E;
}

.js-checkbox {
  cursor: pointer;
}
.js-checkbox input {
  display: none;
}

.rd-questionnaire__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 5px;
  margin-bottom: 10px;
}
.rd-questionnaire__checkbox:last-child {
  margin-bottom: 0;
}
.rd-questionnaire__checkbox.rd-active .rd-questionnaire__checkbox-icon {
  background: #3B4173;
  border-color: #3B4173;
}
.rd-questionnaire__checkbox.rd-active .rd-questionnaire__checkbox-icon svg {
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}

.rd-questionnaire__checkbox-icon {
  width: 12px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #BCBFD7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__checkbox-icon svg {
  display: block;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.rd-questionnaire__checkbox-title {
  font-size: 15px;
  line-height: 130%;
  color: #3B4173;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}

.rd-questionnaire__quote {
  padding-left: 10px;
  border-left: 2px solid #3B4173;
  margin-top: 10px;
}
.rd-questionnaire__quote p {
  font-size: 12px;
  color: #717171;
}

.rd-questionnaire__textarea {
  width: 100%;
  height: 78px;
  padding: 13px 15px;
  border-radius: 12px;
  resize: none;
  border: 1px solid #fff;
  outline: none;
  font-size: 15px;
  background: #fff;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__textarea:focus {
  border-color: #3B4173;
}
.rd-questionnaire__textarea::-webkit-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea::-moz-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea:-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea::-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea::placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__textarea.rd-size-textarea_120 {
  height: 120px;
}

.rd-questionnaire__photo-hint {
  width: 100%;
  display: block;
  border-radius: 8px;
  margin-top: 8px;
}

.rd-questionnaire__variant-item {
  margin-bottom: 15px;
}
.rd-questionnaire__variant-item p {
  font-size: 15px;
  color: #3B4173;
}
.rd-questionnaire__variant-item:last-child {
  margin-bottom: 0;
}

.rd-questionnaire__variant-title {
  font-weight: 700;
}

.rd-questionnaire__variant-quote {
  color: #717171;
  font-size: 15px;
  margin-top: 15px;
}

.rd-questionnaire__variant-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}
.rd-questionnaire__variant-nav a {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__variant-nav a input {
  display: none;
}
.rd-questionnaire__variant-nav a svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__variant-nav a::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__variant-nav a::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__variant-nav a *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__variant-nav a *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__variant-nav a:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-questionnaire__variant-nav a {
  background: transparent;
  border: 1px solid #C1492E;
  color: #C1492E !important;
}
.rd-questionnaire__variant-nav a:hover {
  background: #C1492E;
  color: #fff !important;
}
.rd-questionnaire__variant-nav .rd-popup-create-prev {
  width: 112px;
}

.rd-questionnaire__variant-max {
  width: 150px !important;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__variant-max {
    width: calc(50% - 8px) !important;
  }
}

.rd-questionnaire__variant-tg {
  width: 200px !important;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__variant-tg {
    width: calc(50% - 8px) !important;
  }
}

.rd-questionnaire__input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__input::-webkit-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input::-moz-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input:-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input::-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input::placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__input:focus {
  border-color: #3B4173;
}

.rd-questionnaire__nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  grid-gap: 15px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .rd-questionnaire__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
@media screen and (max-width: 980px) {
  .rd-questionnaire__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
@media screen and (max-width: 700px) {
  .rd-questionnaire__nav {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 15px), 1fr));
  }
}
.rd-questionnaire__nav img {
  max-width: 100%;
  display: block;
}

.rd-questionnaire__delete {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__delete input {
  display: none;
}
.rd-questionnaire__delete svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__delete::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__delete::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__delete *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__delete *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__delete:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-questionnaire__delete {
  background: transparent;
  border: 1px solid #C1492E;
  color: #C1492E !important;
}
.rd-questionnaire__delete:hover {
  background: #C1492E;
  color: #fff !important;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__delete {
    height: 40px;
    font-size: 14px;
  }
}

.rd-questionnaire__sub {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__sub input {
  display: none;
}
.rd-questionnaire__sub svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-questionnaire__sub::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__sub::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__sub *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__sub *::selection {
  color: inherit;
  background: transparent;
}
.rd-questionnaire__sub:hover {
  background: #DF3E1A;
  text-decoration: none;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__sub {
    height: 40px;
  }
}

.rd-questionnaire__cat {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__cat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.rd-questionnaire__cat-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #5E67B3;
  cursor: pointer;
}
.rd-questionnaire__cat-file input {
  display: none;
}
.rd-questionnaire__cat-file svg {
  display: block;
}

.rd-questionnaire__cat-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
}
.rd-questionnaire__cat-group .rd-select {
  width: 105px;
}
.rd-questionnaire__cat-group .rd-select__active {
  height: 27px;
}
.rd-questionnaire__cat-group .rd-select__active p {
  font-size: 12px;
}
.rd-questionnaire__cat-group .rd-select__active svg {
  width: 6px;
}
.rd-questionnaire__cat-group .rd-select__drop {
  padding: 12px;
}
.rd-questionnaire__cat-group .rd-select__drop-item p {
  font-size: 12px;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__cat-group .rd-select {
    width: calc(33.3333333333% - 5px);
  }
}

.rd-questionnaire__cat-input {
  width: 110px;
  height: 27px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #fff;
  outline: none;
  border-radius: 12px;
  font-size: 12px;
  color: #3B4173;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-questionnaire__cat-input:focus {
  border-color: #3B4173;
}
.rd-questionnaire__cat-input::-webkit-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__cat-input::-moz-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__cat-input:-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__cat-input::-ms-input-placeholder {
  color: #BCBFD7;
}
.rd-questionnaire__cat-input::placeholder {
  color: #BCBFD7;
}
@media only screen and (max-width: 720px) {
  .rd-questionnaire__cat-input {
    width: calc(33.3333333333% - 5px);
  }
}

.rd-popup-create {
  width: 740px;
  padding: 80px 120px;
  border-radius: 55px;
  background: #F4F4F4;
}
.rd-popup-create .rd-popup-title {
  margin-bottom: 20px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create {
    width: 330px;
    padding: 40px 15px;
    border-radius: 35px;
  }
  .rd-popup-create .rd-popup-title {
    margin-bottom: 15px;
  }
}

.rd-popup-create-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 4px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create-progress {
    margin-bottom: 20px;
  }
}

.rd-popup-create-progress__item {
  width: 100%;
  height: 2px;
  background: #717171;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-create-progress__item.rd-active {
  background: #C1492E;
}

.rd-popup-create-item {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 300px;
}
.rd-popup-create-item .rd-questionnaire-item__title {
  margin-bottom: 12px;
}
.rd-popup-create-item .rd-questionnaire__quote {
  margin-top: 0;
  margin-bottom: 20px;
}
.rd-popup-create-item .rd-questionnaire__photo-hint {
  margin-bottom: 18px;
}
.rd-popup-create-item.rd-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create-item {
    min-height: auto;
  }
  .rd-popup-create-item .rd-questionnaire__quote {
    margin-bottom: 12px;
  }
  .rd-popup-create-item .rd-questionnaire__variant-nav {
    grid-gap: 10px;
  }
  .rd-popup-create-item .rd-questionnaire__variant-nav .rd-popup-create-prev, .rd-popup-create-item .rd-questionnaire__variant-nav .rd-questionnaire__variant-max, .rd-popup-create-item .rd-questionnaire__variant-nav .rd-questionnaire__variant-tg {
    width: calc(50% - 5px) !important;
  }
}

.rd-popup-create-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
  margin-top: auto;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create-nav {
    margin-top: 15px;
    grid-gap: 10px;
  }
}

.rd-popup-create-prev {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-create-prev input {
  display: none;
}
.rd-popup-create-prev svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-create-prev::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-prev::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-prev *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-prev *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-prev:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-popup-create-prev {
  background: transparent;
  border: 1px solid #C1492E;
  color: #C1492E !important;
}
.rd-popup-create-prev:hover {
  background: #C1492E;
  color: #fff !important;
}

.rd-popup-create-next {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-create-next input {
  display: none;
}
.rd-popup-create-next svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-create-next::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-next::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-next *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-next *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-next:hover {
  background: #DF3E1A;
  text-decoration: none;
}

.rd-popup-create-sub {
  max-width: 100%;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
  border-radius: 15px;
  background: #C1492E;
  font: 500 15px "Roboto";
  text-align: center;
  color: #fff !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rd-popup-create-sub input {
  display: none;
}
.rd-popup-create-sub svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rd-popup-create-sub::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-sub::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-sub *::-moz-selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-sub *::selection {
  color: inherit;
  background: transparent;
}
.rd-popup-create-sub:hover {
  background: #DF3E1A;
  text-decoration: none;
}
.rd-popup-create-sub {
  margin-top: 25px;
}
@media only screen and (max-width: 720px) {
  .rd-popup-create-sub {
    width: calc(50% - 5px);
    margin-top: 0;
  }
}

.info_swiper_button_disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

