

/* Start:/local/templates/.default/components/bitrix/sale.personal.section/sv-template/style.css?174088049430920*/
.profile-page {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
  font-family: BloggerSans-ailita, sans-serif;
}
@media screen and (max-width: 768px) {
  .profile-page {
    display: block;
  }
}
.profile-page .profile-page__aside {
  width: 300px;
  padding-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 65px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .profile-page .profile-page__aside {
    width: 100%;
    border-bottom: 1px solid rgba(91, 101, 113, 0.2);
    border-right: 0px;
    margin-bottom: 20px;
  }
}
.profile-page .profile-page__content {
  width: calc(100% - 300px);
  padding: 10px 20px 10px 70px;
}
@media screen and (max-width: 1470px) {
  .profile-page .profile-page__content {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .profile-page .profile-page__content {
    width: 100%;
    padding-left: 0px;
  }
}
@media screen and (max-width: 480px) {
  .profile-page .profile-page__content {
    padding: 10px;
  }
}
.profile-page .profile-page__content_title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}
.profile-page .profile-page__content_nav {
  text-align: right;
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: 14px;
}
.profile-page .profile-page__content_nav a {
  color: #5b6571;
  display: flex;
  padding: 5px 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.profile-page .profile-page__content_nav a:hover {
  color: #FF823C;
}
.profile-page .profile-page__content_nav a._active {
  color: #FF823C;
  text-decoration: underline;
}
.profile-page .profile-page__content_nav a:last-child {
  margin-right: 0px;
}

.profile-user {
  display: flex;
  justify-content: space-between;
  padding: 10px 40px 20px 20px;
}
@media screen and (max-width: 768px) {
  .profile-user {
    padding: 10px 100px 20px 20px;
  }
}
@media screen and (max-width: 480px) {
  .profile-user {
    padding: 10px 100px 20px 10px;
  }
}
.profile-user .profile-user__avatar {
  width: 50px;
  height: 50px;
  content: "";
  border: 2px solid #F2F2F2;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.profile-user .profile-user__avatar:before {
  width: 24px;
  height: 24px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
  background: url(/local/templates/.default/assets/img/icon-user.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  .profile-user .profile-user__avatar {
    width: 45px;
    height: 45px;
  }
}
.profile-user .profile-user__info {
  width: calc(100% - 60px - 20px);
}
@media screen and (max-width: 480px) {
  .profile-user .profile-user__info {
    width: calc(100% - 45px - 15px);
  }
}
.profile-user .profile-user__name {
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .profile-user .profile-user__name {
    font-size: 16px;
  }
}
.profile-user .profile-user__balans {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.profile-user .profile-user__balans strong {
  margin: 0px 5px;
  display: block;
}

.bonus-info {
  position: relative;
}
.bonus-info .bonus-info__icon {
  display: flex;
  min-width: 20px;
  width: 20px;
  height: 20px;
  background: #FF823C;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.bonus-info .bonus-info__text {
  display: block;
  position: absolute;
  width: 220px;
  background: #fff;
  border-radius: 4px;
  left: 50%;
  margin-left: -110px;
  bottom: 100%;
  z-index: -1;
  color: #000000;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 480px) {
  .bonus-info .bonus-info__text {
    width: 280px;
    margin-left: -140px;
  }
}
.bonus-info:hover .bonus-info__text {
  opacity: 1;
  z-index: 10;
  bottom: calc(100% + 5px);
  visibility: visible;
}

.profile-menu ul {
  list-style: none;
}
@media screen and (max-width: 768px) {
  .profile-menu ul {
    display: flex;
    overflow-x: auto;
  }
}
.profile-menu ul li {
  display: block;
}
.profile-menu ul li._active a:before {
  left: 0;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .profile-menu ul li._active a:before {
    left: 0;
    top: 0px;
  }
}
.profile-menu ul a {
  display: flex;
  padding: 5px 40px 5px 20px;
  align-items: center;
  width: 100%;
  min-height: 50px;
  color: #5b6571;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
}
.profile-menu ul a:before {
  width: 2px;
  height: 100%;
  content: "";
  background: #3EAA54;
  position: absolute;
  left: -3px;
  top: 0;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .profile-menu ul a:before {
    width: 100%;
    height: 2px;
    left: 0;
    top: -3px;
  }
}
@media screen and (max-width: 768px) {
  .profile-menu ul a {
    padding: 5px 20px;
    background: transparent;
  }
}
@media screen and (max-width: 480px) {
  .profile-menu ul a {
    padding: 5px 10px;
  }
}
.profile-menu ul a._active:before {
  left: 0;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .profile-menu ul a._active:before {
    top: 0px;
  }
}
.profile-menu ul a:hover {
  color: #3EAA54;
}
.profile-menu ul a.link-out {
  background: none;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .profile-menu ul a.link-out {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 100px;
    z-index: 10;
  }
}
@media screen and (max-width: 480px) {
  .profile-menu ul a.link-out {
    top: 10px;
    padding-right: 5px;
    padding-left: 20px;
    width: 70px;
  }
}
.profile-menu ul a.link-out .icon-out {
  width: 14px;
  height: 14px;
  left: 20px;
  top: 50%;
  margin-top: -7px;
  content: "";
  position: absolute;
  background: url(/local/templates/.default/components/bitrix/sale.personal.section/sv-template/img/logout.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  .profile-menu ul a.link-out .icon-out {
    left: 0px;
  }
}

.profile-order .profile-order__top {
  display: flex;
  border-bottom: 1px solid rgba(91, 101, 113, 0.2);
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__top {
    flex-wrap: wrap;
  }
}
.profile-order .profile-order__top .profile-order__col:nth-child(1) {
  max-width: 10%;
  flex: 1 1 auto;
  padding: 10px 25px 10px 0px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(1) {
    padding: 10px 15px 10px 0px;
  }
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(1) {
    order: 2;
    max-width: 20%;
  }
}
@media screen and (max-width: 420px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(1) {
    padding: 10px 10px 10px 0px;
  }
}
.profile-order .profile-order__top .profile-order__col:nth-child(1):before {
  width: 2px;
  height: calc(100% - 30px);
  content: "";
  position: absolute;
  top: 15px;
  right: 0px;
  background: #F2F2F2;
}
.profile-order .profile-order__top .profile-order__col:nth-child(2) {
  max-width: 20%;
  flex: 1 1 auto;
  padding: 10px 25px 10px 25px;
  position: relative;
}
.profile-order .profile-order__top .profile-order__col:nth-child(2):before {
  width: 2px;
  height: calc(100% - 30px);
  content: "";
  position: absolute;
  top: 15px;
  right: 0px;
  background: #F2F2F2;
  display: none;
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(2):before {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(2) {
    padding: 10px 15px 10px 15px;
  }
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(2) {
    order: 3;
    max-width: calc(90% - 25px);
  }
}
@media screen and (max-width: 420px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(2) {
    padding: 10px;
  }
}
.profile-order .profile-order__top .profile-order__col:nth-child(3) {
  max-width: calc(50% - 50px);
  flex: 1 1 auto;
  padding: 10px 25px 10px 25px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(3) {
    padding: 10px 15px 10px 15px;
  }
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(3) {
    order: 1;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(3) .profile-order__title {
    margin-right: 10px;
    margin-bottom: 0px;
    line-height: 1.2;
    padding-top: 1px;
  }
}
.profile-order .profile-order__top .profile-order__col:nth-child(4) {
  max-width: 20%;
  flex: 1 1 auto;
  padding: 10px 15px 10px 25px;
}
@media screen and (max-width: 1200px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(4) {
    padding: 10px 15px 10px 15px;
  }
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(4) {
    order: 4;
    max-width: calc(90% - 25px);
  }
}
@media screen and (max-width: 420px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(4) {
    padding: 10px;
  }
}
.profile-order .profile-order__top .profile-order__col:nth-child(5) {
  width: 50px;
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(5) {
    order: 5;
  }
}
@media screen and (max-width: 420px) {
  .profile-order .profile-order__top .profile-order__col:nth-child(5) {
    width: 40px;
  }
}
.profile-order .profile-order__top .profile-order__col._status_F {
  background: rgba(62, 170, 84, 0.1);
}
.profile-order .profile-order__top .profile-order__col._status_F .profile-order__val {
  color: #3EAA54;
}
.profile-order .profile-order__top .profile-order__col._status_N {
  background: rgba(91, 101, 113, 0.1);
}
.profile-order .profile-order__top .profile-order__col._status_P {
  background: rgba(255, 130, 60, 0.1);
}
.profile-order .profile-order__top .profile-order__col._status_P .profile-order__val {
  color: #FF823C;
}
.profile-order .profile-order__top .profile-order__title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 500;
}
@media screen and (max-width: 1470px) {
  .profile-order .profile-order__top .profile-order__title {
    font-size: 14px;
  }
}
.profile-order .profile-order__top .profile-order__val {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 1470px) {
  .profile-order .profile-order__top .profile-order__val {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .profile-order .profile-order__top .profile-order__val {
    font-size: 16px;
  }
}
.profile-order .profile-order__top .profile-order__toogle {
  height: 100%;
  position: relative;
  cursor: pointer;
}
.profile-order .profile-order__top .profile-order__toogle span {
  width: 14px;
  height: 14px;
  content: "";
  background: url(/local/templates/.default/components/bitrix/sale.personal.section/sv-template/img/filter-arrow.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -7px;
  margin-top: -7px;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.profile-order .profile-order__top .profile-order__toogle:hover span {
  opacity: 1;
}
.profile-order .profile-order__top .profile-order__toogle._on span {
  opacity: 1;
  transform: rotate(90deg);
}
.profile-order .profile-order__content {
  padding: 20px 10px;
  display: none;
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__content {
    padding: 15px 0px;
  }
}
.profile-order .profile-order__products_title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 17px;
}
.profile-order .profile-order__element {
  display: flex;
  margin-bottom: 5px;
  max-width: 500px;
}
.profile-order .profile-order__element .profile-order__element_t {
  width: 200px;
  font-weight: 400;
  font-size: 20px;
  color: #070E06;
  opacity: 0.3;
  order: 1;
  padding-right: 20px;
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__element .profile-order__element_t {
    font-size: 14px;
  }
}
.profile-order .profile-order__element .profile-order__element_c {
  width: calc(100% - 200px);
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  text-align: right;
  color: #070E06;
  order: 3;
  padding: 5px 0px;
}
@media screen and (max-width: 992px) {
  .profile-order .profile-order__element .profile-order__element_c {
    font-size: 16px;
  }
}
.profile-order .profile-order__element .profile-order__element_c._color {
  color: #FF823C;
}
.profile-order .profile-order__element .profile-order__element_c .btn {
  margin-left: 5px;
  height: 35px;
  font-size: 14px;
  padding: 0px 20px;
  line-height: 35px;
}
.profile-order .profile-order__bottom {
  padding-top: 10px;
}
.profile-order .profile-order__bottom .sale-order-list-repeat-link {
  margin-right: 20px;
}
.profile-order .sale-order-list-repeat-link {
  color: #3EAA54;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  padding: 5px 5px 5px 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.profile-order .sale-order-list-repeat-link:before {
  width: 12px;
  height: 12px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
  background: url(/local/templates/.default/components/bitrix/sale.personal.section/sv-template/img/repeat.svg) no-repeat center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.profile-order .sale-order-list-cancel-link {
  color: #5b6571;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  padding: 5px 5px 5px 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.profile-order .sale-order-list-cancel-link:before {
  width: 12px;
  height: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  background: #5b6571;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.profile-order .sale-order-list-cancel-link:after {
  width: 12px;
  height: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  background: #5b6571;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.profile-order__products {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -5px;
  margin-bottom: 20px;
  max-width: 400px;
}
.profile-order__products .profile-order__product {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(51, 51, 51, 0.05);
  margin: 5px;
  position: relative;
  background: #fff;
  border-radius: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.profile-order__products .profile-order__product img {
  width: auto;
  max-width: 50px;
  height: auto;
  max-height: 50px;
  margin: 0px;
}
.profile-order__products .profile-order__product .number {
  width: 20px;
  height: 20px;
  background: #3EAA54;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  right: -3px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 0px;
  text-align: center;
  font-weight: 500;
}

.profile-forms .profile-forms__row {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .profile-forms .profile-forms__row {
    display: block;
  }
}
.profile-forms .profile-forms__row .profile-forms__left {
  width: 200px;
  margin-right: 45px;
}
@media screen and (max-width: 1200px) {
  .profile-forms .profile-forms__row .profile-forms__left {
    margin-right: 0px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .profile-forms .profile-forms__row .profile-forms__left {
    width: 130px;
  }
}
.profile-forms .profile-forms__row .profile-forms__right {
  width: calc(100% - 245px);
}
@media screen and (max-width: 1200px) {
  .profile-forms .profile-forms__row .profile-forms__right {
    width: 100%;
  }
}
.profile-forms .form-input {
  margin-bottom: 15px;
  max-width: 400px;
}
.profile-forms .form-input .form-input__label {
  margin-bottom: 5px;
}
.profile-forms .profile-forms__bottom {
  padding-top: 15px;
}
.profile-forms .profile-forms__bottom .btn {
  margin-right: 15px;
}

.photo-editing {
  width: 100%;
  padding-bottom: 100%;
  background: rgba(91, 101, 113, 0.1);
  border: 2px solid rgba(91, 101, 113, 0.2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.photo-editing .photo-editing__label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.photo-editing .photo-editing__label:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.4);
}
.photo-editing .photo-editing__label img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.photo-editing .photo-editing__label img._on {
  opacity: 1;
}
.photo-editing .photo-editing__label .photo-editing__text {
  font-size: 18px;
  color: #fff;
  font-family: BloggerSans-ailita, sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 10;
  line-height: 1;
  text-align: center;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .photo-editing .photo-editing__label .photo-editing__text {
    font-size: 14px;
  }
}
.photo-editing .photo-editing__label .photo-editing__text:before {
  width: 24px;
  height: 24px;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -12px;
  background: url(/local/templates/.default/components/bitrix/sale.personal.section/sv-template/img/download.svg) no-repeat center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.photo-editing .photo-editing__label .photo-editing__input {
  position: absolute;
  opacity: 0;
}
.photo-editing .photo-editing__label:hover .photo-editing__text:before {
  transform: translate(0, 10px);
}
.photo-editing .photo-editing__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.profile-reset-password {
  margin-top: 35px;
  background: rgba(91, 101, 113, 0.03);
  padding: 25px;
}
.profile-reset-password .profile-reset-password__row {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  max-width: 800px;
}
@media screen and (max-width: 992px) {
  .profile-reset-password .profile-reset-password__row {
    display: block;
  }
}
.profile-reset-password .profile-reset-password__row .form-input,
.profile-reset-password .profile-reset-password__row .form-password {
  width: calc(50% - 15px);
}
@media screen and (max-width: 992px) {
  .profile-reset-password .profile-reset-password__row .form-input,
.profile-reset-password .profile-reset-password__row .form-password {
    width: 100%;
    margin-bottom: 15px;
    max-width: 290px;
  }
}
.profile-reset-password .profile-reset-password__title {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
}

.orederprof-el {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(91, 101, 113, 0.1);
  padding: 10px 0px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .orederprof-el {
    flex-wrap: wrap;
    padding-right: 70px;
  }
}
.orederprof-el .orederprof-el__number {
  margin-right: 20px;
  width: 30px;
  opacity: 0.8;
  border-right: 1px solid rgba(91, 101, 113, 0.1);
  font-size: 14px;
}
.orederprof-el .orederprof-el_name {
  font-weight: 500;
  margin-right: 30px;
  border-right: 1px solid rgba(91, 101, 113, 0.1);
  width: calc(50% - 54px);
  padding-right: 20px;
}
@media screen and (max-width: 992px) {
  .orederprof-el .orederprof-el_name {
    width: calc(100% - 50px);
    margin-right: 0px;
    border-right: 0px;
  }
}
.orederprof-el .orederprof-el_name a {
  color: #5b6571;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.orederprof-el .orederprof-el_name a:hover {
  color: #FF823C;
  text-decoration: underline;
}
.orederprof-el .orederprof-el_type {
  padding-right: 30px;
  width: calc(50% - 54px);
}
@media screen and (max-width: 992px) {
  .orederprof-el .orederprof-el_type {
    padding-right: 0px;
    padding-left: 50px;
    width: 100%;
    padding-top: 10px;
  }
}
.orederprof-el .orederprof-el__btns {
  margin-left: auto;
  display: flex;
}
@media screen and (max-width: 992px) {
  .orederprof-el .orederprof-el__btns {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}
.orederprof-el .orederprof-el__btns .orederprof-edit {
  margin-right: 10px;
}

.orederprof-edit {
  width: 24px;
  height: 24px;
  background: url(/local/templates/.default/components/bitrix/sale.personal.section/sv-template/img/pencil.svg) no-repeat center;
  background-size: 10px 10px;
  display: block;
  border: 1px solid #333333;
  border-radius: 4px;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
.orederprof-edit:hover {
  border-color: #FF823C;
  background: #FF823C url(/local/templates/.default/components/bitrix/sale.personal.section/sv-template/img/pencil_hover.svg) no-repeat center;
  background-size: 10px 10px;
  opacity: 1;
}

.orederprof-del {
  width: 24px;
  height: 24px;
  display: block;
  border: 1px solid #333333;
  border-radius: 4px;
  opacity: 0.3;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.orederprof-del:before {
  width: 12px;
  background: #333333;
  height: 2px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.orederprof-del:after {
  width: 12px;
  background: #333333;
  height: 2px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.orederprof-del:hover {
  border-color: #d10300;
  background: #d10300;
  opacity: 1;
}
.orederprof-del:hover:before, .orederprof-del:hover:after {
  background: #fff;
}

.profile-main {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .profile-main {
    display: block;
  }
}
.profile-main .profile-main__left {
  width: 50%;
  padding-right: 40px;
  border-right: 1px solid rgba(91, 101, 113, 0.1);
}
@media screen and (max-width: 1470px) {
  .profile-main .profile-main__left {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .profile-main .profile-main__left {
    padding-right: 0px;
    border-right: 0px;
    width: 100%;
    margin-bottom: 30px;
  }
}
.profile-main .profile-main__right {
  width: 50%;
  padding-left: 40px;
}
@media screen and (max-width: 1470px) {
  .profile-main .profile-main__right {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .profile-main .profile-main__right {
    padding-left: 0px;
    width: 100%;
  }
}

.profile-curent-order {
  background: rgba(213, 241, 219, 0.3);
  border-radius: 10px;
  padding: 50px 45px;
}
@media screen and (max-width: 1470px) {
  .profile-curent-order {
    padding: 40px 20px;
  }
}
.profile-curent-order .profile-curent-order__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #FF823C;
}
.profile-curent-order .profile-curent-order__param {
  display: flex;
  margin-bottom: 5px;
  font-size: 15px;
}
.profile-curent-order .profile-curent-order__param .profile-curent-order__param_t {
  width: 60px;
  margin-right: 20px;
  font-weight: 400;
  font-size: 20px;
  color: #070E06;
  opacity: 0.3;
  order: 1;
  white-space: nowrap;
  margin-right: 5px;
}
.profile-curent-order .profile-curent-order__param .profile-curent-order__param_cont {
  width: calc(100% - 80px);
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  text-align: right;
  color: #070E06;
  order: 3;
  margin: 5px;
}
@media screen and (max-width: 1470px) {
  .profile-curent-order .profile-curent-order__param .profile-curent-order__param_cont {
    line-height: 1.2;
    font-size: 17px;
  }
}
.profile-curent-order .profile-curent-order__param .profile-curent-order__param_cont._status {
  color: #3EAA54;
}
.profile-curent-order .profile-order__products_t {
  margin-top: 20px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
}
.profile-curent-order .profile-order__products {
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 0px;
}
.profile-curent-order .profile-order__products::-webkit-scrollbar {
  height: 5px;
}
.profile-curent-order .profile-order__products::-webkit-scrollbar-track {
  background-color: rgba(91, 101, 113, 0.3);
}
.profile-curent-order .profile-order__products::-webkit-scrollbar-thumb {
  background-color: rgba(255, 130, 60, 0.9);
  cursor: pointer;
}

.profile-curent-order__bottom {
  padding-top: 5px;
}

.profile-curent-order__link {
  color: #000000;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  padding: 5px 5px 5px 24px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.profile-curent-order__link:before {
  width: 16px;
  height: 16px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  background: url(/local/templates/.default/components/bitrix/sale.personal.section/sv-template/img/icon-orders.svg) no-repeat center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}

.profile-cashback-block {
  padding-top: 20px;
  margin-top: 60px;
  border-top: 2px solid rgba(91, 101, 113, 0.1);
  display: flex;
  flex-wrap: wrap;
}
.profile-cashback-block .profile-cashback-block__title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  width: 100%;
}
.profile-cashback-block .profile-cashback-block__img {
  width: 90px;
  margin-right: 20px;
}
.profile-cashback-block .profile-cashback-block__img img {
  border-radius: 5px;
  max-width: 100%;
}
.profile-cashback-block .profile-cashback_title {
  font-size: 15px;
  font-weight: 500;
}
.profile-cashback-block .profile-cashback_val {
  font-size: 18px;
  font-weight: 500;
  color: #FF823C;
}
.profile-cashback-block .profile-cashback_info {
  width: 100%;
  padding-top: 15px;
  color: #5b6571;
  font-size: 14px;
}

.profile-main__loyalty {
  background-color: #3EAA54;
  border-radius: 10px;
  padding: 50px 45px;
  color: #fff;
}
@media screen and (max-width: 1470px) {
  .profile-main__loyalty {
    padding: 40px 20px;
  }
}
.profile-main__loyalty .card-loyalty {
  margin-bottom: 30px;
  background: white;
  padding: 20px;
  color: #000000;
  border-radius: 10px;
}
.profile-main__loyalty .card-loyalty .card-loyalty__title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}
.profile-main__loyalty .card-loyalty .card-loyalty__number {
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}
.profile-main__loyalty .personal-discount {
  display: flex;
}
.profile-main__loyalty .personal-discount .personal-discount__title {
  font-size: 18px;
  font-weight: 400;
  margin-right: 15px;
  margin-bottom: 10px;
}
.profile-main__loyalty .personal-discount .personal-discount__price {
  font-size: 20px;
  font-weight: 700;
}

.sale-profile-detail-link-list {
  color: #3EAA54;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
}
.sale-profile-detail-link-list a {
  text-decoration: none;
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
.sale-profile-detail-link-list a:before {
  width: 27px;
  height: 20px;
  content: "";
  background: url(/local/templates/.default/assets/img/slider_arrow.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  transform: rotate(-180deg);
}

.sale-profile-detail-form {
  font-family: BloggerSans-ailita, sans-serif;
}
.sale-profile-detail-form .sale-personal-profile-detail-form-title {
  margin-bottom: 15px;
  color: #FF823C;
}
.sale-profile-detail-form .sale-profile-detail__type {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  margin-bottom: 10px;
}
.sale-profile-detail-form .sale-profile-detail__type .sale-profile-detail__type-title {
  margin-bottom: 5px;
  color: #5b6571;
  margin-right: 10px;
}
.sale-profile-detail-form .sale-profile-detail__type .sale-profile-detail__type-val {
  font-weight: 700;
  margin-bottom: 5px;
}
.sale-profile-detail-form .sale-profile-detail__name {
  max-width: 500px;
  margin-bottom: 40px;
}
.sale-profile-detail-form .sale-profile-detail__seperation {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}
.sale-profile-detail-form .form-input {
  margin-bottom: 20px;
}
.sale-profile-detail-form .form-input .form-input__label {
  margin-bottom: 5px;
}
.sale-profile-detail-form .form-input .form-input__val {
  padding: 0px 20px;
  font-size: 15px;
  height: 50px;
}
.sale-profile-detail-form .form-input .form-input__textarea {
  height: 120px;
  border-radius: 10px;
  font-size: 15px;
  border: 2px solid rgba(62, 170, 84, 0.2);
  border-radius: 10px;
  background: transparent;
  font-family: BloggerSans-ailita, sans-serif;
  font-weight: 500;
  padding: 15px 20px;
  color: #070E06;
  position: relative;
  z-index: 2;
  width: 100%;
}
.sale-profile-detail-form .location-block-wrapper .dropdown-block {
  height: 50px;
  border: 2px solid rgba(62, 170, 84, 0.2);
  font-family: BloggerSans-ailita, sans-serif;
}
.sale-profile-detail-form .location-block-wrapper .bx-ui-sls-route,
.sale-profile-detail-form .location-block-wrapper .bx-ui-sls-fake {
  color: #070E06 !important;
  height: 46px;
}
.sale-profile-detail-form .location-block-wrapper .bx-ui-sls-container {
  height: 46px;
}
.sale-profile-detail-form .location-block-wrapper .bx-ui-sls-clear {
  display: none !important;
}
.sale-profile-detail-form .location-block-wrapper .dropdown-icon {
  top: 16px;
}
.sale-profile-detail-form input.btn[name=save] {
  padding: 0px 20px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
}
.sale-profile-detail-form input.btn[name=apply] {
  display: none;
}
.sale-profile-detail-form input.btn[name=reset] {
  padding: 0px 20px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  background: #5b6571;
}/*# sourceMappingURL=style.css.map */
/* End */


/* Start:/bitrix/templates/.default/components/bitrix/system.auth.authorize/bxmaker.authuserphone/style.css?1744401016666*/
.bitrix-default-auth-bxmaker-authuserphone {

}

.bitrix-default-auth-bxmaker-authuserphone__wrap {
    max-width: 370px;
    margin: 0 auto;
}

.bitrix-default-auth-bxmaker-authuserphone .bxmaker-authuserphone-enter {
    padding-bottom: 16px;
}

.bitrix-default-auth-bxmaker-authuserphone .bxmaker-authuserphone-login,
.bitrix-default-auth-bxmaker-authuserphone .bxmaker-authuserphone-call,
.bitrix-default-auth-bxmaker-authuserphone .bxmaker-authuserphone-enter,
.bitrix-default-auth-bxmaker-authuserphone .bxmaker-authuserphone-simple {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 6px;
    width: 100%;
    max-width:none;
}
/* End */


/* Start:/bitrix/components/bitrix/sale.order.payment.change/templates/.default/style.min.css?17408805245814*/
.sale-order-payment-change-pp.row{margin-right:0;margin-left:0}.sale-order-payment-change-pp-list{opacity:0}.sale-order-payment-change-pp-company{height:40px;padding-bottom:20px;z-index:100;position:relative}.sale-order-payment-change-pp .sale-order-payment-change-pp-company{padding:7px;border:1px solid transparent;height:auto;margin-bottom:15px;-webkit-transition:all 100ms ease;-moz-transition:all 100ms ease;-ms-transition:all 100ms ease;-o-transition:all 100ms ease;transition:all 100ms ease}.sale-order-payment-change-pp-company:hover .sale-order-payment-change-pp-company-graf-container{-webkit-transition:all 100ms ease;-moz-transition:all 100ms ease;-ms-transition:all 100ms ease;-o-transition:all 100ms ease;transition:all 100ms ease;border-color:#159ebb}.sale-order-payment-change-pp-company-graf-container{border:2px solid #c3cace;border-radius:2px;position:relative;background:#fff;width:auto;height:0;padding-top:50%}.sale-order-payment-change-pp-company-image{position:absolute;top:5px;right:5px;bottom:5px;left:5px;background-size:contain;background-repeat:no-repeat;background-position:center}.sale-order-payment-change-pp-company-smalltitle{padding-top:9px;color:#a3a3a3;font-size:11px;text-align:center;padding-bottom:5px}.sale-order-payment-change-pp-field .form-control{background:#fff}.sale-order-payment-change-pp-price{text-align:right;padding:4px 0}.sale-order-payment-change-service-small{color:#a3a3a3;font-size:11px}@media(min-width:1200px){.sale-order-payment-change-pp div .sale-order-payment-change-pp-company:nth-child(4n+1),.sale-order-payment-change-pp-item-container .sale-order-payment-change-pp-company:nth-child(4n+1){clear:both;padding-left:0}}@media(min-width:768px) and (max-width:1199px){.sale-order-payment-change-pp div .sale-order-payment-change-pp-company:nth-child(3n+1),.sale-order-payment-change-pp-item-container .sale-order-payment-change-pp-company:nth-child(3n+1){clear:both;padding-left:0}}@media(max-width:767px){.sale-order-payment-change-pp,.sale-order-payment-change-pp-item-container{max-width:450px}.sale-order-payment-change-pp div .sale-order-payment-change-pp-company:nth-child(2n+1),.sale-order-payment-change-pp-item-container .sale-order-payment-change-pp-company:nth-child(2n+1){clear:both;padding-left:0}}.sale-order-payment-change-inner-row{padding:0;position:relative}.sale-order-payment-change-payment{padding-bottom:20px}.sale-order-payment-change-payment-title{font:bold 14px "Helvetica Neue",Helvetica,Arial,sans-serif;color:#000}.sale-order-payment-change-status-alert,.sale-order-payment-change-status-restricted,.sale-order-payment-change-status-success{display:inline-block;padding:4px 10px 5px 8px;border:1px solid #eab3b9;-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px;border-radius:2px;background:#ffe5e8;font:bold 12px "Helvetica Neue",Helvetica,Arial,sans-serif;color:#d0021b}.sale-order-payment-change-status-restricted{background:#f3f4f5;border:1px solid rgba(128,134,142,0.20);color:#535c69}.sale-order-payment-change-status-success{background:#e3f0bd;border:1px solid #bed277;color:#597707}.sale-order-payment-change-payment-price{padding:4px 0 0 0;font:13px "Helvetica Neue",Helvetica,Arial,sans-serif}.sale-order-payment-change-payment-form-group{display:table}.sale-order-payment-change-payment-form-cell{display:table-cell;vertical-align:middle;text-align:center}.sale-order-inner-payment-button{display:block;cursor:pointer;padding:0 17px;max-width:115px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;height:38px;background:#1485ce;color:#fff;font:bold 13px/38px "Helvetica Neue",Helvetica,Arial,sans-serif;text-align:center;float:left}.sale-order-inner-payment-button:hover{color:#fff;background:#53a4d8;-webkit-transition:background ease-out .5s;-moz-transition:background ease-out .5s;-o-transition:background ease-out .5s;transition:background ease-out .5s}.sale-order-inner-payment-button.inactive-button{opacity:.2;cursor:pointer}.sale-order-inner-payment-button.inactive-button:hover{background:#1485ce;color:#fff}.sale-order-inner-padding-bottom{padding-bottom:15px}.sale-paysystem-wrapper{position:relative;padding:24px 38px 24px 38px;margin:0 -15px 0 0;border:1px solid #3bc8f5;font:14px "Helvetica Neue",Arial,Helvetica,sans-serif;color:#424956}.sale-paysystem-wrapper{position:relative;padding:24px 38px 24px 38px;margin:0 -15px 0 0;border:1px solid #3bc8f5;font:14px "Helvetica Neue",Arial,Helvetica,sans-serif;color:#424956}.sale-paysystem-close{position:absolute;top:7px;right:7px}.sale-paysystem-close-item{display:inline-block;width:18px;height:18px;background:url(/bitrix/components/bitrix/sale.order.payment.change/templates/.default/../../components/bitrix/sale.personal.order.detail/templates/.default/images/sale-personal-order-sprite.svg) 1px 1px no-repeat;-webkit-transition:opacity .3s ease;-moz-transition:opacity .3s ease;transition:opacity .3s ease;opacity:1;cursor:pointer}.sale-paysystem-close-item:hover{opacity:.5}.sale-paysystem-description{margin:0 0 11px 0;font:11px "Helvetica Neue",Arial,Helvetica,sans-serif;color:#bcbdc0}.sale-paysystem-yandex-button{display:inline-block;margin:26px 10px 26px 0}.sale-paysystem-yandex-button-item{padding:0 22px;height:38px;border:0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#f59023;font:bold 13px/35px "Helvetica Neue",Arial,Helvetica,sans-serif;color:#fff;-webkit-transition:background .3s ease;-moz-transition:background .3s ease;transition:background .3s ease}.sale-paysystem-yandex-button-item:hover{background:#ff911a;color:#fff;text-decoration:none}.sale-paysystem-yandex-checkout-button-item{padding:10px 22px}.sale-paysystem-yandex-button-item:focus{color:#fff;text-decoration:none}.sale-paysystem-yandex-button-descrition{display:inline-block;margin:0 0 15px 0;font:12px "Helvetica Neue",Arial,Helvetica,sans-serif;color:#80868e}
/* End */


/* Start:/bitrix/components/bitrix/system.show_message/templates/.default/style.min.css?174088052951*/
font.errortext{color:red}font.notetext{color:green}
/* End */
/* /local/templates/.default/components/bitrix/sale.personal.section/sv-template/style.css?174088049430920 */
/* /bitrix/templates/.default/components/bitrix/system.auth.authorize/bxmaker.authuserphone/style.css?1744401016666 */
/* /bitrix/components/bitrix/sale.order.payment.change/templates/.default/style.min.css?17408805245814 */
/* /bitrix/components/bitrix/system.show_message/templates/.default/style.min.css?174088052951 */
