@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url(../font/Montserrat-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}
@font-face {
  font-family: "Montserrat";
  src: url(../font/Montserrat-Medium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
}
@font-face {
  font-family: "Montserrat";
  src: url(../font/Montserrat-SemiBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
}
@font-face {
  font-family: "Montserrat";
  src: url(../font/Montserrat-Bold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
}
@font-face {
  font-family: "MontserratAlternates";
  src: url(../font/MontserratAlternates-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}
@font-face {
  font-family: "MontserratAlternates";
  src: url(../font/MontserratAlternates-Medium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
}
@font-face {
  font-family: "MontserratAlternates";
  src: url(../font/MontserratAlternates-SemiBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
}
@font-face {
  font-family: "MontserratAlternates";
  src: url(../font/MontserratAlternates-Bold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", serif;
  line-height: 100%;
  font-weight: 400;
  color: #2F2F2F;
}

.bodyStopScroll {
  overflow: hidden;
  height: 100vh;
}

button {
  outline: none;
  border: none;
  padding: 0;
  font-family: "Montserrat", serif;
  transition: 0.3s all;
}
button:hover {
  cursor: pointer;
}

input, textarea, select, button {
  border: none;
  outline: none;
  font-family: "Montserrat", serif;
  transition: 0.3s all;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  transition: 0.3s all;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1210px;
  padding: 0 20px;
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.justify-start {
  justify-content: start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.align-start {
  align-items: start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.text-center {
  text-align: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.show {
  display: flex !important;
}

.w-full {
  width: 100%;
}

.m-0 {
  margin: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.select {
  width: 100%;
  position: relative;
  white-space: nowrap;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
}
.select-head {
  width: 100%;
  height: 52px;
  border-radius: 50px;
  background: rgba(193, 80, 139, 0.1019607843);
  padding: 11px 20px;
  color: #4D4D4D;
  cursor: pointer;
}
.select-head img {
  margin-right: 5px;
}
.select .options {
  position: absolute;
  top: 110%;
  right: 0;
  width: 100%;
  background: #fff;
  color: #4D4D4D;
  border-radius: 12px;
  overflow: hidden;
  z-index: 100;
  display: none;
  padding: 12px 0;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.09);
}
.select .options .option {
  padding: 10px 22px;
  text-align-last: left;
  border-bottom: 1px solid #F5F5F5;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.select .options .option img {
  margin-right: 5px;
}
.select .options .option:hover {
  color: #9c3138;
  border-color: #9c3138;
}

.check-box {
  display: flex;
  align-items: center;
}
.check-box input {
  appearance: none;
  min-width: 15px;
  height: 15px;
  background-image: url(../img/svg/no-check.svg);
  margin-right: 8px;
  cursor: pointer;
}
.check-box label {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #c5b6b3;
  cursor: pointer;
}
.check-box input:checked {
  background-image: url(../img/svg/checked.svg);
}
.check-box input:checked ~ label {
  color: #272727;
}

.dop-info input.check-box {
  display: inline-block;
  appearance: none;
  width: 15px;
  height: 15px;
  background-image: url(../img/svg/no-check.svg);
  margin-right: 5px;
  cursor: pointer;
  vertical-align: top;
}
.dop-info input.check-box ~ label {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #c5b6b3;
  cursor: pointer;
  vertical-align: top;
}
.dop-info input.check-box:checked {
  background-image: url(../img/svg/check1.svg);
}
.dop-info input.check-box:checked ~ label {
  color: #272727;
}

.showSelect .select-head svg {
  transform: rotate(180deg);
}
.showSelect .options {
  display: block;
}

.title-text {
  font-family: "MontserratAlternates", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 33px;
  color: #2f2f2f;
}

.counter {
  display: flex;
  align-items: center;
}
.counter-inp {
  width: 40px;
  height: 25px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #EAEAEA;
  margin: 0 5px;
  font-size: 12px;
  font-weight: 500;
}
.counter .plus, .counter .minus {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #c1c1c1;
  font-weight: 100;
  cursor: pointer;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
.counter .plus:hover svg path, .counter .minus:hover svg path {
  stroke: #272727;
}

.addBtn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 6px 25px 0px rgba(242, 85, 60, 0.6);
  margin-left: 20px;
  cursor: pointer;
  transition: 0.3s all;
}
.addBtn:hover {
  transform: scale(1.1);
}

.header {
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 600;
  font-size: 13px;
  position: fixed;
  width: 100%;
  top: 5px;
  z-index: 1000;
}
.header-box {
  padding: 15px 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.09);
}
.header-nav .item {
  padding: 10px 15px;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s all;
  margin-right: 20px;
  color: #ababab;
}
.header-nav .item:last-child {
  margin-right: 0;
}
.header-nav .item:hover {
  background: #fcf6f3;
  color: #505050;
}
.header-nav .new a {
  display: flex;
  align-items: center;
}
.header-nav .new a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f2553c;
  margin-right: 7px;
}
.header-nav .item.active {
  background: #fcf6f3;
  color: #505050;
}
.header-nav .item-btn {
  background: #fff;
  position: relative;
  margin-right: 24px;
  padding: 10px 15px;
  border-radius: 12px;
  transition: 0.3s all;
  cursor: pointer;
}
.header-nav .item-btn span {
  display: flex;
  align-items: center;
  color: #ababab;
}
.header-nav .item-btn span::after {
  content: url(../img/svg/arrow-link.svg);
  margin-left: 7px;
}
.header-nav .item-btn .item-list {
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.09);
  padding: 15px 0;
  border-radius: 12px;
}
.header-nav .item-btn .item-list li {
  white-space: nowrap;
  padding: 6px 15px;
  color: #a4a4a4;
}
.header-nav .item-btn .item-list li:hover {
  background: #fcf6f3;
  color: #505050;
}
.header-nav .item-btn .item-box {
  padding-top: 10px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}
.header-nav .item-btn:hover {
  background: #fcf6f3;
}
.header-nav .item-btn:hover span {
  color: #505050;
}
.header-nav .item-btn:hover .item-box {
  display: block;
}
.header .app-balance {
  background: #fcf6f3;
  padding: 5px 10px 5px 5px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  margin-right: 20px;
  transition: 0.3s linear;
}
.header .app-balance .icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.09);
  margin-right: 15px;
}
.header .app-balance strong {
  font-size: 12px;
  font-weight: 700;
  color: #505050;
}
.header .app-balance strong.sum.f_sum {
  font-size: 9px;
  color: #D5C1B7;
  margin-left: 5px;
}
.header .app-balance span {
  font-size: 8px;
  line-height: 8px;
  font-weight: 600;
  color: #dcbfb0;
}
.header .app-balance:hover span {
  color: #f2553c;
}
.header .app-balance:hover {
  transform: scale(1.1);
}
.header .userBox {
  position: relative;
  cursor: pointer;
}
.header .userBox .avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.header .userBox .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}
.header .userBox .user-box {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  display: none;
  z-index: 10;
}
.header .userBox .userBox-info {
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.09);
  padding: 15px 0;
  border-radius: 12px;
  position: relative;
}
.header .userBox .userBox-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.header .userBox .userBox-info li {
  white-space: nowrap;
  padding: 6px 15px;
  color: #a4a4a4;
}
.header .userBox .userBox-info li:hover {
  background: #fcf6f3;
  color: #505050;
}
.header .userBox .userBox-info .logOut {
  color: #ffb8b8;
}
.header .userBox .userBox-info .logOut:hover {
  color: #f2553c;
}
.header .userBox:hover .avatar img {
  transform: scale(1.2);
}
.header .userBox:hover .user-box {
  display: block;
}
.header .loginIn-btn {
  width: 110px;
  height: 46px;
  border-radius: 12px;
  background: rgba(242, 85, 60, 0.1019607843);
  color: #f2553c;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s linear;
  margin-right: 10px;
}
.header .loginIn-btn:hover {
  transform: scale(1.05);
}
.header .register-btn {
  width: 200px;
  height: 46px;
  border-radius: 12px;
  background: #F2553C;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s linear;
}
.header .register-btn svg {
  margin-left: 10px;
}
.header .register-btn:hover {
  transform: scale(1.05);
}

.header_manager .logo {
  margin-right: 40px;
}
.header_manager .userBox {
  margin-right: 0;
}

.menu .menu-item {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 60px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  border-radius: 20px 20px 0 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.09);
}
.menu .menu-item li.new {
  position: relative;
}
.menu .menu-item li.new::before {
  content: "";
  display: block;
  position: absolute;
  left: 100%;
  bottom: 100%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f2553c;
}
.menu .menu-item li.active svg path {
  stroke: #f2553c;
}
.menu .menu-item li.active svg rect {
  stroke: #f2553c;
}
.menu .menu-item li:nth-child(4).active svg path {
  fill: #f2553c;
}
.menu .menu-item li:nth-child(3).active svg path {
  fill: #f2553c;
}
.menu .menu-item .menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.menu .menu-item .menu-btn img:last-child {
  display: none;
}
.menu .menu-item .clickedBtn img:first-child {
  display: none;
}
.menu .menu-item .clickedBtn img:last-child {
  display: block;
}
.menu .menu-content {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 95px 24px;
  overflow-y: scroll;
}
.menu .menu-content .menu-title {
  font-size: 20px;
  font-weight: 700;
  color: #2f2f2f;
}
.menu .menu-content .logOut {
  cursor: pointer;
}
.menu .menu-content .logOut:hover svg path {
  opacity: 1;
}
.menu .menu-content .menu-top {
  position: relative;
  z-index: 10000;
}
.menu .menu-content .menu-nav {
  padding: 30px 20px;
  border-radius: 20px;
  background: #fff;
  position: relative;
  z-index: 10000;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}
.menu .menu-content .menu-nav .nav-item {
  margin-bottom: 30px;
}
.menu .menu-content .menu-nav .nav-item:last-child {
  margin-bottom: 0;
}
.menu .menu-content .menu-nav .nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(47, 47, 47, 0.3764705882);
  font-size: 18px;
  font-weight: 600;
}
.menu .menu-content .menu-nav .nav-item a::after {
  content: url(../img/svg/arrow-link.svg);
  transform: rotate(-90deg);
}
.menu .menu-content .menu-nav .nav-item span.new {
  position: relative;
}
.menu .menu-content .menu-nav .nav-item span.new::before {
  content: "";
  display: block;
  position: absolute;
  left: 105%;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f2553c;
}

.swiper-btns .swiper-button-prev,
.swiper-btns .swiper-button-next {
  position: relative;
  margin: 0;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s linear;
}
.swiper-btns .swiper-button-prev:hover,
.swiper-btns .swiper-button-next:hover {
  transform: scale(1.2);
}
.swiper-btns .swiper-button-prev {
  margin-right: 20px;
}
.swiper-btns .swiper-button-prev::after,
.swiper-btns .swiper-button-next::after {
  display: none;
}

.performers-link {
  padding: 14px;
  border: 1px solid #F2553C;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: #2f2f2f;
  transition: 0.3s linear;
  border-radius: 12px;
}
.performers-link svg {
  margin-right: 8px;
}
.performers-link:hover {
  background: #f2553c;
  color: #fff;
  transform: scale(1.1);
}
.performers-link:hover svg path {
  fill: #fff;
}

.chat-info {
  width: 100%;
}

.chat-head {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #F7F7F7;
  background: #fff;
  position: relative;
  z-index: 3;
}
.chat-head .head-title {
  font-size: 15px;
  color: #2f2f2f;
  font-weight: 600;
  opacity: 0.6;
  margin-right: 10px;
}
.chat-head .user {
  padding: 5px 11px 5px 5px;
  border-radius: 20px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.chat-head .user span {
  font-size: 13px;
  line-height: 13px;
  color: #4D4D4D;
  font-weight: 600;
}
.chat-head .user .avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 7px;
  overflow: hidden;
}
.chat-head .user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}
.chat-head .user:hover span {
  color: #f2553c;
}
.chat-head .user:hover .avatar img {
  transform: scale(1.1);
}
.chat-head .user .new-mess {
  min-width: 12px;
  height: 12px;
  border-radius: 20px;
  background: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 8px;
  line-height: 8px;
  font-weight: 700;
  margin-left: 7px;
  margin-top: -2px;
  padding: 0 2px;
}
.chat-head .user-item {
  display: flex;
  align-items: center;
  margin-right: 30px;
  flex-wrap: wrap;
}
.chat-head .user-item:last-child {
  margin-right: 0;
}
.chat-head .user-item input:checked + .user {
  background: #f2553c;
}
.chat-head .user-item input:checked + .user span {
  color: #fff;
}
.chat-head .swiper-chatList {
  position: relative;
  width: 100%;
}
.chat-head .swiper-chatList::after {
  content: url(../img/png/shadow.png);
  position: absolute;
  top: -15px;
  right: 0;
  z-index: 2;
}
.chat-head .swiper-chatList .swiper-slide {
  width: auto;
}
.chat-head .swiper-chatList .swiper-slide .user {
  line-height: 20px;
  font-size: 13px;
  cursor: pointer;
  padding: 5px 11px 5px 5px;
  font-weight: 600;
  border-radius: 50px;
}
.chat-head .swiper-chatList .swiper-slide input:checked + .user {
  background: #f2553c;
  color: #fff;
}
.chat-head .swiper-chatList .swiper-slide input:checked + .user .name {
  color: #fff;
}
.chat-head .swiper-chatList .swiper-slide .user .name {
  line-height: 20px;
  display:inline-block;
}
.chat-head .label-btn {
  cursor: pointer;
}
.chat-head .label-btn:first-child {
  margin-right: 15px;
}
.chat-head .label-btn:last-child {
  margin-right: 0;
}
.chat-head .label-btn input {
  display: none;
}
.chat-head .label-btn span {
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #bcbcbc;
  display: flex;
  align-items: center;
}
.chat-head .label-btn span::before {
  content: url(../img/svg/no-check.svg);
  margin-right: 5px;
}
.chat-head .label-btn input:checked ~ span::before {
  content: url(../img/svg/check1.svg);
}

.chat-body {
  position: relative;
  padding: 0 10px 25px 25px;
  display: flex;
  justify-content: end;
  align-items: end;
  overflow: hidden;
  height: 60vh;
}
.chat-body .chat-list {
  max-height: 50vh;
  overflow-y: scroll;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.chat-body .chat-list::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
  background: transparent;
}
.chat-body .chat-list::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 10px;
  background: #CCCCCC;
}
.chat-body .chat-list .chat-item {
  display: flex;
  align-items: start;
  max-width: 90%;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.chat-body .chat-list .chat-item .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-right: 13px;
}
.chat-body .chat-list .chat-item .chat-text {
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #2f2f2f;
}
.chat-body .chat-list .chat-item .chat-text .text {
  margin-bottom: 5px;
}
.chat-body .chat-list .chat-item .chat-text .text:last-child {
  margin: 0;
}
.chat-body .chat-list .chat-item .chat-text .text del {
  color: #b6b6b6;
}
.chat-body .chat-list .chat-item .uploaded-work {
  border-radius: 20px;
  background: rgba(59, 202, 68, 0.1019607843);
  padding: 5px 10px 5px 5px;
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 12px;
  font-weight: 600;
}
.chat-body .chat-list .chat-item .uploaded-work img {
  margin-right: 10px;
}
.chat-body .chat-list .chat-item .uploaded-work .text {
  color: #596a5a;
  margin-right: 26px;
}
.chat-body .chat-list .chat-item .uploaded-work .text strong {
  font-weight: 700;
}
.chat-body .chat-list .chat-item .uploaded-work .view-btn {
  color: #589a5d;
  cursor: pointer;
}
.chat-body .chat-list .chat-item .uploaded-work .view-btn:hover {
  color: #39db42;
}
.chat-body .chat-list .chat-item .uploaded-work .accepted {
  font-size: 11px;
  font-weight: 600;
  color: #589a5d;
}
.chat-body .chat-list .chat-item .uploaded-work .reject-btn, .chat-body .chat-list .chat-item .uploaded-work .accept-btn {
  font-size: 11px;
  line-height: 18px;
  font-weight: 600;
  color: #9cbe9f;
  cursor: pointer;
  margin-right: 15px;
}
.chat-body .chat-list .chat-item .uploaded-work .reject-btn:hover, .chat-body .chat-list .chat-item .uploaded-work .accept-btn:hover {
  color: #f2553c;
}
.chat-body .chat-list .chat-item .uploaded-work .accept-btn {
  color: #589a5d;
}
.chat-body .chat-list .chat-item .leftReview {
  background: rgba(216, 216, 216, 0.2);
}
.chat-body .chat-list .chat-item .leftReview .text {
  color: #6c6c6c;
}
.chat-body .chat-list .chat-item .disabled {
  background: rgba(255, 79, 79, 0.2);
}
.chat-body .chat-list .chat-item .disabled .text {
  color: #704545 !important;
}
.chat-body .chat-list .chat-item .disabled strong {
  color: #401d1d !important;
}
.chat-body .chat-list .chat-item .dispute {
  background: #f6f6f6;
}
.chat-body .chat-list .chat-item .spor .text {
  color: #666;
}
.chat-body .chat-list .userInfo {
  font-size: 8px;
  line-height: 8px;
  font-weight: 500;
  color: #2f2f2f;
  opacity: 0.3;
  margin-top: 10px;
  margin-right: 74px;
}
.chat-body .chat-list .chat-data {
  font-size: 8px;
  line-height: 8px;
  font-weight: 500;
  color: #2f2f2f;
  opacity: 0.3;
  margin-top: 10px;
}
.chat-body .chat-list .my_chat {
  margin-left: auto;
  flex-flow: row-reverse;
}
.chat-body .chat-list .my_chat .avatar {
  margin: 0 0 0 12px;
}
.chat-body .chat-list .my_chat .chat-text {
  background: #EA614F;
  color: #fff;
}
.chat-body .chat-list .my_chat .info-chat {
  transform: translateX(-45px);
}
.chat-body .chat {
  width: 100%;
}
.chat-body .chat-sub {
  padding-right: 15px;
}
.chat-body .chat-input {
  width: 100%;
  background: #F8F8F8;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: start;
}
.chat-body .chat-input .upload-file {
  cursor: pointer;
  min-width: 25px;
  height: 25px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
}
.chat-body .chat-input .upload-file:hover {
  box-shadow: none;
}
.chat-body .chat-input .send-btn {
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-body .chat-input .send-btn:hover {
  background: #fff;
}
.chat-body .chat-input .send-btn:hover svg {
  transform: scale(1.1);
}
.chat-body .chat-input .send-btn:hover svg path {
  fill: #f2553c;
}
.chat-body .chat-input .message {
  width: 100%;
  margin: 0 12px;
  padding: 5px 0;
  background: #F8F8F8;
  height: 30px;
  color: #4A4640;
  font-size: 13px;
  line-height: 18px;
  max-height: 200px !important;
  resize: none;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #2f2f2f;
}
.chat-body .chat-input .message::-webkit-scrollbar {
  display: none;
}
.chat-body .chat-input .message::placeholder {
  opacity: 0.3;
}
.chat-body .info-chat {
  width: 573px;
  padding: 25px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.chat-body .info-chat__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat-body .info-chat .left-info {
  position: relative;
  z-index: 2;
  width: 47%;
}
.chat-body .info-chat .left-info .icon {
  margin-right: 6px;
  margin-top: 5px;
}
.chat-body .info-chat .left-info .title {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}
.chat-body .info-chat .left-info .text {
  font-size: 10px;
  line-height: 17px;
  font-weight: 500;
  margin-top: 8px;
}
.chat-body .info-chat .left-info .text_green {
  color: #3bca44;
}
.chat-body .info-chat .left-info .new-offer {
  display: flex;
  align-items: start;
  flex-direction: column;
}
.chat-body .info-chat .left-info .new-offer__title {
  font-size: 15px;
  line-height: 17px;
  font-weight: 700;
  color: #fff;
}
.chat-body .info-chat .left-info .new-offer .order-name {
  background: #383838;
  border-radius: 50px;
  padding: 2px 7px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3333333333);
  display: inline-block;
  margin-top: 10px;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  transition: 0.3s all;
  cursor: pointer;
}
.chat-body .info-chat .left-info .new-offer .order-name:hover {
  color: #fff;
  transform: scale(1.1);
}
.chat-body .info-chat .left-info .new-offer .user-info {
  display: flex;
  align-items: center;
  margin: 10px 0 12px;
}
.chat-body .info-chat .left-info .new-offer .user-info .user {
  background: #383838;
  border-radius: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  margin-right: 8px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.chat-body .info-chat .left-info .new-offer .user-info .user .avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0;
}
.chat-body .info-chat .left-info .new-offer .user-info .user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
}
.chat-body .info-chat .left-info .new-offer .user-info .user span {
  font-size: 10px;
  margin: 0 7px;
  color: #fff;
  font-weight: 600;
  display: flex;
}
.chat-body .info-chat .left-info .new-offer .user-info .user:hover .avatar img {
  transform: scale(1.15);
}
.chat-body .info-chat .left-info .new-offer .user-info .user:hover span {
  color: #f2553c;
}
.chat-body .info-chat .left-info .new-offer .user-info .stars {
  margin-right: 6px;
  display: flex;
  align-items: center;
}
.chat-body .info-chat .left-info .new-offer .user-info .stars img {
  margin-right: 4px;
}
.chat-body .info-chat .left-info .new-offer .user-info .faq {
  position: relative;
}
.chat-body .info-chat .left-info .new-offer .user-info .faq .faq-btn {
  cursor: pointer;
  width: 15px;
  height: 15px;
}
.chat-body .info-chat .left-info .new-offer .user-info .faq .faq-info {
  display: none;
  position: absolute;
  top: 130%;
  right: -5px;
  background: #fff;
  color: #272727;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 10px;
  line-height: 12px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.chat-body .info-chat .left-info .new-offer .user-info .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.chat-body .info-chat .left-info .new-offer .user-info .faq:hover .faq-btn svg g {
  opacity: 1;
}
.chat-body .info-chat .left-info .new-offer .user-info .faq:hover .faq-btn svg path {
  opacity: 1;
}
.chat-body .info-chat .left-info .new-offer .user-info .faq:hover .faq-info {
  display: block;
}
.chat-body .info-chat .left-info .new-offer .user-info .likes,
.chat-body .info-chat .left-info .new-offer .user-info .reviews {
  padding: 3.5px 5px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2666666667);
  font-size: 8px;
  line-height: 8px;
  font-weight: 500;
  color: #c4b9b9;
  margin: 5px 5px 0 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.chat-body .info-chat .left-info .new-offer .user-info .likes img,
.chat-body .info-chat .left-info .new-offer .user-info .reviews img {
  margin-right: 3px;
}
.chat-body .info-chat .left-info .new-offer .conditions {
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  position: relative;
  font-size: 10px;
  line-height: 11px;
}
.chat-body .info-chat .left-info .new-offer .conditions::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 39px;
  width: 7px;
  height: 7px;
  background: #fff;
  transform: rotate(45deg);
}
.chat-body .info-chat .left-info .new-offer .conditions-title {
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 9px;
}
.chat-body .info-chat .left-info .new-offer .conditions span {
  font-weight: 500;
  color: #bababa;
}
.chat-body .info-chat .left-info .new-offer .conditions .sale {
  font-weight: 400;
  margin: 0 10px;
  color: #2f2f2f;
}
.chat-body .info-chat .left-info .new-offer .conditions .active {
  font-weight: 600;
  color: #f2553c;
}
.chat-body .info-chat .right-info {
  position: relative;
  z-index: 2;
}
.chat-body .info-chat .right-info .btn-close {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: #ff4f4f;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-body .info-chat .right-info .btn-message {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #404040;
}
.chat-body .info-chat .right-info .btn-success {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #3bca44;
  margin: 0 10px;
  transition: 0.3s linear;
}
.chat-body .info-chat .right-info .btn-success:hover {
  transform: scale(1.1);
}
.chat-body .info-chat .right-info .btn-stoped {
  width: 113px;
  height: 35px;
  padding: 0 15px;
  border-radius: 12px;
  background: #ff4f4f;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #ffbaba;
  transition: 0.3s linear;
}
.chat-body .info-chat .right-info .btn-stoped svg {
  margin-right: 10px;
}
.chat-body .info-chat .right-info .btn-stoped:hover {
  transform: scale(1.1);
  color: #fff;
}
.chat-body .info-chat .right-info .btn-stoped:hover svg path {
  stroke: #fff;
}
.chat-body .info-chat .right-info .offer-rejected {
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #f2553c;
}
.chat-body .info-chat .right-info .offer-rejected svg {
  margin-right: 10px;
}
.chat-body .info-chat .right-info .offer-accepted {
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #3BCA44;
}
.chat-body .info-chat .right-info .offer-accepted svg {
  margin-right: 6px;
}
.chat-body .info-chat .right-info .offer-accepted .openOrder-btn {
  padding: 4px 7px;
  border-radius: 20px;
  font-size: 8px;
  line-height: 8px;
  font-weight: 600;
  color: #b3dbb6;
  background: rgba(59, 202, 68, 0.2);
  margin-top: 7px;
  transition: 0.3s all;
}
.chat-body .info-chat .right-info .offer-accepted .openOrder-btn:hover {
  background: #3BCA44;
  color: #fff;
  transform: scale(1.1);
}
.chat-body .info-chat .right-info .btn-pay {
  width: 148px;
  height: 35px;
  border-radius: 12px;
  background: #3bca44;
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-body .info-chat .right-info .btn-pay span {
  display: inline-block;
  margin: 0 7px;
}
.chat-body .info-chat .right-info .btn-pay .sum {
  padding: 2px 5px;
  background: #fff;
  color: #2f2f2f;
  font-size: 8px;
  line-height: 8px;
  font-weight: 600;
  border-radius: 4px;
}
.chat-body .info-chat .rate-form {
  width: 270px;
  position: relative;
  z-index: 2;
  background: #272727;
  padding: 15px;
  border-radius: 12px;
}
.chat-body .info-chat .rate-form .rate-top {
  display: flex;
  align-items: center;
}
.chat-body .info-chat .rate-form .rate-title {
  font-size: 10px;
  line-height: 17px;
  font-weight: 500;
  color: #f2553c;
  margin-right: 15px;
}
.chat-body .info-chat .rate-form .rating {
  display: flex;
  overflow: hidden;
  flex-direction: row-reverse;
  position: relative;
}
.chat-body .info-chat .rate-form .rating > input {
  display: none;
}
.chat-body .info-chat .rate-form .rating > label {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-top: auto;
  background-image: url(../img/svg/star-nocheck.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
}
.chat-body .info-chat .rate-form .rating > input:checked ~ label,
.chat-body .info-chat .rate-form .rating > input:checked ~ label ~ label {
  background-image: url(../img/svg/star.svg);
}
.chat-body .info-chat .rate-form .rating > input:not(:checked) ~ label:hover,
.chat-body .info-chat .rate-form .rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url(../img/svg/star.svg);
}
.chat-body .info-chat .rate-form .rate-text {
  margin: 15px 0 10px;
}
.chat-body .info-chat .rate-form .rate-text textarea {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  background: #fff;
  padding: 5px 9px;
  font-size: 10px;
  line-height: 17px;
  color: #2f2f2f;
  font-weight: 500;
  resize: none;
}
.chat-body .info-chat .rate-form .rate-text textarea::placeholder {
  color: #818181;
}
.chat-body .info-chat .rate-form .cancel-btn {
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #3d3d3d;
  padding: 15px;
  cursor: pointer;
}
.chat-body .info-chat .rate-form .cancel-btn:hover {
  color: #f2553c;
}
.chat-body .info-chat .rate-form .submit-btn {
  width: 100%;
  height: 35px;
  border-radius: 12px;
  background: #f2553c;
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  transition: 0.3s linear;
}
.chat-body .info-chat .rate-form .submit-btn:hover {
  transform: scale(1.05);
}
.chat-body .orders_all .orders-box {
  box-shadow: none !important;
  border: 1px solid rgba(87, 87, 87, 0.05);
}
.chat-body .orders_all .orders-box .left-info {
  width: 50%;
}
.chat-body .orders_all .orders-box .right-info {
  width: 50%;
}

.chat_subscribe {
  height: auto !important;
  padding-bottom: 0;
}
.chat_subscribe .chat {
  height: auto !important;
}
.chat_subscribe .chat-list {
  max-height: 75vh !important;
  margin: 0;
}

.sort {
  display: flex;
  align-items: center;
  margin-right: 25px;
}
.sort-name {
  font-size: 11px;
  font-weight: 600;
  color: #2f2f2f;
  opacity: 0.5;
  display: block;
  margin-right: 10px;
}
.sort .select {
  width: auto;
}
.sort .select-head {
  min-width: 138px;
  height: 26px;
  padding: 0 10px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242, 85, 60, 0.0509803922) !important;
}
.sort .select-head span {
  font-size: 11px;
  font-weight: 600;
  margin-right: 5px;
}
.sort .select .options {
  top: 130%;
  background: #fff;
  border-radius: 12px;
  z-index: 10;
  width: 140px;
  overflow: visible;
}
.sort .select .options::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}
.sort .select .options li {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #272727;
  opacity: 0.4;
  cursor: pointer;
}
.sort .select .options li:hover {
  color: #f2553c;
  opacity: 1;
}
.sort .select .options .active {
  color: #f2553c;
  opacity: 1;
}

.performers-sidebar {
  width: 370px;
  border-radius: 20px;
  background: #fff;
  padding: 30px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  margin: 30px 30px 0 0;
}
.performers-sidebar .sidebar {
  min-width: 310px;
}
.performers-sidebar .sidebar .sidebar-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F5F5F5;
}
.performers-sidebar .sidebar .sidebar-item:last-child {
  border: none;
}
.performers-sidebar .sidebar .sidebar-item .item-head {
  cursor: pointer;
  height: 45px;
  padding: 0 20px;
}
.performers-sidebar .sidebar .sidebar-item .item-head span {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #272727;
  opacity: 0.5;
}
.performers-sidebar .sidebar .sidebar-item .item-body {
  margin: 10px 0 20px;
  display: none;
}
.performers-sidebar .sidebar .showItemBody .item-head span {
  opacity: 1;
}
.performers-sidebar .sidebar .showItemBody .item-head svg {
  transform: rotate(180deg);
}
.performers-sidebar .sidebar .showItemBody .item-head svg path {
  opacity: 1;
}
.performers-sidebar .sidebar .showItemBody .item-body {
  display: block;
}
.performers-sidebar .sidebar .select {
  margin-bottom: 10px;
}
.performers-sidebar .sidebar .select-head {
  background: #F8F8F8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.performers-sidebar .sidebar .select-head span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #9b9b9b;
}
.performers-sidebar .sidebar .select .options {
  top: 100%;
  background: #F8F8F8;
  border-radius: 0 0 12px 12px;
  box-shadow: none;
  border-top: 1px solid #E8E8E8;
}
.performers-sidebar .sidebar .select .options li {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #272727;
  opacity: 0.4;
  cursor: pointer;
}
.performers-sidebar .sidebar .select .options li:hover {
  opacity: 1;
}
.performers-sidebar .sidebar .showSelect .select-head {
  border-radius: 12px 12px 0 0;
}
.performers-sidebar .sidebar .showSelect .select-head span {
  color: #2f2f2f;
}
.performers-sidebar .sidebar .showSelect .select-head svg path {
  stroke: #272727;
}
.performers-sidebar .sidebar .check-box {
  margin-top: 16px;
}
.performers-sidebar .sidebar .check-box label {
  font-weight: 500;
  color: rgba(47, 47, 47, 0.3764705882);
  line-height: 17px;
}
.performers-sidebar .sidebar .gender label {
  width: 49%;
  cursor: pointer;
}
.performers-sidebar .sidebar .gender label input {
  display: none;
}
.performers-sidebar .sidebar .gender label span {
  width: 100%;
  height: 35px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  font-size: 13px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.3764705882);
}
.performers-sidebar .sidebar .gender label span::after {
  content: url(../img/svg/check-min.svg);
  margin-left: 5px;
  display: none;
}
.performers-sidebar .sidebar .gender label input:checked ~ span {
  background: #f2553c;
  color: #fff;
  box-shadow: none;
}
.performers-sidebar .sidebar .gender label input:checked ~ span::after {
  display: block;
}
.performers-sidebar .sidebar .jobs-search {
  position: relative;
}
.performers-sidebar .sidebar .jobs-search .search {
  width: 100%;
  height: 35px;
  border-radius: 12px;
  background: #f8f8f8;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #2f2f2f;
  padding: 0 25px;
}
.performers-sidebar .sidebar .jobs-search .search::placeholder {
  opacity: 0.3;
}
.performers-sidebar .sidebar .jobs-search svg {
  position: absolute;
  top: 12px;
  right: 12%;
  transition: 0.3s linear;
}
.performers-sidebar .sidebar .jobs-search .search:focus ~ svg {
  right: 10px;
}
.performers-sidebar .sidebar .jobs-list {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
  max-height: 170px;
  overflow-y: scroll;
}
.performers-sidebar .sidebar .jobs-list::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
  background: #F8F8F8;
}
.performers-sidebar .sidebar .jobs-list::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 10px;
  background: #CCCCCC;
}
.performers-sidebar .sidebar .jobs-list .job {
  padding: 8px 23.5px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.3764705882);
  margin: 10px 10px 0 0;
  transition: 0.3s linear;
  cursor: pointer;
}
.performers-sidebar .sidebar .jobs-list .job:hover {
  color: #333;
}
.performers-sidebar .sidebar .jobs-list .jobChecked {
  background: #f2553c;
  color: #fff;
}
.performers-sidebar .sidebar .jobs-list .jobChecked span::after {
  content: url(../img/svg/check2.svg);
  margin-left: 8px;
}
.performers-sidebar .sidebar .jobs-list .jobChecked:hover {
  color: #fff;
}
.performers-sidebar .sidebar .jobs-list .jobChecked:hover span::after {
  content: url(../img/svg/close1.svg);
}
.performers-sidebar .sidebar .service-item {
  width: 31%;
  display: block;
}
.performers-sidebar .sidebar .service-item input {
  display: none;
}
.performers-sidebar .sidebar .service-item span {
  width: 100%;
  height: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 80, 139, 0.1019607843);
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #4d4d4d;
  cursor: pointer;
}
.performers-sidebar .sidebar .service-item span svg {
  margin-right: 5px;
}
.performers-sidebar .sidebar .service-item:nth-child(2) span {
  background: rgba(200, 132, 112, 0.1019607843);
}
.performers-sidebar .sidebar .service-item:nth-child(3) span {
  background: rgba(255, 79, 79, 0.1019607843);
}
.performers-sidebar .sidebar .service-item #stories:checked ~ span {
  background: #C1508B;
  color: #fff;
}
.performers-sidebar .sidebar .service-item #stories:checked ~ span svg rect, .performers-sidebar .sidebar .service-item #stories:checked ~ span svg path {
  stroke: #fff;
}
.performers-sidebar .sidebar .service-item #reels:checked ~ span {
  background: #C88470;
  color: #fff;
}
.performers-sidebar .sidebar .service-item #reels:checked ~ span svg rect, .performers-sidebar .sidebar .service-item #reels:checked ~ span svg path {
  stroke: #fff;
}
.performers-sidebar .sidebar .service-item #video:checked ~ span {
  background: #FF4F4F;
  color: #fff;
}
.performers-sidebar .sidebar .service-item #video:checked ~ span svg rect, .performers-sidebar .sidebar .service-item #video:checked ~ span svg path {
  stroke: #fff;
}
.performers-sidebar .sidebar .skills {
  display: flex;
  flex-wrap: wrap;
}
.performers-sidebar .sidebar .skills .skill {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  font-size: 12px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.3764705882);
  margin: 10px 10px 0 0;
  transition: 0.3s linear;
  cursor: pointer;
  transition: 0.3s linear;
}
.performers-sidebar .sidebar .skills .skill svg {
  margin-right: 8px;
}
.performers-sidebar .sidebar .skills .skill:hover {
  color: #2F2F2F;
  transform: scale(1.05);
}
.performers-sidebar .sidebar .skills .skill:hover svg path {
  fill: #f2553c;
  opacity: 1;
}
.performers-sidebar .sidebar .skills .skillCheck {
  color: #fff;
  background: #f2553c;
}
.performers-sidebar .sidebar .skills .skillCheck svg path {
  fill: #fff;
  opacity: 1;
}
.performers-sidebar .sidebar .skills .skillCheck:hover {
  color: #fff;
}
.performers-sidebar .sidebar .skills .skillCheck:hover svg path {
  fill: #fff;
  opacity: 1;
}
.performers-sidebar .sidebar .serviceItem {
  margin-bottom: 15px;
  padding: 5px;
  border-radius: 100px;
}
.performers-sidebar .sidebar .serviceItem:last-child {
  margin-bottom: 0;
}
.performers-sidebar .sidebar .serviceItem .name {
  width: 140px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  background: rgba(193, 80, 139, 0.1019607843);
  cursor: pointer;
}
.performers-sidebar .sidebar .serviceItem .name svg {
  margin-right: 5px;
}
.performers-sidebar .sidebar .serviceItem .reels {
  background: rgba(200, 132, 112, 0.1019607843);
}
.performers-sidebar .sidebar .serviceItem .video {
  background: rgba(255, 79, 79, 0.1019607843);
}
.performers-sidebar .sidebar .serviceItem .socialList {
  display: flex;
}
.performers-sidebar .sidebar .serviceItem .socialList li {
  margin-right: 10px;
  position: relative;
  /*pointer-events: none;*/
}
.performers-sidebar .sidebar .serviceItem .socialList li:last-child {
  margin-right: 0;
}
.performers-sidebar .sidebar .serviceItem .socialList li input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
}
.performers-sidebar .sidebar .serviceItem .socialList li span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.ins {
  background: #c1508b;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.ins svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.tg {
  background: #4BBBFB;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.tg svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.vk {
  background: #4475F1;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.vk svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.yt {
  background: #E85151;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.yt svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.tk {
  background: #16CECD;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.tk svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.rt {
  background: #0A1D38;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.rt svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.wh {
  background: #40AB2F;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked ~ span.wh svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked:hover ~ span.ins svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked:hover ~ span.tg svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked:hover ~ span.vk svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked:hover ~ span.yt svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked:hover ~ span.tk svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked:hover ~ span.rt svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem .socialList li input:checked:hover ~ span.wh svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span.ins svg path {
  fill: #c1508b;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span.tg svg path {
  fill: #4BBBFB;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span.vk svg path {
  fill: #4475F1;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span.yt svg path {
  fill: #E85151;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span.tk svg path {
  fill: #16CECD;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span.rt svg path {
  fill: #0A1D38;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span.wh svg path {
  fill: #40AB2F;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span {
  background: #fff;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span span.ins {
  background: #c1508b;
}
.performers-sidebar .sidebar .serviceItem:hover .socialList li span span.ins svg path {
  fill: #fff;
}
.performers-sidebar .sidebar #stories:hover {
  background: rgba(193, 80, 139, 0.0509803922);
}
.performers-sidebar .sidebar #stories:hover .name {
  background: rgba(193, 80, 139, 0.2);
}
.performers-sidebar .sidebar #reels:hover {
  background: rgba(255, 79, 79, 0.0509803922);
}
.performers-sidebar .sidebar #video:hover {
  background: rgba(200, 132, 112, 0.0509803922);
}
.performers-sidebar .sidebar #stories .name:hover {
  background: rgba(193, 80, 139, 0.2);
}
.performers-sidebar .sidebar #reels .name:hover {
  background: rgba(200, 132, 112, 0.2);
}
.performers-sidebar .sidebar #video .name:hover {
  background: rgba(255, 79, 79, 0.2);
}
.performers-sidebar .sidebar .bg-stories {
  background: rgba(193, 80, 139, 0.0509803922);
}
.performers-sidebar .sidebar .bg-stories .name {
  background: #C1508B !important;
  color: #fff;
}
.performers-sidebar .sidebar .bg-stories .name svg path, .performers-sidebar .sidebar .bg-stories .name rect {
  stroke: #fff;
}
.performers-sidebar .sidebar .bg-reels {
  background: rgba(255, 79, 79, 0.0509803922);
}
.performers-sidebar .sidebar .bg-reels .name {
  background: #C88470 !important;
  color: #fff;
}
.performers-sidebar .sidebar .bg-reels .name svg path, .performers-sidebar .sidebar .bg-reels .name rect {
  stroke: #fff;
}
.performers-sidebar .sidebar .bg-video {
  background: rgba(200, 132, 112, 0.0509803922);
}
.performers-sidebar .sidebar .bg-video .name {
  background: #FF4F4F !important;
  color: #fff;
}
.performers-sidebar .sidebar .bg-video .name svg path, .performers-sidebar .sidebar .bg-video .name rect {
  stroke: #fff;
}
.performers-sidebar .sidebar .checkedSocial .socialList li {
  pointer-events: visible;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span {
  background: #fff;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span.ins svg path {
  fill: #c1508b;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span.tg svg path {
  fill: #4BBBFB;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span.vk svg path {
  fill: #4475F1;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span.yt svg path {
  fill: #E85151;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span.tk svg path {
  fill: #16CECD;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span.rt svg path {
  fill: #0A1D38;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span.wh svg path {
  fill: #40AB2F;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span {
  background: #fff;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span span.ins {
  background: #c1508b;
}
.performers-sidebar .sidebar .checkedSocial .socialList li span span.ins svg path {
  fill: #fff;
}
.performers-sidebar .sidebar .field-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.performers-sidebar .sidebar .field-box .field {
  width: 49%;
  height: 40px;
  border-radius: 12px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 13;
  font-weight: 500;
  color: #9b9b9b;
}
.performers-sidebar .sidebar .field-box .field-number {
  display: inline-block;
  margin: 0 5px;
}
.performers-sidebar .sidebar .sliders_control {
  position: relative;
  min-height: 30px;
}
.performers-sidebar .sidebar .filter-range {
  width: 290px;
}
.performers-sidebar .sidebar .filter-range__title {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
}
.performers-sidebar .sidebar input[type=range]::-webkit-slider-thumb {
  height: 15px;
  width: 15px;
  background: #f2553c;
  border-radius: 50%;
  margin-top: 0;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
}
.performers-sidebar .sidebar input[type=range]:first-child::-webkit-slider-thumb {
  margin-left: -4px;
}
.performers-sidebar .sidebar input[type=range]:last-child::-webkit-slider-thumb {
  margin-left: 6px;
}
.performers-sidebar .sidebar input[type=range]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background: #f2553c;
  border-radius: 50%;
  margin-top: 0;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}
.performers-sidebar .sidebar input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  width: 100%;
  position: absolute;
  background-color: #E8E8E8;
  pointer-events: none;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.performers-sidebar .sidebar .clear-btn {
  width: 100%;
  height: 35px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(92, 92, 92, 0.2509803922);
}
.performers-sidebar .sidebar .clear-btn svg {
  margin-right: 6px;
}
.performers-sidebar .sidebar .clear-btn:hover {
  background: #F8F8F8;
  color: #272727;
}
.performers-sidebar .sidebar .clear-btn:hover svg path {
  opacity: 1;
}

.upload-btn {
  cursor: pointer;
  transform: translateY(-10px);
}
.upload-btn span {
  width: 111px;
  height: 30px;
  border-radius: 20px;
  background: rgba(242, 85, 60, 0.062745098);
  font-size: 12px;
  font-weight: 600;
  color: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-btn span::before {
  content: url(../img/svg/upload1.svg);
  margin-right: 5px;
  margin-top: 3px;
}

.play-btn {
  width: 80px;
  height: 80px;
}
.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000%;
  height: 1000%;
  background: transparent;
  z-index: 50;
}

.main {
  margin-top: 120px;
}
.main .block1 {
  margin: 0 0 40px;
}
.main .block1-item {
  width: 26%;
  height: 430px;
  display: flex;
  align-items: end;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px 40px;
  transition: 0.3s linear;
}
.main .block1-item .item-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
  object-fit: cover;
}
.main .block1-item .hover-img img {
  position: absolute;
  transition: 0.3s linear;
  opacity: 0;
  z-index: 10;
}
.main .block1-item:hover {
  background: #FFD7EC;
}
.main .block1-item:hover .item-bg {
  opacity: 0;
  transform: scale(1.1);
}
.main .block1-item .item-info {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.main .block1-item .item-info .specialist {
  padding: 6px 10px;
  border-radius: 20px;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 10px;
  color: #91687e;
  font-weight: 400;
}
.main .block1-item .item-info .specialist span {
  font-weight: 600;
}
.main .block1-item .item-info .title-text {
  margin: 9px 0;
  color: #333;
}
.main .block1-item .item-info .item-text {
  font-size: 13px;
  line-height: 20px;
  color: #333;
}
.main .block1-item .item-info .view-specialist {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  padding: 14px 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #2f2f2f;
  white-space: nowrap;
  margin: 16px 0 10px;
  transition: 0.3s linear;
}
.main .block1-item .item-info .view-specialist svg {
  margin-right: 8px;
}
.main .block1-item .item-info .view-specialist:hover {
  transform: scale(1.1);
}
.main .block1-item .item-info .add-order {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  padding: 14px;
  background: #C1508B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s all;
}
.main .block1-item .item-info .add-order svg {
  margin-right: 8px;
}
.main .block1-item .item-info .add-order:hover {
  transform: scale(1.1);
}
.main .block1-item:nth-child(1) .hover-img img:nth-child(1) {
  top: -20px;
  left: 10px;
}
.main .block1-item:nth-child(1) .hover-img img:nth-child(2) {
  top: 10px;
  left: 100px;
  transition: 0.3s all;
}
.main .block1-item:nth-child(1) .hover-img img:nth-child(3) {
  top: -20px;
  right: 5px;
}
.main .block1-item:nth-child(1) .hover-img img:nth-child(4) {
  top: 104px;
  right: -30px;
  transition: 0.6s all;
}
.main .block1-item:nth-child(1):hover .hover-img img:nth-child(1) {
  top: 7px;
  left: 24px;
  opacity: 1;
  transform: rotate(-15deg);
}
.main .block1-item:nth-child(1):hover .hover-img img:nth-child(2) {
  top: 35px;
  left: 122px;
  opacity: 1;
}
.main .block1-item:nth-child(1):hover .hover-img img:nth-child(3) {
  top: 0;
  right: 20px;
  opacity: 1;
}
.main .block1-item:nth-child(1):hover .hover-img img:nth-child(4) {
  top: 104px;
  right: 0px;
  opacity: 1;
}
.main .block1-item:nth-child(2) .add-order {
  background: #c88470;
}
.main .block1-item:nth-child(2) .hover-img img:nth-child(1) {
  top: -20px;
  left: 50px;
}
.main .block1-item:nth-child(2) .hover-img img:nth-child(2) {
  top: 7px;
  right: -30px;
  transition: 0.3s all;
}
.main .block1-item:nth-child(2) .hover-img img:nth-child(3) {
  top: 104px;
  right: -30px;
  transition: 0.6s all;
}
.main .block1-item:nth-child(2):hover {
  background: #FFE0D7;
}
.main .block1-item:nth-child(2):hover .hover-img img:nth-child(1) {
  top: 11px;
  left: 93px;
  opacity: 1;
  transform: rotate(-15deg);
}
.main .block1-item:nth-child(2):hover .hover-img img:nth-child(2) {
  top: 7px;
  right: 0px;
  opacity: 1;
  transform: rotate(15deg);
}
.main .block1-item:nth-child(2):hover .hover-img img:nth-child(3) {
  top: 104px;
  right: 0px;
  opacity: 1;
}
.main .block1-item:last-child {
  width: 43%;
}
.main .block1-item:last-child .view-specialist {
  margin: 20px 20px 0 0;
  padding: 14px;
}
.main .block1-item:last-child .add-order {
  background: #ff4f4f;
  margin-top: 20px;
}
.main .block1-item:last-child .hover-img img:nth-child(1) {
  top: -20px;
  right: 210px;
}
.main .block1-item:last-child .hover-img img:nth-child(2) {
  top: 7px;
  right: 70px;
  transition: 0.2s all;
}
.main .block1-item:last-child .hover-img img:nth-child(3) {
  top: 104px;
  right: -30px;
  transition: 0.4s all;
}
.main .block1-item:last-child:hover {
  background: #ffd0d0;
}
.main .block1-item:last-child:hover .hover-img img:nth-child(1) {
  top: 0;
  right: 179px;
  opacity: 1;
}
.main .block1-item:last-child:hover .hover-img img:nth-child(2) {
  top: 19px;
  right: 58px;
  opacity: 1;
}
.main .block1-item:last-child:hover .hover-img img:nth-child(3) {
  top: 104px;
  right: 0px;
  opacity: 1;
  transform: scale(1.2);
}
.main .block1-list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.main .block1-list li {
  height: 45px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  margin: 10px 10px 0 0;
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s linear;
  cursor: default;
}
.main .block1-list li img {
  margin-right: 8px;
  margin-right: 5px;
  height: 17px;
}
.main .block1-list li:hover {
  transform: scale(1.1);
}
.main .block1-list li:nth-child(3) img, .main .block1-list li:nth-child(6) img {
  height: 15px;
}
.main .block1-list li:nth-child(4) img {
  height: 13px;
}
.main .block1-list li:nth-child(7) img {
  height: 19px;
}
.main .fire {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  cursor: pointer;
}
.main .fire svg {
  opacity: 0.4;
}
.main .fire .fire-text {
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  color: #2f2f2f;
  width: 79px;
  margin: 0 8px 0 7px;
  display: none;
  opacity: 0;
  transition: 1s all;
}
.main .fire .fire-text p:last-child {
  display: none;
}
.main .fire .data {
  display: none;
  font-size: 9px;
  line-height: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.main .fire .faq {
  position: relative;
  z-index: 99;
  display: none;
  opacity: 0;
  overflow: hidden;
  transition: 1s all;
}
.main .fire .faq .faq-btn {
  cursor: pointer;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .fire .faq .faq-info {
  display: none;
  position: absolute;
  top: 105%;
  right: -5px;
  background: #fff;
  color: #272727;
  border-radius: 12px;
  width: 130px;
  padding: 8px;
  font-size: 10px;
  line-height: 12px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.main .fire .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .fire .faq:hover .faq-btn svg rect {
  fill-opacity: 0.5;
}
.main .fire .faq:hover .faq-btn svg path {
  opacity: 1;
}
.main .fire .faq:hover .faq-info {
  display: block;
}
.main .fire:hover {
  width: 155px;
}
.main .fire:hover svg {
  opacity: 1;
}
.main .fire:hover .fire-text, .main .fire:hover .faq {
  display: block;
  opacity: 1;
  overflow: visible;
}
.main .fire_promoting {
  width: 135px;
  height: 40px;
  background: #f2553c;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
}
.main .fire_promoting svg {
  opacity: 1;
  margin-right: 7px;
}
.main .fire_promoting svg path {
  fill: #fff;
}
.main .fire_promoting .fire-text {
  display: block;
  opacity: 1;
  width: auto;
  color: #fff;
  margin: 0;
}
.main .fire_promoting .fire-text p:first-child {
  display: none;
}
.main .fire_promoting .fire-text p:last-child {
  display: block;
}
.main .fire_promoting .data {
  display: block;
}
.main .fire_promoting .faq {
  display: none;
}
.main .fire_promoting:hover .faq {
  display: none;
}
.main .fire_promoting:hover {
  width: 135px;
}
.main .block2 .container {
  margin-bottom: 30px;
}
.main .block2 .swiper-slide {
  width: 270px;
}
.main .block2-item {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: end;
}
.main .block2-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(47, 47, 47, 0) 50%, rgb(47, 47, 47) 100%);
  z-index: 5;
}
.main .block2-item .stories-img,
.main .block2-item .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
  z-index: 2;
}
.main .block2-item .block2-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main .block2-item .play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
  cursor: pointer;
}
.main .block2-item .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.main .block2-item .play-btn:hover svg path {
  opacity: 1;
}
.main .block2-item .btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  padding: 0 10px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
.main .block2-item .btns .prev,
.main .block2-item .btns .next {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: 0.3s linear;
}
.main .block2-item .btns .prev:hover,
.main .block2-item .btns .next:hover {
  transform: scale(1.2);
}
.main .block2-item .stories-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
  z-index: 2;
}
.main .block2-item .item-info {
  position: relative;
  z-index: 6;
  width: 100%;
  color: #fff;
  padding: 10px 17px 10px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1333333333);
}
.main .block2-item .item-info a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.main .block2-item .item-info .avatar {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 12px;
}
.main .block2-item .item-info .name {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  margin-right: 7px;
}
.main .block2-item .item-info .stars img {
  margin-right: 4px;
}
.main .block2-item .item-info .faq {
  position: relative;
  z-index: 99;
}
.main .block2-item .item-info .faq .faq-btn {
  cursor: pointer;
  width: 15px;
  height: 15px;
}
.main .block2-item .item-info .faq .faq-info {
  display: none;
  position: absolute;
  bottom: 130%;
  right: -5px;
  background: #fff;
  color: #272727;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 10px;
  line-height: 12px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .block2-item .item-info .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  bottom: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .block2-item .item-info .faq:hover .faq-btn svg rect {
  fill-opacity: 0.5;
}
.main .block2-item .item-info .faq:hover .faq-btn svg path {
  opacity: 1;
}
.main .block2-item .item-info .faq:hover .faq-info {
  display: block;
}
.main .block2-item .item-info .likes,
.main .block2-item .item-info .reviews {
  padding: 3.5px 5px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2666666667);
  font-size: 8px;
  line-height: 8px;
  font-weight: 500;
  color: #c4b9b9;
  margin: 5px 5px 0 0;
}
.main .block2-item .item-info .likes img,
.main .block2-item .item-info .reviews img {
  margin-right: 3px;
}
.main .block2-item .item-info .arrow {
  display: none;
}
.main .block2-item .item-info:hover .name {
  color: #f2553c;
}
.main .block2-item .item-info:hover .arrow {
  display: block;
}
.main .block2-item:hover .stories-img,
.main .block2-item:hover .poster {
  transform: scale(1.1);
}
.main .block2 .showVideo {
  background: rgba(0, 0, 0, 0.4);
}
.main .block2 .showVideo .block2-video {
  z-index: 10;
}
.main .block2 .showVideo .item-info, .main .block2 .showVideo .poster {
  display: none;
}
.main .block3 {
  margin: 74px 0 72px;
}
.main .block3 .container {
  margin-bottom: 30px;
}
.main .block3 .swiper-slide {
  width: 570px;
}
.main .block3-item {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 20px 30px;
  display: flex;
  align-items: end;
}
.main .block3-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(47, 47, 47, 0) 50%, rgb(47, 47, 47) 100%);
  z-index: 5;
}
.main .block3-item .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
  z-index: 2;
}
.main .block3-item .block3-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main .block3-item .play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
  cursor: pointer;
}
.main .block3-item .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.main .block3-item .play-btn:hover svg path {
  opacity: 1;
}
.main .block3-item .item-info {
  position: relative;
  z-index: 6;
  width: 100%;
  color: #fff;
  padding: 10px 17px 10px 10px;
  border-radius: 20px;
}
.main .block3-item .item-info a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.main .block3-item .item-info .avatar {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 12px;
}
.main .block3-item .item-info .name {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  margin-right: 7px;
}
.main .block3-item .item-info .stars img {
  margin-right: 4px;
}
.main .block3-item .item-info .likes,
.main .block3-item .item-info .reviews {
  padding: 3.5px 5px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2666666667);
  font-size: 8px;
  line-height: 8px;
  font-weight: 500;
  color: #c4b9b9;
  margin: 5px 5px 0 0;
}
.main .block3-item .item-info .likes img,
.main .block3-item .item-info .reviews img {
  margin-right: 3px;
}
.main .block3-item .item-info .arrow {
  display: none;
}
.main .block3-item .item-info:hover {
  background: rgba(0, 0, 0, 0.1333333333);
}
.main .block3-item .item-info:hover .name {
  color: #f2553c;
}
.main .block3-item .item-info:hover .arrow {
  display: block;
}
.main .block3-item:hover .poster {
  transform: scale(1.1);
}
.main .block3 .showVideo {
  background: rgba(0, 0, 0, 0.4);
}
.main .block3 .showVideo .block3-video {
  z-index: 10;
}
.main .block3 .showVideo .item-info, .main .block3 .showVideo .poster {
  display: none;
}
.main .performers .container {
  padding: 0;
}
.main .performers-top {
  padding: 0 24px;
}
.main .performers .swiper-performers {
  padding: 24px;
}
.main .performers .stories-title,
.main .performers .reels-title,
.main .performers .video-title {
  font-size: 22px;
  font-weight: 600;
  font-family: "MontserratAlternates", sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
.main .performers .stories-title svg,
.main .performers .reels-title svg,
.main .performers .video-title svg {
  margin-right: 10px;
}
.main .performers .stories-title {
  color: #c1508b;
}
.main .performers .reels-title {
  color: #c88470;
}
.main .performers .video-title {
  color: #ff4f4f;
}
.main .performers .performer {
  width: 100%;
  display: flex;
  align-items: start;
  padding: 20px;
  position: relative;
  color: #2f2f2f;
}
.main .performers .performer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.09);
  transition: 0.3s linear;
}
.main .performers .performer:hover::before {
  transform: scale(1.05);
}
.main .performers .performer .avatar {
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 15px;
  position: relative;
  z-index: 2;
}
.main .performers .performer .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
}
.main .performers .performer .avatar:hover img {
  transform: scale(1.1);
}
.main .performers .performer .info {
  position: relative;
  z-index: 2;
}
.main .performers .performer .name {
  font-size: 17px;
  line-height: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.main .performers .performer .stars {
  margin: 0 8px;
  display: flex;
  flex-wrap: nowrap;
}
.main .performers .performer .stars img {
  width: 13px;
  margin-right: 5px;
}
.main .performers .performer .stars img:last-child {
  width: 15px;
}
.main .performers .performer .faq {
  position: relative;
}
.main .performers .performer .faq .faq-btn {
  cursor: pointer;
  width: 15px;
  height: 15px;
}
.main .performers .performer .faq .faq-info {
  display: none;
  position: absolute;
  top: 130%;
  right: -5px;
  background: #fff;
  color: #272727;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 10px;
  line-height: 12px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .performers .performer .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .performers .performer .faq:hover .faq-btn svg rect {
  fill-opacity: 0.5;
}
.main .performers .performer .faq:hover .faq-btn svg path {
  opacity: 1;
}
.main .performers .performer .faq:hover .faq-info {
  display: block;
}
.main .performers .performer .likes {
  font-size: 8px;
  line-height: 8px;
  color: #898989;
  padding: 3.5px;
  background: rgba(0, 0, 0, 0.0509803922);
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-right: 5px;
}
.main .performers .performer .likes img {
  margin-right: 3px;
}
.main .performers .performer .reviews {
  font-size: 8px;
  line-height: 8px;
  color: #898989;
  padding: 3.5px 5px;
  background: rgba(0, 0, 0, 0.0509803922);
  white-space: nowrap;
  border-radius: 20px;
  transition: 0.3s linear;
  cursor: default;
}
.main .performers .performer .reviews:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.6980392157);
  color: #fff;
}
.main .performers .performer .posts {
  display: flex;
  align-items: center;
  margin: 15px 0;
  flex-wrap: wrap;
}
.main .performers .performer .posts li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 20px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(193, 80, 139, 0.1019607843);
}
.main .performers .performer .posts li a img {
  margin-right: 5px;
}
.main .performers .performer .posts li {
  margin-right: 10px;
}
.main .performers .performer .posts li:last-child {
  margin-right: 0;
}
.main .performers .performer-text {
  font-size: 12px;
  line-height: 24px;
}
.main .performers .performer-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.main .performers .performer-list li {
  height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: #fff;
  margin: 10px 10px 0 0;
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
}
.main .performers .performer-list li img {
  margin-right: 5px;
}
.main .performers .performer-list li svg {
	margin-right: 5px;
	width: 12px;
}
.main .performers .performer-list li svg path {
	fill: #F2553C;
}
.main .performers .performer .add-btn {
  width: 100%;
  height: 45px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9e9e9e;
  transition: 0.3s linear;
  position: relative;
  background: transparent;
}
.main .performers .performer .add-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #F6F6F6;
  transition: 0.3s linear;
  border-radius: 12px;
}
.main .performers .performer .add-btn svg {
  margin-right: 8px;
  position: relative;
  z-index: 2;
}
.main .performers .performer .add-btn span {
  position: relative;
  z-index: 2;
}
.main .performers .performer .add-btn:hover::before {
  transform: scaleX(1.1);
  background: #F2553C;
}
.main .performers .performer .add-btn:hover {
  color: #fff;
}
.main .performers .performer .add-btn:hover svg path {
  stroke: #fff;
}
.main .performers .performer .add-favorites {
  min-width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #fff2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main .performers .performer .add-favorites input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.main .performers .performer .add-favorites svg {
  transition: 0.3s linear;
}
.main .performers .performer .add-favorites:hover svg {
  transform: scale(1.2);
}
.main .performers .performer .add-favorites input:checked ~ svg path {
  stroke: #FF4F4F;
  fill: #FF4F4F;
}
.main .top_performers {
  margin: 60px 0 82px;
}
.main .top_performers .swiper-slide:nth-child(2) .stories-title {
  color: #C88470;
}
.main .top_performers .swiper-slide:nth-child(3) .stories-title {
  color: #FF4F4F;
}
.main .mobile_performers {
  display: none;
}
.main .block4 {
  margin-bottom: 70px;
}
.main .block4-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #FFE0D7;
  padding: 50px;
}
.main .block4-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
  transition: 0.3s all;
}
.main .block4-banner .banner-bg:last-child {
  display: none;
}
.main .block4-banner:hover .banner-bg {
  transform: scale(1.07);
  left: -2.5%;
}
.main .block4-info {
  position: relative;
  z-index: 2;
  max-width: 370px;
}
.main .block4-info .info-text {
  margin: 15px 0 20px;
  font-size: 13px;
  line-height: 20px;
  color: #333;
}
.main .block4 .create-order {
  width: 230px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  background: #c88470;
  transition: 0.3s linear;
}
.main .block4 .create-order svg {
  margin-right: 10px;
  transition: 0.3s linear;
}
.main .block4 .create-order:hover {
  transform: scale(1.1);
}
.main .block4 .create-order:hover svg path {
  stroke: #fff;
}
.main .profile {
  padding-bottom: 70px;
}
.main .profile .profile-info {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}
.main .profile .profile-info .avatar {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  object-fit: cover;
  margin-right: 40px;
}
.main .profile .profile-info .title-text {
  margin-right: 20px;
}
.main .profile .profile-info .likes {
  font-size: 14px;
  line-height: 14px;
  color: #898989;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.0509803922);
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-right: 5px;
}
.main .profile .profile-info .likes img {
  width: 12px;
  margin-right: 5px;
}
.main .profile .profile-info .info-list li {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  margin-top: 15px;
  color: #333;
}
.main .profile .profile-info .info-list li span:first-child {
  min-width: 82px;
  margin-right: 20px;
  opacity: 0.4;
}
.main .profile .profile-info .info-list li .change {
  position: relative;
}
.main .profile .profile-info .info-list li .change input {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: #333;
  pointer-events: none;
  width: 50px;
}
.main .profile .profile-info .info-list li .change .edit-btn {
  cursor: pointer;
}
.main .profile .profile-info .info-list li .change .edit-btn:hover img {
  transform: scale(1.5);
}
.main .profile .profile-info .info-list li .change {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  cursor: default;
}
.main .profile .profile-info .info-list li .change input {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  background: transparent;
  color: #333;
  opacity: 1;
  pointer-events: none;
  position: relative;
  z-index: 2;
  max-width: 150px;
}
.main .profile .profile-info .info-list li .change #datepicker-age {
  width: 0px;
  appearance: none;
  opacity: 0;
}
.main .profile .profile-info .info-list li .change #ageDisplay {
  width: auto;
  position: relative !important;
  z-index: 20 !important;
  opacity: 1 !important;
  margin-right: 4px;
}
.main .profile .profile-info .info-list li .change .age {
  position: relative;
  z-index: 3;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: #333;
  margin-right: 4px;
}
.main .profile .profile-info .info-list li .change .change-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .profile .profile-info .info-list li .change .change-btn::after {
  content: url(../img/svg/pen2.svg);
  position: relative;
  z-index: 2;
  opacity: 0.3;
}
.main .profile .profile-info .info-list li .change .change-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #f6f6f6;
  display: none;
}
.main .profile .profile-info .info-list li .change:hover .change-btn::after {
  opacity: 1;
}
.main .profile .profile-info .info-list li .change:hover .change-btn::before {
  display: block;
}
.main .profile .profile-info .info-list li .change .counter {
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 5px 12px;
  border-radius: 8px;
  z-index: 10;
  background: #fff;
  display: none;
}
.main .profile .profile-info .info-list li .change .counter .minus {
  margin-right: 5px;
}
.main .profile .profile-info .info-list li .showCounter .counter {
  display: flex;
}
.main .profile .profile-info .info-list li .select {
  width: auto;
}
.main .profile .profile-info .info-list li .select-head {
  height: auto;
  background: transparent;
}
.main .profile .profile-info .info-list li .select .options .option {
  margin-top: 0 !important;
  font-size: 12px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
  padding: 5px 10px !important;
}
.main .profile .profile-info .info-list li .changeClick input {
  pointer-events: all;
  min-width: 50px;
}
.main .profile .profile-info .info-list li .changeClick .change-btn {
  cursor: pointer;
}
.main .profile .profile-info .info-list li .changeClick .change-btn::after {
  content: url(../img/svg/check1.svg);
  opacity: 1;
  transform: translateY(2px);
}
.main .profile .profile-info .info-list li .changeClick .change-btn::before {
  display: block;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.main .profile .profile-tab {
  margin-top: 50px;
}
.main .profile .profile-tab .tab-btns {
  display: flex;
  margin-bottom: 30px;
}
.main .profile .profile-tab .tab-btns .tab-btn {
  cursor: pointer;
  margin-right: 50px;
}
.main .profile .profile-tab .tab-btns .tab-btn:last-child {
  margin-right: 0;
}
.main .profile .profile-tab .tab-btns .tab-btn span {
  font-size: 25px;
  font-weight: 700;
  color: #2f2f2f;
  opacity: 0.3;
}
.main .profile .profile-tab .tab-btns .tab-btn input:checked ~ span {
  opacity: 1;
}
.main .orders-list {
  position: relative;
  margin: 20px 0 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #F6F6F6;
}
.main .orders-list:last-child {
  border: none;
}
.main .orders-list .select-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 275px;
  height: 20px;
  cursor: pointer;
  appearance: none;
}
.main .orders-list .list-title {
  display: flex;
  align-items: center;
}
.main .orders-list .list-title .num {
  padding: 3px 8px 1.5px;
  background: #3bca44;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 7px;
  margin-right: 6px;
}
.main .orders-list .list-title .waiting {
  background: #ffecda;
  color: #b08b69;
}
.main .orders-list .list-title h3 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  margin-right: 8px;
}
.main .orders-list .rejected .num {
  background: rgba(255, 79, 79, 0.1019607843);
  color: #daa3a3;
}
.main .orders-list .rejected h3 {
  color: #daa3a3;
}
.main .orders-list .orders {
  display: none;
  margin-top: 15px !important;
}
.main .orders-list .select-btn:checked ~ .list-title img {
  transform: rotate(180deg);
}
.main .orders-list .select-btn:checked ~ .orders {
  display: block;
}
.main .orders {
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
.main .orders .left-info {
  width: 55%;
  padding: 40px;
  border-radius: 20px 0 0 20px;
}
.main .orders .left-info .order-name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #2f2f2f;
  max-width: 460px;
}
.main .orders .left-info .order-name span.new {
  position: relative;
}
.main .orders .left-info .order-name span.new::before {
  content: "";
  display: block;
  position: absolute;
  left: 102%;
  bottom: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f2553c;
}
.main .orders .left-info .order-name .new-message {
  padding: 3px 7px;
  border-radius: 50px;
  background: #f2553c;
  color: #fff;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  margin-left: 5px;
}
.main .orders .left-info .order-name .new-message::before {
  content: url(../img/svg/message-blue.svg);
  margin-right: 4px;
}
.main .orders .left-info .order-text {
  font-size: 13px;
  line-height: 21px;
  margin: 15px 0 24px;
  max-width: 340px;
}
.main .orders .left-info .info-medium {
  margin-bottom: 30px;
}
.main .orders .left-info .info-medium .status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 13px;
  margin-right: 30px;
  margin-top: 15px;
}
.main .orders .left-info .info-medium .status span {
  font-weight: 500;
  color: #b5b5b5;
  margin-right: 10px;
  margin-top: 10px;
}
.main .orders .left-info .info-medium .status-info {
  padding: 8.5px 11px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 600;
  margin-top: 10px;
}
.main .orders .left-info .info-medium .status-info::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 7px;
}
.main .orders .left-info .info-medium .status .start {
  color: #49634a;
  background: #eeffef;
}
.main .orders .left-info .info-medium .status .start::before {
  background: #39DB42;
}
.main .orders .left-info .info-medium .status .expectation {
  background: #fff4f2;
  color: #664640;
}
.main .orders .left-info .info-medium .status .expectation::before {
  background: #F2553C;
}
.main .orders .left-info .info-medium .status .payment_required {
  background: #33B93B;
  color: #fff;
}
.main .orders .left-info .info-medium .status .payment_required::before {
  background: #fff;
}
.main .orders .left-info .info-medium .status .spor {
  background: rgba(255, 79, 79, 0.1019607843);
  color: #ff4f4f;
}
.main .orders .left-info .info-medium .status .spor::before {
  background: #ff4f4f;
}
.main .orders .left-info .info-medium .user {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 13px;
  margin-top: 25px;
}
.main .orders .left-info .info-medium .user span {
  font-weight: 500;
  color: #b5b5b5;
  margin-right: 10px;
}
.main .orders .left-info .info-medium .user-info {
  padding: 5px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  position: relative;
  background: #f2f2f2;
}
.main .orders .left-info .info-medium .user-info span {
  color: #4d4d4d;
  font-weight: 600;
}
.main .orders .left-info .info-medium .user-info .avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 7px;
  overflow: hidden;
}
.main .orders .left-info .info-medium .user-info .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}
.main .orders .left-info .info-medium .user-info:hover span {
  color: #f2553c;
}
.main .orders .left-info .info-medium .user-info:hover .avatar img {
  transform: scale(1.1);
}
.main .orders .left-info .info-bottom {
  display: flex;
  align-items: center;
}
.main .orders .left-info .view-all {
  width: 204px;
  height: 45px;
  border-radius: 12px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #9e9e9e;
  transition: 0.3s all;
  margin-right: 20px;
}
.main .orders .left-info .view-all svg {
  margin-left: 16px;
}
.main .orders .left-info .view-all:hover {
  background: #F2553C;
  color: #fff;
  transform: scale(1.1);
}
.main .orders .left-info .view-all:hover svg path {
  stroke: #fff;
}
.main .orders .left-info .view-info {
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #2f2f2f;
  display: flex;
  align-items: center;
}
.main .orders .left-info .view-info svg {
  margin-right: 5px;
}
.main .orders .left-info .view-info p {
  opacity: 0.2;
}
.main .orders .left-info .suspend {
  width: 204px;
  height: 45px;
  border-radius: 12px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #9e9e9e;
  transition: 0.3s all;
}
.main .orders .left-info .suspend svg {
  margin-right: 7px;
}
.main .orders .left-info .suspend:hover {
  color: #5f5f5f;
}
.main .orders .left-info .suspend:hover svg rect {
  fill: #5F5F5F;
}
.main .orders .left-info .remit-payment {
  width: 150px;
  height: 45px;
  border-radius: 12px;
  background: #33b93b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s linear;
}
.main .orders .left-info .remit-payment svg {
  margin-right: 7px;
}
.main .orders .left-info .remit-payment:hover {
  transform: scale(1.1);
}
.main .orders .right-info {
  width: 45%;
  background: #fdf6f5;
  padding: 30px;
  border-radius: 0 20px 20px 0;
}
.main .orders .right-info .right-title {
  font-size: 16px;
  line-height: 30px;
  color: #c3b2af;
  font-weight: 600;
}
.main .orders .right-info .item {
  margin-top: 20px;
  margin-right: 30px;
}
.main .orders .right-info .item:last-child {
  margin-right: 0;
}
.main .orders .right-info .item-name {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #6b5f5d;
  margin-right: 8px;
  display: inline-block;
}
.main .orders .right-info .item-info {
  background: #fff;
  border-radius: 20px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
}
.main .orders .right-info .item-info img {
  margin-right: 5px;
}
.main .orders .right-info .item .socials {
  margin-left: 8px;
}
.main .orders .right-info .item .socials img:first-child {
  margin-right: -10px;
}
.main .orders .right-info .item-term {
  background: #F9EDEB;
  border-radius: 20px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #9A7C77;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
}
.main .orders .right-info .item .zero {
  background: #ff4f4f;
  color: #fff;
}
.main .orders .right-info .item .service .item-info:first-child {
  margin-bottom: 10px;
}
.main .orders .right-info .item .item-text {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #c5b6b3;
  margin-left: 10px;
}
.main .orders .right-info .auto-renewal {
  margin-top: 20px;
}
.main .orders .right-info .auto-renewal .check-box {
  margin-right: 11px;
}
.main .orders .right-info .auto-renewal .faq {
  position: relative;
}
.main .orders .right-info .auto-renewal .faq .faq-btn {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .orders .right-info .auto-renewal .faq .faq-info {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 11px;
  line-height: 16px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .orders .right-info .auto-renewal .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .orders .right-info .auto-renewal .faq:hover .faq-info {
  display: block;
}
.main .orders_all {
  box-shadow: none;
}
.main .orders_all .orders-box {
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-top: 20px;
}
.main .orders_all .orders-box:first-child {
  margin-top: 34px;
}
.main .orders_all .left-info {
  width: 60%;
  padding: 25px;
  background: #fff;
}
.main .orders_all .left-info .order-name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.main .orders_all .left-info .order-name .data {
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  color: #2f2f2f;
  opacity: 0.4;
}
.main .orders_all .left-info .order-text {
  font-size: 12px;
  line-height: 21px;
  margin: 0 0 25px 0;
  max-width: 100%;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .orders_all .left-info .view-all svg {
  display: none;
}
.main .orders_all .left-info .viewed {
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: rgba(47, 47, 47, 0.2509803922);
}
.main .orders_all .left-info .viewed span {
  display: inline-block;
  margin: 0 5px;
}
.main .orders_all .left-info .viewed::before {
  content: url(../img/svg/view.svg);
  margin-right: 5px;
}
.main .orders_all .right-info {
  width: 40%;
  padding: 25px;
}
.main .orders_all .right-info .right-title {
  display: none;
}
.main .orders_all .right-info .item {
  margin: 0 0 15px 0;
}
.main .orders_all .right-info .item:last-child {
  margin: 0;
}
.main .orders_all .right-info .item-name {
  font-size: 11px;
  margin-right: 8px;
  color: #c5b3b1;
  white-space: nowrap;
  width: 82px;
}
.main .orders_all .right-info .item-info {
  font-size: 11px;
  line-height: 14px;
}
.main .orders_all .right-info .item-info img {
  margin-right: 5px;
}
.main .orders_all .right-info .item-info span {
  font-size: 10px;
  line-height: 13px;
  color: #b9b9b9;
  margin-left: 10px;
}
.main .orders_all .right-info .item .socials {
  margin-left: 8px;
}
.main .orders_all .right-info .item .socials img:first-child {
  margin-right: -10px;
}
.main .orders_all .right-info .item-term {
  font-size: 11px;
}
.main .orders_all .right-info .item .zero {
  background: #ff4f4f;
  color: #fff;
}
.main .orders_all .right-info .item .service .item-info:first-child {
  margin-bottom: 10px;
}
.main .orders_all .right-info .item_dop {
  align-items: start;
}
.main .orders_all .right-info .item_dop .item-name {
  margin-top: 7px;
}
.main .orders_all .right-info .item_dop .item-info {
  height: 42px;
  border-radius: 12px;
  font-size: 10px;
  margin-bottom: 5px;
}
.main .orders_all .right-info .item_dop .item-info:last-child {
  margin: 0;
}
.main .orders_all .right-info .item_dop .item-info img {
  width: 15px;
}
.main .orders_all .right-info .auto-renewal {
  margin-top: 20px;
}
.main .orders_all .right-info .auto-renewal .check-box {
  margin-right: 11px;
}
.main .orders_all .right-info .auto-renewal .faq {
  position: relative;
}
.main .orders_all .right-info .auto-renewal .faq .faq-btn {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .orders_all .right-info .auto-renewal .faq .faq-info {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 11px;
  line-height: 16px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .orders_all .right-info .auto-renewal .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .orders_all .right-info .auto-renewal .faq:hover .faq-info {
  display: block;
}
.main .orders_all .performers-box {
  margin-top: 20px;
}
.main .orders-tab-bnts .tab-btn {
  margin-right: 40px;
  cursor: pointer;
}
.main .orders-tab-bnts .tab-btn:last-child {
  margin-right: 0;
}
.main .orders-tab-bnts .tab-btn input {
  display: none;
}
.main .orders-tab-bnts .tab-btn .title-text {
  opacity: 0.2;
}
.main .orders-tab-bnts .tab-btn input:checked ~ .title-text {
  opacity: 1;
}
.main .myOrders {
  padding-bottom: 70px;
}
.main .myOrders .archive-orders {
  font-size: 17px;
  font-weight: 600;
  color: #d4d4d4;
  cursor: pointer;
}
.main .myOrders .archive-orders svg {
  margin-right: 6px;
}
.main .myOrders .archive-orders:hover {
  color: #9b9b9b;
}
.main .myOrders .archive-orders:hover svg path {
  fill: #9b9b9b;
}
.main .myOrders .orders {
  margin-top: 30px;
}
.main .openOrders .change {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  height: 30px;
  cursor: default;
}
.main .openOrders .change input {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  background: transparent;
  color: #333;
  opacity: 1;
  pointer-events: none;
  position: relative;
  z-index: 2;
  max-width: 150px;
}
.main .openOrders .change .change-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .openOrders .change .change-btn::after {
  content: url(../img/svg/pen2.svg);
  position: relative;
  z-index: 2;
  opacity: 0.3;
}
.main .openOrders .change .change-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #F4F4F4;
}
.main .openOrders .change:hover .change-btn::after {
  opacity: 1;
}
.main .openOrders .change:hover .change-btn::before {
  display: block;
}
.main .openOrders .changeClick input {
  pointer-events: all;
}
.main .openOrders .changeClick .change-btn {
  cursor: pointer;
}
.main .openOrders .changeClick .change-btn::after {
  content: url(../img/svg/check1.svg);
  opacity: 1;
  transform: translateY(2px);
}
.main .openOrders .changeClick .change-btn::before {
  display: block;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.main .openOrders .bg-white .change-btn::before {
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .openOrders .bg-red .change-btn::before {
  background: #F9EDEB;
}
.main .openOrders .top-info .title-text {
  font-size: 20px;
  line-height: 30px;
  width: 44%;
  margin-right: 50px;
}
.main .openOrders .top-info .info-list .info-item {
  font-size: 12px;
  line-height: 13px;
  display: flex;
  align-items: start;
  flex-direction: column;
  margin-right: 40px;
}
.main .openOrders .top-info .info-list .info-item:last-child {
  margin-right: 0;
}
.main .openOrders .top-info .info-list .info-item span {
  font-weight: 500;
  color: #b5b5b5;
}
.main .openOrders .top-info .info-list .info-item .status, .main .openOrders .top-info .info-list .info-item .info, .main .openOrders .top-info .info-list .info-item .budget {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
  padding: 8.5px 12px;
  border-radius: 230px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  white-space: nowrap;
}
.main .openOrders .top-info .info-list .info-item .budget {
  background: #f4f4f4;
  box-shadow: none;
}
.main .openOrders .top-info .info-list .info-item .budget span {
  font-size: 10px;
  font-weight: 600;
  color: #adadad;
  margin-left: 5px;
}
.main .openOrders .top-info .info-list .info-item .status {
  box-shadow: none;
}
.main .openOrders .top-info .info-list .info-item .status::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 7px;
}
.main .openOrders .top-info .info-list .info-item .start {
  color: #49634a;
  background: #eeffef;
}
.main .openOrders .top-info .info-list .info-item .start::before {
  background: #39DB42;
}
.main .openOrders .top-info .info-list .info-item .dispute {
  color: #FF4F4F;
  background: rgba(255, 79, 79, 0.1019607843);
}
.main .openOrders .top-info .info-list .info-item .dispute::before {
  background: #FF4F4F;
}
.main .openOrders .top-info .info-list .info-item .expectation {
  background: #fff4f2;
  color: #664640;
}
.main .openOrders .top-info .info-list .info-item .expectation::before {
  background: #F2553C;
}
.main .openOrders .top-info .info-list .info-item .payment_required {
  background: #33B93B;
  color: #fff;
}
.main .openOrders .top-info .info-list .info-item .payment_required::before {
  background: #fff;
}
.main .openOrders .top-info .info-list .info-item .zero {
  background: #ff4f4f;
  color: #fff;
}
.main .openOrders .top-info .info-list .info-item .disabled {
  opacity: 0.5;
}
.main .openOrders .top-info .info-list .info-item .completed {
  background: #EEEEEE;
  color: #858585;
}
.main .openOrders .top-info .info-list .info-item .completed::before {
  background: #ABABAB;
}
.main .openOrders .top-info .info-list .info-item .change {
  margin-top: 10px;
}
.main .openOrders .top-info .info-list .btns {
  display: none;
}
.main .openOrders .top-info .btns .open-dispute,
.main .openOrders .top-info .btns .close-btn {
  background: transparent;
  width: 40px;
  height: 40px;
  transition: 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}
.main .openOrders .top-info .btns .open-dispute svg,
.main .openOrders .top-info .btns .close-btn svg {
  transition: 0.3s linear;
}
.main .openOrders .top-info .btns .open-dispute:hover,
.main .openOrders .top-info .btns .close-btn:hover {
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .openOrders .top-info .btns .open-dispute:hover svg,
.main .openOrders .top-info .btns .close-btn:hover svg {
  transform: scale(1.05);
}
.main .openOrders .top-info .btns .open-dispute:hover svg path,
.main .openOrders .top-info .btns .close-btn:hover svg path {
  stroke: #A1A1A1;
}
.main .openOrders .top-info .btns .open-dispute {
  margin-right: 20px;
  position: relative;
  cursor: pointer;
}
.main .openOrders .top-info .btns .open-dispute_info {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 7px;
  border-radius: 20px;
  color: #fff;
  font-size: 10px;
  line-height: 8px;
  font-weight: 500;
  white-space: nowrap;
  display: none;
}
.main .openOrders .top-info .btns .open-dispute:hover .open-dispute_info {
  display: block;
}
.main .order-box {
  margin: 30px 0 0;
}
.main .order-box .order-sidebar {
  width: 370px;
  margin-right: 30px;
}
.main .order-box .order-sidebar .sidebar-item {
  min-width: 370px;
  padding: 22px 5px 0 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 15px;
}
.main .order-box .order-sidebar .sidebar-item .item-btn {
  padding-right: 45px;
}
.main .order-box .order-sidebar .sidebar-item .item-btn .upload_btn {
  cursor: pointer;
  transform: translateY(-10px);
  width: 111px;
  height: 30px;
  border-radius: 20px;
  background: rgba(242, 85, 60, 0.062745098);
  font-size: 12px;
  font-weight: 600;
  color: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.main .order-box .order-sidebar .sidebar-item .item-btn .upload_btn::before {
  content: url(../img/svg/upload1.svg);
  margin-right: 5px;
  margin-top: 3px;
}
.main .order-box .order-sidebar .sidebar-item .item-btn .upload_btn:hover {
  background: rgba(242, 85, 60, 0.1882352941);
}
.main .order-box .order-sidebar .sidebar-item .item-info {
  max-height: 310px;
  overflow-y: scroll;
  padding: 0 20px 0 25px;
  display: none;
}
.main .order-box .order-sidebar .sidebar-item .item-info::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
  background: #f2f2f2;
}
.main .order-box .order-sidebar .sidebar-item .item-info::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 10px;
  background: #CCCCCC;
}
.main .order-box .order-sidebar .sidebar-item .select-btn {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  cursor: pointer;
  z-index: 3;
}
.main .order-box .order-sidebar .sidebar-item .select-btn::before {
  content: url(../img/svg/arrow-down.svg);
  position: absolute;
  top: 20px;
  right: 25px;
}
.main .order-box .order-sidebar .sidebar-item .item-title {
  font-size: 15px;
  line-height: 13px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.4392156863);
  padding-left: 22px;
  padding-bottom: 20px;
}
.main .order-box .order-sidebar .sidebar-item .item-title span.new {
  position: relative;
}
.main .order-box .order-sidebar .sidebar-item .item-title span.new::before {
  content: "";
  display: block;
  position: absolute;
  left: 103%;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f2553c;
}
.main .order-box .order-sidebar .sidebar-item .result-item {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F3F3F3;
  align-items: end;
}
.main .order-box .order-sidebar .sidebar-item .result-item:first-child {
  margin-top: 25px;
}
.main .order-box .order-sidebar .sidebar-item .result-item .data {
  font-weight: 600;
}
.main .order-box .order-sidebar .sidebar-item .result-item .data svg {
  margin-right: 7px;
}
.main .order-box .order-sidebar .sidebar-item .result-item .data-info {
  font-size: 13px;
  line-height: 13px;
  color: rgba(47, 47, 47, 0.5843137255);
  margin-bottom: 10px;
  display: inline-block;
}
.main .order-box .order-sidebar .sidebar-item .result-item .data .files {
  font-size: 10px;
  line-height: 10px;
  color: #2f2f2f;
  margin: 0 !important;
}
.main .order-box .order-sidebar .sidebar-item .result-item .btn {
  padding: 4.5px 10px;
  border-radius: 20px;
  background: rgba(170, 170, 170, 0.1019607843);
  color: #919191;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
}
.main .order-box .order-sidebar .sidebar-item .result-item .btn:first-child {
  margin-right: 9px;
}
.main .order-box .order-sidebar .sidebar-item .result-item .btn:hover {
  color: #2f2f2f;
}
.main .order-box .order-sidebar .sidebar-item .new_item .data svg path {
  fill: #F2553C;
}
.main .order-box .order-sidebar .sidebar-item .new_item .data-info {
  color: #2f2f2f;
}
.main .order-box .order-sidebar .sidebar-item .new_item .data .files {
  color: #F2553C;
}
.main .order-box .order-sidebar .sidebar-item .new_item .btn {
  background: rgba(242, 85, 60, 0.1019607843);
  color: #A06E64;
}
.main .order-box .order-sidebar .sidebar-item .new_item .btn:hover {
  color: #F2553C;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item {
  margin-top: 20px;
  margin-right: 12px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item:last-child {
  margin-right: 0;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item-name {
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  color: #6b5f5d;
  margin-right: 8px;
  display: inline-block;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item-bg {
  background: #F6F6F6;
  border-radius: 20px;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item-bg img {
  margin-right: 5px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item-bg .sum {
  font-size: 10px;
  font-weight: 600;
  color: #adadad;
  margin-left: 5px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item .stories {
  background: #fff3f9;
  padding-right: 0;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item .social-img {
  margin-left: 5px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item-term {
  background: #F9EDEB;
  border-radius: 20px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #9A7C77;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item .zero {
  background: #ff4f4f;
  color: #fff;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item .disabled {
  opacity: 0.5;
}
.main .order-box .order-sidebar .sidebar-item .info-list .item .service .item-info:first-child {
  margin-bottom: 10px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .auto-renewal {
  margin-top: 20px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .auto-renewal .check-box {
  margin-right: 11px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .auto-renewal .check-box label {
  font-size: 12px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .auto-renewal .faq {
  position: relative;
}
.main .order-box .order-sidebar .sidebar-item .info-list .auto-renewal .faq .faq-btn {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 11;
}
.main .order-box .order-sidebar .sidebar-item .info-list .auto-renewal .faq .faq-info {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 11px;
  line-height: 16px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .order-box .order-sidebar .sidebar-item .info-list .auto-renewal .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .order-box .order-sidebar .sidebar-item .info-list .auto-renewal .faq:hover .faq-info {
  display: block;
}
.main .order-box .order-sidebar .sidebar-item .info-list .btns {
  width: 100%;
}
.main .order-box .order-sidebar .sidebar-item .info-list .btns button {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f6f6f6;
  color: #9e9e9e;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  margin-top: 15px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .btns button:first-child {
  margin-top: 25px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .btns button svg {
  margin-right: 10px;
}
.main .order-box .order-sidebar .sidebar-item .info-list .btns button:last-child:hover {
  transform: scale(1.05);
  color: #2F2F2F;
}
.main .order-box .order-sidebar .sidebar-item .info-list .btns button:last-child:hover svg path {
  fill: #2f2f2f;
}
.main .order-box .order-sidebar .sidebar-item .buy-more-stories, .main .order-box .order-sidebar .sidebar-item .give-verdict_btn, .main .order-box .order-sidebar .sidebar-item .cancel-dispute_btn, .main .order-box .order-sidebar .sidebar-item .refund-money_btn, .main .order-box .order-sidebar .sidebar-item .pay-money_btn, .main .order-box .order-sidebar .sidebar-item .delete-ordere_btn, .main .order-box .order-sidebar .sidebar-item .restore-order_btn {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9e9e9e;
  cursor: pointer;
  margin-top: 30px;
  transition: 0.3s linear;
}
.main .order-box .order-sidebar .sidebar-item .buy-more-stories svg, .main .order-box .order-sidebar .sidebar-item .give-verdict_btn svg, .main .order-box .order-sidebar .sidebar-item .cancel-dispute_btn svg, .main .order-box .order-sidebar .sidebar-item .refund-money_btn svg, .main .order-box .order-sidebar .sidebar-item .pay-money_btn svg, .main .order-box .order-sidebar .sidebar-item .delete-ordere_btn svg, .main .order-box .order-sidebar .sidebar-item .restore-order_btn svg {
  margin-right: 10px;
}
.main .order-box .order-sidebar .sidebar-item .buy-more-stories:hover, .main .order-box .order-sidebar .sidebar-item .give-verdict_btn:hover, .main .order-box .order-sidebar .sidebar-item .cancel-dispute_btn:hover, .main .order-box .order-sidebar .sidebar-item .refund-money_btn:hover, .main .order-box .order-sidebar .sidebar-item .pay-money_btn:hover, .main .order-box .order-sidebar .sidebar-item .delete-ordere_btn:hover, .main .order-box .order-sidebar .sidebar-item .restore-order_btn:hover {
  transform: scale(1.05);
  color: #2F2F2F;
}
.main .order-box .order-sidebar .sidebar-item .buy-more-stories:hover svg path, .main .order-box .order-sidebar .sidebar-item .give-verdict_btn:hover svg path, .main .order-box .order-sidebar .sidebar-item .cancel-dispute_btn:hover svg path, .main .order-box .order-sidebar .sidebar-item .refund-money_btn:hover svg path, .main .order-box .order-sidebar .sidebar-item .pay-money_btn:hover svg path, .main .order-box .order-sidebar .sidebar-item .delete-ordere_btn:hover svg path, .main .order-box .order-sidebar .sidebar-item .restore-order_btn:hover svg path {
  stroke: #2F2F2F;
}
.main .order-box .order-sidebar .sidebar-item .pay-money_btn {
  margin-top: 15px;
}
.main .order-box .order-sidebar .sidebar-item .delete-ordere_btn {
  margin-top: 15px;
  background: rgba(255, 79, 79, 0.05);
  color: rgba(255, 79, 79, 0.3);
}
.main .order-box .order-sidebar .sidebar-item .delete-ordere_btn:hover {
  color: #f2553c;
}
.main .order-box .order-sidebar .sidebar-item .delete-ordere_btn:hover svg g {
  opacity: 1;
}
.main .order-box .order-sidebar .sidebar-item .delete-ordere_btn:hover svg path {
  stroke: #f2553c;
}
.main .order-box .order-sidebar .sidebar-item .restore-order_btn {
  background: #3BCA44;
  color: #fff;
  margin-top: 15px;
}
.main .order-box .order-sidebar .sidebar-item .restore-order_btn:hover {
  color: #fff;
}
.main .order-box .order-sidebar .sidebar-item .restore-order_btn:hover svg path {
  stroke: #fff;
}
.main .order-box .order-sidebar .sidebar-item .cancel-dispute_btn {
  margin-top: 16px;
}
.main .order-box .order-sidebar .sidebar-item .title {
  font-size: 13px;
  line-height: 13px;
  color: #2F2F2F;
  opacity: 0.3;
  font-weight: 600;
  margin-bottom: 15px;
}
.main .order-box .order-sidebar .sidebar-item .order-description {
  margin-top: 30px;
  padding-top: 30px;
  position: relative;
  overflow: hidden;
}
.main .order-box .order-sidebar .sidebar-item .order-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #F7F7F7;
}
.main .order-box .order-sidebar .sidebar-item .order-description .text {
  font-size: 13px;
  line-height: 23px;
  color: #2F2F2F;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .order-box .order-sidebar .sidebar-item .order-description .showAll {
  -webkit-line-clamp: 30;
}
.main .order-box .order-sidebar .sidebar-item .order-description .viewAll {
  font-size: 13px;
  line-height: 23px;
  cursor: pointer;
  font-weight: 600;
  color: rgba(242, 85, 60, 0.3137254902);
  display: flex;
  align-items: end;
  justify-content: end;
}
.main .order-box .order-sidebar .sidebar-item .order-description .viewAll:hover {
  color: #f2553c;
}
.main .order-box .order-sidebar .sidebar-item .files {
  margin: 30px 0;
}
.main .order-box .order-sidebar .sidebar-item .files .file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  border-radius: 12px;
  background: #fffaf9;
  font-size: 13px;
  line-height: 23px;
  font-weight: 600;
  color: rgba(82, 71, 69, 0.5019607843);
  margin-bottom: 10px;
}
.main .order-box .order-sidebar .sidebar-item .files .file:last-child {
  margin-bottom: 0;
}
.main .order-box .order-sidebar .sidebar-item .files .file:hover {
  color: #524745;
}
.main .order-box .order-sidebar .sidebar-item .files .file:hover svg path {
  fill: #524745;
}
.main .order-box .order-sidebar .sidebar-item .social-links .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  border-radius: 12px;
  background: #F8F8F8;
  font-size: 13px;
  line-height: 23px;
  font-weight: 600;
  color: rgba(61, 61, 61, 0.3137254902);
  margin-bottom: 10px;
}
.main .order-box .order-sidebar .sidebar-item .social-links .link:last-child {
  margin-bottom: 0;
}
.main .order-box .order-sidebar .sidebar-item .social-links .link:hover {
  color: #3D3D3D;
}
.main .order-box .order-sidebar .sidebar-item .social-links .link:hover svg path {
  stroke: #3d3d3d;
}
.main .order-box .order-sidebar .sidebar-item .address {
  margin: 30px 0;
}
.main .order-box .order-sidebar .sidebar-item .address-info {
  display: flex;
  align-items: start;
}
.main .order-box .order-sidebar .sidebar-item .address-info svg {
  margin-right: 6px;
}
.main .order-box .order-sidebar .sidebar-item .address-info p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.5647058824);
  margin-bottom: 2px;
}
.main .order-box .order-sidebar .sidebar-item .address-info span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(242, 85, 60, 0.5647058824);
}
.main .order-box .order-sidebar .sidebar-item .sphere .title {
  margin: 0;
}
.main .order-box .order-sidebar .sidebar-item .sphere-list {
  display: flex;
  flex-wrap: wrap;
}
.main .order-box .order-sidebar .sidebar-item .sphere-list li {
  padding: 6px 15px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 23px;
  font-weight: 600;
  background: #f8f8f8;
  color: #454545;
  margin: 15px 15px 0 0;
}
.main .order-box .order-sidebar .sidebar-item .skills {
  margin: 30px 0;
}
.main .order-box .order-sidebar .sidebar-item .skills .title {
  margin: 0;
}
.main .order-box .order-sidebar .sidebar-item .skills-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.main .order-box .order-sidebar .sidebar-item .skills-list li {
  padding: 6px 16px;
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  color: #2F2F2F;
  margin: 15px 15px 0 0;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .order-box .order-sidebar .sidebar-item .skills-list li img {
  width: 13px;
  margin-right: 8px;
}
.main .order-box .order-sidebar .sidebar-item .dop-service ul li {
  padding: 6px 16px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  color: #2F2F2F;
  margin-bottom: 15px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .order-box .order-sidebar .sidebar-item .dop-service ul li p {
  width: 80%;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .order-box .order-sidebar .sidebar-item .dop-service ul li span {
  color: #f2553c;
}
.main .order-box .order-sidebar .showInfo .select-btn:checked::before {
  transform: rotate(180deg);
}
.main .order-box .order-sidebar .showInfo .item-info {
  display: block !important;
}
.main .order-box .order-chat {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}
.main .performers-page {
  padding-bottom: 60px;
}
.main .performers-page .performer-head .title-text {
  margin-right: 20px;
}
.main .performers-page .performer-head .performer-found {
  padding: 10px;
  background: #f6f6f6;
  border-radius: 12px;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  color: #9e9e9e;
}
.main .performers-page .performer-head .performer-found img {
  margin-right: 7px;
}
.main .performers-page .performer-head .performer-favorites {
  cursor: pointer;
}
.main .performers-page .performer-head .performer-favorites input {
  display: none;
}
.main .performers-page .performer-head .performer-favorites svg {
  margin-right: 8px;
  opacity: 0.3;
}
.main .performers-page .performer-head .performer-favorites span {
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
  color: #f2553c;
  opacity: 0.3;
}
.main .performers-page .performer-head .performer-favorites:hover svg, .main .performers-page .performer-head .performer-favorites:hover span {
  opacity: 1;
}
.main .performers-page .performer-head .performer-favorites input:checked ~ svg {
  opacity: 1;
}
.main .performers-page .performer-head .performer-favorites input:checked ~ svg path {
  fill: #f2553c;
}
.main .performers-page .performer-head .performer-favorites input:checked ~ span {
  opacity: 1;
}
.main .performers-page .performer-head .subscribe-btn {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(242, 85, 60, 0.3137254902);
  cursor: pointer;
}
.main .performers-page .performer-head .subscribe-btn svg {
  margin-right: 6px;
}
.main .performers-page .performer-head .subscribe-btn:hover {
  color: #f2553c;
}
.main .performers-page .performer-head .subscribe-btn:hover svg g {
  opacity: 1;
}
.main .performers-page .performers-body .performers-box {
  margin-top: 30px;
}
.main .performers-page .performers-body .performers-box .filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  height: 50px;
  position: relative;
  z-index: 5;
}
.main .performers-page .performers-body .performers-box .filter .sort {
  display: flex;
  align-items: center;
  margin-right: 25px;
}
.main .performers-page .performers-body .performers-box .filter .sort-name {
  font-size: 11px;
  font-weight: 600;
  color: #2f2f2f;
  opacity: 0.5;
  display: block;
  margin-right: 10px;
}
.main .performers-page .performers-body .performers-box .filter .sort .select {
  width: auto;
}
.main .performers-page .performers-body .performers-box .filter .sort .select-head {
  height: 26px;
  padding: 0 10px;
  border-radius: 7px;
  display: flex;
  align-items: center;
}
.main .performers-page .performers-body .performers-box .filter .sort .select-head span {
  font-size: 11px;
  font-weight: 600;
  margin-right: 5px;
}
.main .performers-page .performers-body .performers-box .filter .sort .select .options {
  top: 120%;
  background: #fff;
  border-radius: 7px;
}
.main .performers-page .performers-body .performers-box .filter .sort .select .options li {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #272727;
  opacity: 0.4;
  cursor: pointer;
}
.main .performers-page .performers-body .performers-box .filter .sort .select .options li:hover {
  color: #f2553c;
  opacity: 1;
}
.main .performers-page .performers-body .performers-box .filter .view {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.main .performers-page .performers-body .performers-box .filter .view-name {
  font-size: 11px;
  font-weight: 600;
  color: #2f2f2f;
  opacity: 0.5;
  display: block;
  margin-right: 10px;
}
.main .performers-page .performers-body .performers-box .filter .view label {
  cursor: pointer;
}
.main .performers-page .performers-body .performers-box .filter .view label input {
  display: none;
}
.main .performers-page .performers-body .performers-box .filter .view label span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 7px;
  background: rgba(242, 85, 60, 0.0509803922);
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #836e6c;
}
.main .performers-page .performers-body .performers-box .filter .view label input:checked ~ span {
  background: #f2553c;
  color: #fff;
}
.main .performers-page .performers-body .performers-box .filter .rating-box {
  width: 96px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 85, 60, 0.0509803922);
}
.main .performers-page .performers-body .performers-box .filter .rating-box .faq {
  position: relative;
  z-index: 15;
}
.main .performers-page .performers-body .performers-box .filter .rating-box .faq .faq-btn {
  cursor: pointer;
  width: 15px;
  height: 15px;
}
.main .performers-page .performers-body .performers-box .filter .rating-box .faq .faq-info {
  display: none;
  position: absolute;
  top: 130%;
  right: -5px;
  background: #fff;
  color: #272727;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 10px;
  line-height: 12px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .performers-page .performers-body .performers-box .filter .rating-box .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .performers-page .performers-body .performers-box .filter .rating-box .faq:hover .faq-btn svg g {
  opacity: 1;
}
.main .performers-page .performers-body .performers-box .filter .rating-box .faq:hover .faq-btn svg path {
  opacity: 1;
}
.main .performers-page .performers-body .performers-box .filter .rating-box .faq:hover .faq-info {
  display: block;
}
.main .performers-page .performers-body .performers-box .filter .rating-box .rating {
  flex-direction: row-reverse;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .performers-page .performers-body .performers-box .filter .rating-box .rating > input {
  display: none;
}
.main .performers-page .performers-body .performers-box .filter .rating-box .rating > label {
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-image: url(../img/svg/star-b.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
  position: relative;
  z-index: 5;
}
.main .performers-page .performers-body .performers-box .filter .rating-box .rating > input:checked ~ label,
.main .performers-page .performers-body .performers-box .filter .rating-box .rating > input:checked ~ label ~ label {
  background-image: url(../img/svg/star-w.svg);
}
.main .performers-page .performers-body .performers-box .filter .rating-box .rating > input:not(:checked) ~ label:hover,
.main .performers-page .performers-body .performers-box .filter .rating-box .rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url(../img/svg/star-r.svg);
}
.main .performers-page .performers-body .performers-box .filter .rating-box .rating > input:checked ~ label:hover,
.main .performers-page .performers-body .performers-box .filter .rating-box .rating > input:checked ~ label:hover ~ label {
  background-image: url(../img/svg/star-w.svg);
}
.main .performers-page .performers-body .performers-box .filter .rating-box .rating > input:checked ~ .rating-bg {
  background: #f2553c;
}
.main .performers-page .performers-body .performers-box .filter .rating-box img {
  margin-left: 5px;
  position: relative;
  z-index: 5;
}
.main .performers-page .performers-body .performers-box .filter .column-control span {
  font-size: 11px;
  font-weight: 600;
  color: #2f2f2f;
  opacity: 0.5;
  display: block;
  margin-right: 10px;
}
.main .performers-page .performers-body .performers-box .filter .column-control button {
  border-radius: 7px;
  background: transparent;
}
.main .performers-page .performers-body .performers-box .filter .column-control button input {
  display: none;
}
.main .performers-page .performers-body .performers-box .filter .column-control button label {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.main .performers-page .performers-body .performers-box .filter .column-control button label:hover svg rect {
  fill: #A3A3A3;
}
.main .performers-page .performers-body .performers-box .filter .column-control button input:checked ~ label {
  background: #f2553c;
}
.main .performers-page .performers-body .performers-box .filter .column-control button input:checked ~ label svg rect {
  fill: #fff;
}
.main .performers-page .performers-body .performers-box .filter .column-control .column-one {
  margin-right: 8px;
}
.main .performers-page .performers-body .performers-box .performers-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
  margin-top: 30px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer {
  position: relative;
  cursor: default;
  display: flex;
  justify-content: space-between;
}
.main .performers-page .performers-body .performers-box .performers-list .performer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  transition: 0.3s linear;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .name {
  font-size: 15px;
  line-height: 12px;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 10px 0 15px;
  display: inline-block;
  transition: 0.3s linear;
  white-space: nowrap;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .stars img {
  margin-right: 3px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .stars img:nth-child(3) {
  margin-right: 5px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .stars img:last-child {
  margin-right: 0;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .faq {
  position: relative;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .faq .faq-btn {
  cursor: pointer;
  width: 15px;
  height: 15px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .faq .faq-info {
  display: none;
  position: absolute;
  top: 130%;
  right: -5px;
  background: #fff;
  color: #272727;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 10px;
  line-height: 12px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .faq:hover .faq-btn svg g {
  opacity: 1;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .faq:hover .faq-btn svg path {
  opacity: 1;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .faq:hover .faq-info {
  display: block;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .likes {
  padding: 3.5px 5px 3px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.0509803922);
  font-size: 8px;
  line-height: 8px;
  font-weight: 500;
  color: #898989;
  margin: 0 5px 0 15px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .likes img {
  margin-right: 4px;
  margin-top: -2px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .status {
  padding: 3.5px 5px 3px;
  border-radius: 20px;
  font-size: 8px;
  line-height: 8px;
  font-weight: 600;
  white-space: nowrap;
  background: #FF4F4F;
  color:#fff;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .top .status.free {
  background: rgba(59, 202, 68, 0.1019607843);
  color: #3bca44;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .info-list {
  margin: 15px 0;
  flex-wrap: wrap;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .info-list li {
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 11px;
  font-weight: 500;
  color: #333;
  margin-right: 20px;
  margin-top: 5px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .info-list li:last-child {
  margin-right: 0;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .info-list li span {
  display: inline-block;
  opacity: 0.6;
  margin-right: 10px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .info-list li strong {
  font-weight: 600;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .service-item {
  flex-wrap: wrap;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .service-item .service {
  padding: 6px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  font-weight: 600;
  background: rgba(193, 80, 139, 0.1019607843);
  margin-right: 10px;
  margin-bottom: 10px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .service-item .service:last-child {
  margin-right: 0;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .service-item .service strong {
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
  display: inline-block;
  margin: 0 5px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .service-item .service-info {
  padding: 2.5px 7px;
  border-radius: 6px;
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  background: #EDDFE6;
  color: #916C7E;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .service-item .reels {
  background: rgba(200, 132, 112, 0.1019607843);
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .service-item .reels .service-info {
  background: #f4e5e1;
  color: #a88880;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .service-item .video {
  background: rgba(255, 79, 79, 0.1019607843);
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .service-item .video .service-info {
  background: #F7D7D7;
  color: #ad7a7a;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .info-text {
  width: 75%;
  font-size: 12px;
  line-height: 21px;
  color: #2f2f2f;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .skills-list {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0 29px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .skills-list .skill {
  display: flex;
  align-items: center;
  padding: 9.5px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  font-size: 10px;
  font-weight: 700;
  color: #2F2F2F;
  margin: 10px 10px 0 0;
  transition: 0.3s linear;
  cursor: pointer;
  transition: 0.3s linear;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .skills-list .skill img {
  margin-right: 8px;
  width: 10px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns {
  width: 100%;
  display: flex;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .view-more,
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .offer-order {
  width: 178px;
  height: 45px;
  border-radius: 12px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #9e9e9e;
  transition: 0.3s linear;
  margin-right: 15px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .view-more:hover,
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .offer-order:hover {
  transform: scale(1.1);
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .view-more svg,
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .offer-order svg {
  margin-right: 10px;
  display: none;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .view-more span,
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .offer-order span {
  display: inline-block;
  margin-right: 5px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .add-favorites {
  min-width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #fff2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .add-favorites input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .add-favorites svg {
  transition: 0.3s linear;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .add-favorites:hover svg {
  transform: scale(1.2);
}
.main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .add-favorites input:checked ~ svg path {
  stroke: #FF4F4F;
  fill: #FF4F4F;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-video {
  min-width: 205px;
  height: 100%;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  position: relative;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3333333333);
  backdrop-filter: blur(3px);
  z-index: 5;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-video .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
  z-index: 2;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-video .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-video .play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
  cursor: pointer;
  margin-bottom: 10px;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-video .play-btn:hover {
  transform: scale(1.2);
}
.main .performers-page .performers-body .performers-box .performers-list .performer-video .play-btn:hover svg path {
  opacity: 1;
}
.main .performers-page .performers-body .performers-box .performers-list .performer-video .info-text {
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5333333333);
  position: relative;
  z-index: 5;
}
.main .performers-page .performers-body .performers-box .performers-list .performer .showVideo {
  background: rgba(0, 0, 0, 0.0666666667);
  backdrop-filter: none;
}
.main .performers-page .performers-body .performers-box .performers-list .performer .showVideo .video {
  z-index: 10;
}
.main .performers-page .performers-body .performers-box .performers-list .performer .showVideo .item-info, .main .performers-page .performers-body .performers-box .performers-list .performer .showVideo .poster, .main .performers-page .performers-body .performers-box .performers-list .performer .showVideo .play-btn, .main .performers-page .performers-body .performers-box .performers-list .performer .showVideo .info-text {
  display: none;
}
.main .performers-page .performers-body .performers-box .performers-list .performer:hover .avatar img {
  transform: scale(1.1);
}
.main .performers-page .performers-body .performers-box .performers-list .performer:hover .name {
  color: #f2553c;
}
.main .performers-page .performers-body .performers-box .performers-list .performer:hover::before {
  transform: scale(1.03);
}
.main .performers-page .performers-body .performers-box .performers-list .performer:hover .performer-video {
  border-radius: 20px;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .info-list {
  margin: 15px 0;
  flex-wrap: wrap;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .info-list li {
  flex-direction: column;
  align-items: start;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .info-list li span {
  margin: 0 0 5px 0;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .skills-list {
  margin: 8px 0 20px;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns {
  justify-content: space-between;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .btns_mob {
  width: 100%;
  justify-content: space-between;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .view-more,
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .offer-order {
  width: auto;
  padding: 0 15px;
  margin: 0;
  font-size: 12px;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .view-more {
  text-transform: capitalize;
  margin-right: 20px;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .view-more span {
  display: none;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .add-favorites {
  min-width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #fff2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .add-favorites input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .add-favorites svg {
  transition: 0.3s linear;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .add-favorites:hover svg {
  transform: scale(1.2);
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-info .btns .add-favorites input:checked ~ svg path {
  stroke: #FF4F4F;
  fill: #FF4F4F;
}
.main .performers-page .performers-body .performers-box .performers-list.col-2 .performer-video {
  display: none;
}
.main .performers-page .performers-body .performers-box .performers-control {
  margin-top: 40px;
}
.main .performers-page .performers-body .performers-box .performers-control .prev-page, .main .performers-page .performers-body .performers-box .performers-control .next-page {
  width: 208px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 85, 60, 0.0509803922);
  color: #b39994;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s linear;
}
.main .performers-page .performers-body .performers-box .performers-control .prev-page svg, .main .performers-page .performers-body .performers-box .performers-control .next-page svg {
  transition: 0.3s linear;
}
.main .performers-page .performers-body .performers-box .performers-control .prev-page:hover, .main .performers-page .performers-body .performers-box .performers-control .next-page:hover {
  color: #272727;
}
.main .performers-page .performers-body .performers-box .performers-control .prev-page:hover svg path, .main .performers-page .performers-body .performers-box .performers-control .next-page:hover svg path {
  stroke: #272727;
}
.main .performers-page .performers-body .performers-box .performers-control .prev-page svg {
  margin-right: 8px;
}
.main .performers-page .performers-body .performers-box .performers-control .next-page svg {
  margin-left: 8px;
}
.main .performers-page .performers-body .performers-box .performers-control .page-list {
  margin: 0 15px;
}
.main .performers-page .performers-body .performers-box .performers-control .page-list li {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s linear;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #2f2f2f;
  cursor: pointer;
}
.main .performers-page .performers-body .performers-box .performers-control .page-list li:last-child {
  margin-right: 0;
}
.main .performers-page .performers-body .performers-box .performers-control .page-list li:hover {
  background: #F8F8F8;
}
.main .performers-page .performers-body .performers-box .performers-control .page-list li.active {
  background: rgba(242, 85, 60, 0.0509803922);
  color: #f2553c;
}
.main .performers-control {
  margin-top: 40px;
}
.main .performers-control .prev-page, .main .performers-control .next-page {
  width: 208px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 85, 60, 0.0509803922);
  color: #b39994;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s linear;
}
.main .performers-control .prev-page svg, .main .performers-control .next-page svg {
  transition: 0.3s linear;
}
.main .performers-control .prev-page:hover, .main .performers-control .next-page:hover {
  color: #272727;
}
.main .performers-control .prev-page:hover svg path, .main .performers-control .next-page:hover svg path {
  stroke: #272727;
}
.main .performers-control .prev-page svg {
  margin-right: 8px;
}
.main .performers-control .next-page svg {
  margin-left: 8px;
}
.main .performers-control .page-list {
  margin: 0 15px;
}
.main .performers-control .page-list li {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s linear;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #2f2f2f;
  cursor: pointer;
}
.main .performers-control .page-list li:last-child {
  margin-right: 0;
}
.main .performers-control .page-list li:hover {
  background: #F8F8F8;
}
.main .performers-control .page-list li.active {
  background: rgba(242, 85, 60, 0.0509803922);
  color: #f2553c;
}
.main .performer-in .change {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  cursor: default;
}
.main .performer-in .change input {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  background: transparent;
  color: #333;
  opacity: 1;
  pointer-events: none;
  position: relative;
  z-index: 2;
  max-width: 150px;
}
.main .performer-in .change #datepicker-age {
  width: 0px;
  appearance: none;
  opacity: 0;
}
.main .performer-in .change #ageDisplay {
  width: auto;
  position: relative !important;
  z-index: 20 !important;
  opacity: 1 !important;
  margin-right: 4px;
}
.main .performer-in .change .age {
  position: relative;
  z-index: 3;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: #333;
  margin-right: 4px;
}
.main .performer-in .change .change-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .performer-in .change .change-btn::after {
  content: url(../img/svg/pen2.svg);
  position: relative;
  z-index: 2;
  opacity: 0.3;
}
.main .performer-in .change .change-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #f6f6f6;
  display: none;
}
.main .performer-in .change:hover .change-btn::after {
  opacity: 1;
}
.main .performer-in .change:hover .change-btn::before {
  display: block;
}
.main .performer-in .change .counter {
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 5px 12px;
  border-radius: 8px;
  z-index: 10;
  background: #fff;
  display: none;
}
.main .performer-in .change .counter .minus {
  margin-right: 5px;
}
.main .performer-in .showCounter .counter {
  display: flex;
}
.main .performer-in .select {
  width: auto;
}
.main .performer-in .select-head {
  height: auto;
  background: transparent;
}
.main .performer-in .select .options .option {
  margin-top: 0 !important;
  font-size: 12px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
  padding: 5px 10px !important;
}
.main .performer-in .changeClick input {
  pointer-events: all;
}
.main .performer-in .changeClick .change-btn {
  cursor: pointer;
}
.main .performer-in .changeClick .change-btn::after {
  content: url(../img/svg/check1.svg);
  opacity: 1;
  transform: translateY(2px);
}
.main .performer-in .changeClick .change-btn::before {
  display: block;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.main .performer-in .left-info {
  width: 65%;
}
.main .performer-in .left-info .performer {
  background: #fff;
  padding: 40px 0 40px 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}
.main .performer-in .left-info .performer .add-favorites {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #fff2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  right: 30px;
}
.main .performer-in .left-info .performer .add-favorites input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.main .performer-in .left-info .performer .add-favorites svg {
  transition: 0.3s linear;
}
.main .performer-in .left-info .performer .add-favorites:hover svg {
  transform: scale(1.2);
}
.main .performer-in .left-info .performer .add-favorites input:checked ~ svg path {
  stroke: #FF4F4F;
  fill: #FF4F4F;
}
.main .performer-in .left-info .performer .avatar {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 40px;
}
.main .performer-in .left-info .performer .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .performer-in .left-info .performer .performer-info .title-text {
  font-size: 30px;
}
.main .performer-in .left-info .performer .performer-info .stars {
  display: flex;
  align-items: center;
  margin: 0 11px 0 20px;
}
.main .performer-in .left-info .performer .performer-info .stars img {
  width: 20px;
  margin-right: 6px;
}
.main .performer-in .left-info .performer .performer-info .stars img:nth-child(3) {
  margin-right: 7px;
}
.main .performer-in .left-info .performer .performer-info .stars img:last-child {
  width: 26px;
  margin-right: 0;
}
.main .performer-in .left-info .performer .performer-info .faq {
  position: relative;
}
.main .performer-in .left-info .performer .performer-info .faq .faq-btn {
  cursor: pointer;
  width: 26px;
  height: 26px;
}
.main .performer-in .left-info .performer .performer-info .faq .faq-info {
  display: none;
  position: absolute;
  top: 130%;
  right: -5px;
  background: #fff;
  color: #272727;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 10px;
  line-height: 12px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .performer-in .left-info .performer .performer-info .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .performer-in .left-info .performer .performer-info .faq:hover .faq-btn svg g {
  opacity: 1;
}
.main .performer-in .left-info .performer .performer-info .faq:hover .faq-btn svg path {
  opacity: 1;
}
.main .performer-in .left-info .performer .performer-info .faq:hover .faq-info {
  display: block;
}
.main .performer-in .left-info .performer .performer-info .likes {
  height: 26px;
  padding: 0 8px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.0509803922);
  font-size: 14px;
  line-height: 13px;
  font-weight: 500;
  color: #898989;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.main .performer-in .left-info .performer .performer-info .likes img {
  width: 12px;
  margin-right: 5px;
  margin-top: -2px;
}
.main .performer-in .left-info .performer .performer-info .promote-btn {
  padding: 7px 10px;
  border-radius: 20px;
  background: #f2553c;
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
}
.main .performer-in .left-info .performer .performer-info .promote-btn:hover {
  background: #d84933;
}
.main .performer-in .left-info .performer .info-list li {
  display: flex;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: #333;
  margin-top: 15px;
}
.main .performer-in .left-info .performer .info-list li span {
  display: inline-block;
  width: 100px;
  opacity: 0.4;
}
.main .performer-in .left-info .performer .btns {
  margin-top: 23px;
}
.main .performer-in .left-info .performer .btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s linear;
}
.main .performer-in .left-info .performer .btns a:hover {
  transform: scale(1.1);
}
.main .performer-in .left-info .performer .btns .offer-order {
  background: #f2553c;
  color: #fff;
  margin-right: 20px;
}
.main .performer-in .left-info .performer .btns .send-message {
  background: #f6f6f6;
  color: #9e9e9e;
}
.main .performer-in .left-info .performer .btns .send-message svg {
  margin-right: 5px;
}
.main .performer-in .left-info .performer .btns .free-btn {
  background: #f6f6f6;
  color: #9e9e9e;
  height: 45px;
  padding: 0 25px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main .performer-in .left-info .performer .btns .free-btn .select-data {
	display:none;
}
.main .performer-in .left-info .performer .btns .free-btn:hover {
  background: #E9E9E9;
  color: #272727;
}
.main .performer-in .left-info .performer .btns .busy-btn {
  background: #f2553c;
  color: #fff;
  height: 45px;
  padding: 0 25px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.main .performer-in .left-info .performer .btns .busy-btn .select-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 98px;
  height: 21px;
  border-radius: 7px;
  background: #fff;
  color: #272727;
  font-size: 10px;
  line-height: 10px;
  padding: 0 7px;
  margin-left: 10px;
  cursor: pointer;
}
.main .performer-in .left-info .performer .btns .busy-btn .select-data input {
  width: 100%;
  height: 100%;
  font-size: 10px;
  font-weight: 600;
  color: #2f2f2f;
  cursor: pointer;
  pointer-events: none;
}
.main .performer-in .left-info .performer .btns .busy-btn .select-data input::placeholder {
  color: #2f2f2f;
}
.main .performer-in .left-info .performer-video {
  display: none;
}
.main .performer-in .left-info .service {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}
.main .performer-in .left-info .service-title {
  font-size: 25px;
  line-height: 100%;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 25px;
}
.main .performer-in .left-info .service-list {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.main .performer-in .left-info .service .list-top {
  padding: 6px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  font-weight: 600;
  background: rgba(193, 80, 139, 0.1019607843);
  position: relative;
}
.main .performer-in .left-info .service .list-top:last-child {
  margin-right: 0;
}
.main .performer-in .left-info .service .list-top input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.main .performer-in .left-info .service .list-top .check {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 1px solid #F5EBEA;
  margin-right: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.main .performer-in .left-info .service .list-top .check::before {
  content: url(../img/svg/check6.svg);
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  display: none;
}
.main .performer-in .left-info .service .list-top input:checked ~ .check::before {
  display: block;
}
.main .performer-in .left-info .service .list-top strong {
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
  display: inline-block;
  margin: 0 5px;
}
.main .performer-in .left-info .service .list-top .top-info {
  padding: 2.5px 7px;
  border-radius: 6px;
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  background: #EDDFE6;
  color: #916C7E;
}
.main .performer-in .left-info .service .reels {
  background: rgba(200, 132, 112, 0.1019607843);
}
.main .performer-in .left-info .service .reels .service-info {
  background: #f4e5e1;
  color: #a88880;
}
.main .performer-in .left-info .service .video {
  background: rgba(255, 79, 79, 0.1019607843);
}
.main .performer-in .left-info .service .video .service-info {
  background: #F7D7D7;
  color: #ad7a7a;
}
.main .performer-in .left-info .service .list {
  width: 100%;
  margin-bottom: 30px;
}
.main .performer-in .left-info .service .list li {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
  position: relative;
}
.main .performer-in .left-info .service .list li::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.0666666667);
}
.main .performer-in .left-info .service .list li span {
  background: #fff;
  position: relative;
  z-index: 2;
}
.main .performer-in .left-info .service .list li span:first-child {
  padding-right: 20px;
}
.main .performer-in .left-info .service .list li span:last-child {
  padding-left: 20px;
}
.main .performer-in .left-info .service .list_check li {
  display: flex;
  align-items: center;
}
.main .performer-in .left-info .service .list_check li::before {
  bottom: 10px;
}
.main .performer-in .left-info .service .list_check li input[type=checkbox] {
  appearance: none;
  min-width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 1px solid #F5EBEA;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.main .performer-in .left-info .service .list_check li input[type=checkbox]::before {
  content: url(../img/svg/check6.svg);
  position: absolute;
  top: -1px;
  left: -1px;
  display: none;
}
.main .performer-in .left-info .service .list_check li input[type=checkbox]:checked::before {
  display: block;
}
.main .performer-in .left-info .service .list_check li .item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .performer-in .left-info .service .list_check li .item .item-name, .main .performer-in .left-info .service .list_check li .item span, .main .performer-in .left-info .service .list_check li .item .change-text {
  opacity: 0.4;
}
.main .performer-in .left-info .service .list_check li .item .item-name {
  position: relative;
  z-index: 3;
  background: #fff;
  padding: 0 5px;
  cursor: pointer;
}
.main .performer-in .left-info .service .list_check li .item-info {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  background: #fff;
  padding-left: 5px;
}
.main .performer-in .left-info .service .list_check li .item-info span {
  background: transparent;
  padding-right: 10px;
}
.main .performer-in .left-info .service .list_check li .item-info .info {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.main .performer-in .left-info .service .list_check li .item-info .info:nth-child(2) {
  margin-right: 5px;
}
.main .performer-in .left-info .service .list_check li .item-info .info:last-child {
  margin-right: 0;
}
.main .performer-in .left-info .service .list_check li .item-info .info:last-child span {
  padding: 0;
}
.main .performer-in .left-info .service .list_check li .item-info .info .change-btn::after {
  transform: none;
}
.main .performer-in .left-info .service .list_check li input[type=checkbox]:checked ~ .item .item-name, .main .performer-in .left-info .service .list_check li input[type=checkbox]:checked ~ .item .change-text {
  opacity: 1;
}
.main .performer-in .left-info .service .skills {
  display: flex;
  flex-wrap: wrap;
}
.main .performer-in .left-info .service .skills .skill {
  display: flex;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  font-size: 12px;
  font-weight: 600;
  color: #2F2F2F;
  margin: 0 20px 10px 0;
  transition: 0.3s linear;
  cursor: pointer;
  transition: 0.3s linear;
}
.main .performer-in .left-info .service .skills .skill img {
  width: 17px;
  margin-right: 8px;
}
.main .performer-in .left-info .service .skills .skill svg {
  width: 17px;
  margin-right: 8px;
}
.main .performer-in .left-info .service .skills .skill svg path {
  fill:#F2553C;
}
.main .performer-in .left-info .service .skills .skill:hover {
  color: #2F2F2F;
  transform: scale(1.05);
}
.main .performer-in .left-info .service .skills .skill:hover svg path {
  fill: #f2553c;
  opacity: 1;
}
.main .performer-in .left-info .service .list_skill li {
  padding: 10px 20px;
  border-radius: 12px;
  background: #f8f8f8;
}
.main .performer-in .left-info .service .list_skill li::before {
  display: none;
}
.main .performer-in .left-info .service .list_skill li .faq {
  position: relative;
  margin-left: 5px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .performer-in .left-info .service .list_skill li .faq .faq-btn {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .performer-in .left-info .service .list_skill li .faq .faq-btn img {
  width: 7px;
}
.main .performer-in .left-info .service .list_skill li .faq .faq-info {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 11px;
  line-height: 16px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .performer-in .left-info .service .list_skill li .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .performer-in .left-info .service .list_skill li .faq:hover .faq-info {
  display: block;
}
.main .performer-in .left-info .service .list_skill li .item .item-name, .main .performer-in .left-info .service .list_skill li .item .item-info {
  background: transparent;
}
.main .performer-in .left-info .service .getNewServices {
  margin: 0 auto;
  font-size: 12px;
  font-weight: 600;
  color: #9e9e9e;
  cursor: pointer;
  transition: 0.3s all;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .performer-in .left-info .service .getNewServices:hover {
  color: #272727;
}
.main .performer-in .performer-video {
  width: 32%;
  height: 660px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}
.main .performer-in .performer-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3333333333);
  backdrop-filter: blur(3px);
  z-index: 5;
}
.main .performer-in .performer-video .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
  z-index: 2;
}
.main .performer-in .performer-video .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main .performer-in .performer-video .play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
  cursor: pointer;
  margin-bottom: 10px;
}
.main .performer-in .performer-video .play-btn:hover {
  transform: scale(1.2);
}
.main .performer-in .performer-video .play-btn:hover svg path {
  opacity: 1;
}
.main .performer-in .performer-video .info-text {
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5333333333);
  position: relative;
  z-index: 5;
}
.main .performer-in .performer-video .remove-btn {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.main .performer-in .performer-video .replace-btn {
  width: 72px;
  height: 22px;
  border-radius: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #919191;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.main .performer-in .showVideo {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: none;
}
.main .performer-in .showVideo .video {
  z-index: 10;
}
.main .performer-in .showVideo .item-info, .main .performer-in .showVideo .poster/*, .main .performer-in .showVideo .remove-btn, .main .performer-in .showVideo .replace-btn*/ {
  display: none;
}
.main .performer-in .performer-tabs .tab-btns {
  margin: 60px 0 30px;
  display: flex;
  justify-content: center;
}
.main .performer-in .performer-tabs .tab-btns .tab-btn {
  cursor: pointer;
  display: block;
  width: 25%;
}
.main .performer-in .performer-tabs .tab-btns .tab-btn input {
  display: none;
}
.main .performer-in .performer-tabs .tab-btns .tab-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 700;
  color: #272727;
  border-bottom: 1px solid #272727;
  opacity: 0.2;
  padding-bottom: 30px;
}
.main .performer-in .performer-tabs .tab-btns .tab-btn input:checked ~ span {
  opacity: 1;
  border-bottom: 3px solid #f2553c;
}
.main .performer-in .performer-tabs .tab-box .box-head {
  margin-bottom: 30px;
}
.main .performer-in .performer-tabs .tab-box .box-title {
  font-size: 20px;
  font-weight: 700;
  color: #2f2f2f;
  display: flex;
  align-items: center;
}
.main .performer-in .performer-tabs .tab-box .box-title img {
  margin-right: 10px;
}
.main .performer-in .performer-tabs .tab-box .about {
  margin-bottom: 66px;
}
.main .performer-in .performer-tabs .tab-box .about-box {
  max-width: 570px;
  margin: 0 auto;
}
.main .performer-in .performer-tabs .tab-box .about-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.main .performer-in .performer-tabs .tab-box .about-photos .photo {
  width: 100%;
  height: 160px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(18px);
  position: relative;
}
.main .performer-in .performer-tabs .tab-box .about-photos .photo img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .performer-in .performer-tabs .tab-box .about-photos .photo .remove-btn {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.main .performer-in .performer-tabs .tab-box .about-photos .photo .uploadBtn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(242, 85, 60, 0.062745098);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main .performer-in .performer-tabs .tab-box .about-photos .photo .uploadBtn input {
  display: none;
}
.main .performer-in .performer-tabs .tab-box .about-photos .photo .uploadBtn span {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #f2553c;
  padding: 8px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  background: rgba(242, 85, 60, 0.062745098);
}
.main .performer-in .performer-tabs .tab-box .about-photos .photo .uploadBtn span svg {
  margin-right: 5px;
}
.main .performer-in .performer-tabs .tab-box .about-photos .photo_upload {
  background: transparent;
  order: 4;
}
.main .performer-in .performer-tabs .tab-box .about-photos .zoomPhoto {
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .performer-in .performer-tabs .tab-box .about-photos .zoomPhoto img {
  width: 95%;
  object-fit: contain;
}
.main .performer-in .performer-tabs .tab-box .about .description-text {
  width: 100%;
  resize: none;
  field-sizing: content;
  font-size: 13px;
  line-height: 23px;
  color: #2f2f2f;
  pointer-events: none;
}
.main .performer-in .performer-tabs .tab-box .about .about-text {
  font-size: 13px;
  line-height: 23px;
  color: #2f2f2f;
  margin-top: 30px;
}
.main .performer-in .performer-tabs .tab-box .about .btns {
  display: flex;
  justify-content: end;
}
.main .performer-in .performer-tabs .tab-box .about .btns button {
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #9e9e9e;
}
.main .performer-in .performer-tabs .tab-box .about .btns button svg {
  margin-right: 6px;
  transition: 0.3s all;
}
.main .performer-in .performer-tabs .tab-box .about .btns button:hover {
  color: #2f2f2f;
}
.main .performer-in .performer-tabs .tab-box .about .btns button:hover svg path {
  fill: #2f2f2f;
}
.main .performer-in .performer-tabs .tab-box .about .btns .change-description {
  position: relative;
}
.main .performer-in .performer-tabs .tab-box .about .btns .change-description label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.main .performer-in .performer-tabs .tab-box .about .btns .clear-description {
  display: none;
  margin-right: 10px;
}
.main .performer-in .performer-tabs .tab-box .about .btns .save-description {
  display: none;
  background: #f2553c;
  color: #fff;
}
.main .performer-in .performer-tabs .tab-box .about .btns .save-description:hover {
  color: #fff;
}
.main .performer-in .performer-tabs .tab-box .about .remove-profile {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #2f2f2f;
  opacity: 0.2;
}
.main .performer-in .performer-tabs .tab-box .about .remove-profile svg {
  margin-right: 5px;
}
.main .performer-in .performer-tabs .tab-box .about .remove-profile:hover {
  opacity: 1;
}
.main .performer-in .performer-tabs .tab-box .about .description-box {
  padding: 20px 0;
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 70px;
}
.main .performer-in .performer-tabs .tab-box .about .changeBox {
  padding: 20px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}
.main .performer-in .performer-tabs .tab-box .about .changeBox .description-text {
  pointer-events: all;
}
.main .performer-in .performer-tabs .tab-box .about .changeBox .btns .change-description {
  display: none;
}
.main .performer-in .performer-tabs .tab-box .about .changeBox .btns .clear-description, .main .performer-in .performer-tabs .tab-box .about .changeBox .btns .save-description {
  display: block;
}
.main .performer-in .performer-tabs .tab-box .tab_3 {
  margin-bottom: 70px;
}
.main .performer-in .performer-tabs .tab-box .reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.main .performer-in .performer-tabs .tab-box .reviews .review {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main .performer-in .performer-tabs .tab-box .reviews .review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .performer-in .performer-tabs .tab-box .reviews .review-top .user {
  padding: 5px 11px 5px 5px;
  border-radius: 30px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #4d4d4d;
  margin-right: 10px;
}
.main .performer-in .performer-tabs .tab-box .reviews .review-top .user .avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 7px;
}
.main .performer-in .performer-tabs .tab-box .reviews .review-top .user:hover {
  color: #f2553c;
}
.main .performer-in .performer-tabs .tab-box .reviews .review-top .price {
  padding: 8.5px 11px;
  border-radius: 30px;
  background: #f2f2f2;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
}
.main .performer-in .performer-tabs .tab-box .reviews .review-top .stars img {
  width: 16px;
}
.main .performer-in .performer-tabs .tab-box .reviews .review-title {
  margin: 10px 0 20px;
  padding: 8.5px 10px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 13px;
  font-weight: 600;
  color: rgba(242, 85, 60, 0.6);
  background: rgba(242, 85, 60, 0.0509803922);
}
.main .performer-in .performer-tabs .tab-box .reviews .review-text {
  font-size: 14px;
  line-height: 27px;
  color: #2f2f2f;
  margin-bottom: 15px;
}
.main .performer-in .performer-tabs .tab-box .reviews .review-data {
  font-size: 12px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.1254901961);
}
.main .performer-in .performer-tabs .tab-box .information {
  width: 570px;
  margin: 0 auto 66px;
}
.main .performer-in .performer-tabs .tab-box .information li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0666666667);
  font-size: 14px;
  line-height: 23px;
  color: #2f2f2f;
}
.main .performer-in .performer-tabs .tab-box .information li:last-child {
  border: none;
}
.main .performer-in .performer-tabs .tab-box .information li strong {
  font-weight: 600;
}
.main .performer-in .performer-tabs .tab-box .information li span {
  width: 184px;
}
.main .performer-in .performer-tabs .tab-box .information li span span {
  width: auto;
}
.main .performer-in .performer-tabs .tab-box .information .social {
  padding-left: 30px;
}
.main .performer-in .performer-tabs .tab-box .information .disabled {
  opacity: 0.3;
  pointer-events: none;
}
.main .performer-in .slider {
  margin-bottom: 60px;
}
.main .performer-in .slider .swiper-slide {
  width: 270px;
}
.main .performer-in .slider .swiper-block3 .swiper-slide {
  width: 570px;
}
.main .performer-in .slider .upload-btn {
  cursor: pointer;
  transform: none;
  margin-left: 16px;
}
.main .performer-in .slider .upload-btn span {
  width: 111px;
  height: 30px;
  border-radius: 20px;
  background: rgba(242, 85, 60, 0.062745098);
  font-size: 12px;
  font-weight: 600;
  color: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .performer-in .slider .upload-btn span::before {
  content: url(../img/svg/upload1.svg);
  margin-right: 5px;
  margin-top: 3px;
}
/*.main .performer-in .slider .fire {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}*/
.main .performer-in .slider .promotion {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  border-radius: 10px;
  background: #f2553c;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  padding: 6px;
}
.main .performer-in .slider .promotion img {
  margin-right: 7px;
}
.main .performer-in .slider .promotion span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}
.main .performer-in .slider .item-title {
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
  margin: 15px 0 10px;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .performer-in .slider .item-text {
  font-size: 13px;
  line-height: 23px;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .performer-in .slider .price {
  margin-top: 10px;
  font-size: 13px;
  line-height: 23px;
  font-weight: 600;
  color: #b9b9b9;
  display: flex;
  align-items: center;
}
.main .performer-in .slider .price img {
  margin-right: 8px;
}
.main .performer-in .slider .change-btn, .main .performer-in .slider .remove-btn {
  height: 35px;
  border-radius: 12px;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.main .performer-in .slider .change-btn img, .main .performer-in .slider .remove-btn img {
  margin-right: 5px;
}
.main .performer-in .slider .change-btn {
  background: #F6F6F6;
  color: #9e9e9e;
}
.main .performer-in .slider .change-btn:hover {
  background: #f2f2f2;
}
.main .performer-in .slider .remove-btn {
  background: rgba(255, 79, 79, 0.1019607843);
  color: #f2553c;
}
.main .performer-in .slider .remove-btn:hover {
  background: rgba(255, 79, 79, 0.1647058824);
}
.main .performer-in .slider .btns .change-btn {
  margin-right: 20px;
}
.main .performer-in .slider .showVideo {
  background: #fff;
}
.main .performer-in .slider .showVideo .block2-item {
  background: rgba(0, 0, 0, 0.4);
}
.main .performer-in .slider .showVideo .block2-video {
  z-index: 10;
}
.main .performer-in .slider .showVideo .item-info, .main .performer-in .slider .showVideo .poster {
  display: none;
}
.main .performer-in .offer-order-box {
  background: rgba(242, 85, 60, 0.1019607843);
  border-radius: 30px;
  padding: 50px;
  width: 970px;
}
.main .performer-in .offer-order-box .title {
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
  color: #2f2f2f;
  margin: 15px 0 30px;
}
.main .performer-in .offer-order-box .title span {
  color: #f2553c;
}
.main .performer-in .offer-order-box .offer-order__btn {
  width: 160px;
  height: 45px;
  border-radius: 12px;
  background: #f2553c;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}
.main .performer-in .offer-order-box .offer-order__btn:hover {
  transform: scale(1.1);
}
.main .performer-in .backTo {
  margin: 40px 0 70px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.2;
}
.main .performer-in .backTo svg {
  margin-right: 10px;
}
.main .performer-in .backTo:hover {
  opacity: 1;
}
.main .balance {
  min-height: 70vh;
  padding-bottom: 50px;
}
.main .performer-in .delete_user_btn, .main .performer-in .delete_user_btn_disabled {
  margin: 40px 0 70px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.2;
}
.main .performer-in .delete_user_btn svg, .main .performer-in .delete_user_btn_disabled svg {
  margin-right: 10px;
}
.main .performer-in .delete_user_btn:hover {
  opacity: 1;
}
.main .balance {
  min-height: 70vh;
  padding-bottom: 50px;
}
.main .balance-head .balance-info {
  padding: 8px 15px 6px;
  border-radius: 12px;
  background: rgba(242, 85, 60, 0.1019607843);
  font-size: 23px;
  line-height: 23px;
  font-weight: 700;
  color: #f2553c;
  margin: 0 10px 0 20px;
}
.main .balance-head .balance-box {
  position: relative;
  padding: 10px 10px 10px 15px;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .balance-head .balance-box .box-title {
  color: #979797;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.main .balance-head .balance-box .box-title .sum {
  font-size: 18px;
  display: inline-block;
}
.main .balance-head .balance-box .box-title .data {
  display: inline-block;
  margin: 0 13px 0 6px;
}
.main .balance-head .balance-box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: none;
  z-index: 6;
}
.main .balance-head .balance-box .box-faq {
  position: relative;
}
.main .balance-head .balance-box .box-faq .faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .balance-head .balance-box .box-faq .box-list {
  display: none;
  position: absolute;
  width: 190px;
  border-radius: 12px;
  background: #fff;
  top: 103%;
  left: 50%;
  transform: translateX(-50%);
  padding: 13px 4px 10px 12px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  z-index: 5;
}
.main .balance-head .balance-box .box-faq .box-list::before {
  content: url(../img/png/shadow2.png);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 2;
}
.main .balance-head .balance-box .box-faq .box-list .list {
  max-height: 120px;
  overflow-y: scroll;
  padding-right: 5px;
  padding-bottom: 40px;
}
.main .balance-head .balance-box .box-faq .box-list .list::-webkit-scrollbar {
  width: 3px;
  border-radius: 10px;
  background: rgba(217, 217, 217, 0.1254901961);
}
.main .balance-head .balance-box .box-faq .box-list .list::-webkit-scrollbar-thumb {
  width: 3px;
  border-radius: 10px;
  background: #D9D9D9;
}
.main .balance-head .balance-box .box-faq .box-list .list li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0666666667);
}
.main .balance-head .balance-box .box-faq .box-list .list li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.main .balance-head .balance-box .box-faq .box-list .list li .sum {
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
}
.main .balance-head .balance-box .box-faq .box-list .list li .data {
  font-size: 10px;
  font-weight: 500;
}
.main .balance-head .balance-box .box-faq .box-list .list li .project {
  font-size: 9px;
  opacity: 0.7;
  display: flex;
}
.main .balance-head .balance-box .box-faq .box-list .list li .project a {
  text-decoration: underline;
  max-width: 120px;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-left: 3px;
  cursor: pointer;
}
.main .balance-head .balance-box .box-faq .box-list .list li .project a:hover {
  color: #f2553c;
}
.main .balance-head .balance-box .box-faq:hover .box-list {
  display: block;
}
.main .balance-head .freezing {
  background: #EDF7FF;
  color: #7A99AF;
}
.main .balance-head .freezing .info {
  font-size: 15px;
  font-weight: 700;
  margin: 0 13px 0 9px;
  display: inline-block;
}
.main .balance-head .freezing_last .box-title {
  color: #7a99af;
}
.main .balance-head .topUp-balance {
  padding: 0 20px;
  height: 50px;
  border-radius: 12px;
  background: #3bca44;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 40px 0px rgba(59, 202, 68, 0.4);
  white-space: nowrap;
  transition: 0.3s all;
}
.main .balance-head .topUp-balance svg {
  margin-right: 6px;
}
.main .balance-head .topUp-balance:hover {
  transform: scale(1.1);
}
.main .balance .balance-filter {
  border-radius: 50px;
  padding: 12px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}
.main .balance .balance-filter .select {
  width: auto;
  margin-right: 10px;
}
.main .balance .balance-filter .select:last-child {
  margin-right: 0;
}
.main .balance .balance-filter .select-head {
  height: 26px;
  padding: 0 10px;
  border-radius: 7px;
  display: flex;
  align-items: center;
}
.main .balance .balance-filter .select-head span {
  font-size: 11px;
  font-weight: 600;
  margin-right: 5px;
}
.main .balance .balance-filter .select .options {
  top: 120%;
  background: #fff;
  border-radius: 7px;
  z-index: 10;
  min-width: auto;
}
.main .balance .balance-filter .select .options li {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #272727;
  opacity: 0.4;
  cursor: pointer;
}
.main .balance .balance-filter .select .options li:hover {
  color: #f2553c;
  opacity: 1;
}
.main .balance .balance-filter .search {
  position: relative;
  margin-right: 10px;
}
.main .balance .balance-filter .search .search-inp {
  width: 160px;
  height: 26px;
  border-radius: 7px;
  background: rgba(113, 113, 113, 0.0509803922);
  font-size: 11px;
  font-weight: 500;
  color: #2f2f2f;
  padding: 0 10px 0 25px;
}
.main .balance .balance-filter .search .search-inp::placeholder {
  color: #BBBBBB;
}
.main .balance .balance-filter .search svg {
  position: absolute;
  top: 8px;
  left: 8px;
  transition: 0.3s linear;
}
.main .balance .balance-filter .filter-radio {
  cursor: pointer;
  margin-right: 10px;
}
.main .balance .balance-filter .filter-radio span {
  border-radius: 7px;
  background: rgba(242, 85, 60, 0.0509803922);
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #836e6c;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .balance .balance-filter .filter-radio span::before {
  content: url(../img/svg/f-no-check.svg);
  margin-right: 5px;
  width: 8px;
  height: 8px;
}
.main .balance .balance-filter .filter-radio input:checked ~ span {
  background: #f2553c;
  color: #fff;
}
.main .balance .balance-filter .filter-radio input:checked ~ span::before {
  content: url(../img/svg/f-check.svg);
}
.main .balance .mob-filter {
  cursor: pointer;
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f6f6f6;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  margin-top: 15px;
}
.main .balance .mob-filter::after {
  content: url(../img/svg/arrow-down.svg);
}
.main .balance-table {
  margin-top: 50px;
}
.main .balance-table .tr {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #F0F0F0;
  font-size: 12px;
  font-weight: 500;
  color: #2f2f2f;
}
.main .balance-table .tr .sum {
  font-size: 16px;
  font-weight: 700;
  min-width: 80px;
  margin-right: 30px;
}
.main .balance-table .tr .sum.pay {
  color: #ff4f4f;
}
.main .balance-table .tr .sum.freezing {
  color: #3288C6;
}
.main .balance-table .tr .sum.replenishment {
  color: #2ab031;
}
.main .balance-table .tr .project-name {
  margin-left: 10px;
  padding: 8.5px 12px;
  background: #f4f4f4;
  border-radius: 50px;
  font-weight: 600;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  max-width: 216px;
}
.main .balance-table .tr .project-name:hover {
  color: #f2553c;
}
.main .balance-table .tr .td-data {
  opacity: 0.2;
  white-space: nowrap;
}
.main .balance-table .tr .processing {
  padding: 7px;
  border-radius: 7px;
  background: rgba(142, 142, 142, 0.1019607843);
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  color: #AFAFAF;
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.main .balance-table .tr .processing img {
  margin-right: 5px;
}
.main .balance-table .tr .rejected {
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(255, 79, 79, 0.1019607843);
  display: flex;
  align-items: center;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  margin-left: 20px;
}
.main .balance-table .tr .rejected span {
  color: #ff4f4f;
  margin-right: 10px;
}
.main .balance-table .tr .rejected span svg {
  margin-right: 5px;
}
.main .balance-table .tr .rejected a {
  color: #b89494;
  text-decoration: underline;
}
.main .balance-table .tr .user {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  padding: 0 10px 0 5px;
  background: #F2F2F2;
  border-radius: 50px;
  margin: 0 10px 0 20px;
}
.main .balance-table .tr .user .avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 5px;
}
.main .balance-table .tr .user .name {
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
}
.main .balance-table .tr .user:hover .name {
  color: #272727;
}
.main .balance-table .tr .view-link {
  height: 25px;
  padding: 0 10px;
  border-radius: 7px;
  background: #f2553c;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .balance-table .tr .rejected-btn {
  height: 25px;
  padding: 0 10px;
  border-radius: 7px;
  background: rgba(255, 79, 79, 0.1019607843);
  color: #FF4F4F;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main .balance-table .tr .rejected-btn svg {
  margin-right: 5px;
}
.main .createOrder {
  padding-bottom: 50px;
}
.main .createOrder-box {
  display: flex;
  align-items: start;
}
.main .createOrder-list {
  width: 370px;
  padding: 30px;
  border-radius: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  margin-right: 30px;
}
.main .createOrder-list li {
  min-width: 310px;
  height: 50px;
  border-radius: 12px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}
.main .createOrder-list li:last-child {
  margin-bottom: 0;
}
.main .createOrder-list .expectation::after {
  content: url(../img/svg/expectation.svg);
}
.main .createOrder-list .success::after {
  content: url(../img/svg/success.svg);
}
.main .createOrder .show {
  display: block !important;
}
.main .createOrder-info {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
}
.main .createOrder-info .slide-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.main .createOrder-info .service-box .service-item {
  width: 32%;
  height: 325px;
  display: flex;
  align-items: end;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.main .createOrder-info .service-box .service-item .item-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
  object-fit: cover;
}
.main .createOrder-info .service-box .service-item .hover-img img {
  position: absolute;
  transition: 0.3s linear;
  opacity: 0;
  z-index: 10;
}
.main .createOrder-info .service-box .service-item .item-info {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  height: 60%;
}
.main .createOrder-info .service-box .service-item .item-info .title-text {
  font-size: 18px;
  line-height: 24px;
  color: #333;
  padding: 0 20px;
}
.main .createOrder-info .service-box .service-item .item-info .item-text {
  font-size: 12px;
  line-height: 19px;
  color: #333;
  margin: 8px 0 12px;
  padding: 0 20px;
}
.main .createOrder-info .service-box .service-item .item-info .service-btn {
  display: flex;
  width: 100%;
  cursor: pointer;
}
.main .createOrder-info .service-box .service-item .item-info .service-btn input {
  display: none;
}
.main .createOrder-info .service-box .service-item .item-info .service-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #fff;
  color: #2f2f2f;
  font-size: 12px;
  font-weight: 700;
  margin: 10px;
}
.main .createOrder-info .service-box .service-item .item-info .service-btn span::after {
  content: "Выбрать услугу";
}
.main .createOrder-info .service-box .service-item .item-info .service-btn svg {
  margin-right: 12px;
}
.main .createOrder-info .service-box .service-item .item-info .service-btn input:checked ~ span {
  background: #c1508b;
  color: #fff;
  margin: 0;
  height: 55px;
}
.main .createOrder-info .service-box .service-item .item-info .service-btn input:checked ~ span::after {
  content: "Услуга выбрана";
}
.main .createOrder-info .service-box .service-item .item-info .service-btn input:checked ~ span svg path {
  stroke: #fff;
}
.main .createOrder-info .service-box .service-item:hover {
  background: #FFD7EC;
}
.main .createOrder-info .service-box .service-item:hover .item-bg {
  opacity: 0;
  transform: scale(1.1);
}
.main .createOrder-info .service-box .service-item:nth-child(1) .hover-img img:nth-child(1) {
  top: -10px;
  left: 10px;
}
.main .createOrder-info .service-box .service-item:nth-child(1) .hover-img img:nth-child(2) {
  top: 0;
  right: 70px;
  transition: 0.3s all;
}
.main .createOrder-info .service-box .service-item:nth-child(1) .hover-img img:nth-child(3) {
  top: -10px;
  right: -5px;
}
.main .createOrder-info .service-box .service-item:nth-child(1) .hover-img img:nth-child(4) {
  top: 73px;
  right: -20px;
  transition: 0.6s all;
}
.main .createOrder-info .service-box .service-item:nth-child(1):hover .hover-img img:nth-child(1) {
  top: 0px;
  left: 24px;
  opacity: 1;
  transform: rotate(-15deg);
}
.main .createOrder-info .service-box .service-item:nth-child(1):hover .hover-img img:nth-child(2) {
  top: 20px;
  right: 55px;
  opacity: 1;
}
.main .createOrder-info .service-box .service-item:nth-child(1):hover .hover-img img:nth-child(3) {
  top: 0;
  right: 10px;
  opacity: 1;
}
.main .createOrder-info .service-box .service-item:nth-child(1):hover .hover-img img:nth-child(4) {
  top: 73px;
  right: 0px;
  opacity: 1;
}
.main .createOrder-info .service-box .service-item:nth-child(2) .item-info .service-btn input:checked ~ span {
  background: #c88470;
}
.main .createOrder-info .service-box .service-item:nth-child(2) .hover-img img:nth-child(1) {
  top: 25px;
  left: 0;
}
.main .createOrder-info .service-box .service-item:nth-child(2) .hover-img img:nth-child(2) {
  top: -30px;
  right: 40px;
  transition: 0.3s all;
}
.main .createOrder-info .service-box .service-item:nth-child(2) .hover-img img:nth-child(3) {
  top: 44px;
  right: -30px;
  transition: 0.6s all;
}
.main .createOrder-info .service-box .service-item:nth-child(2):hover {
  background: #FFE0D7;
}
.main .createOrder-info .service-box .service-item:nth-child(2):hover .hover-img img:nth-child(1) {
  top: 25px;
  left: 42px;
  opacity: 1;
}
.main .createOrder-info .service-box .service-item:nth-child(2):hover .hover-img img:nth-child(2) {
  top: 0;
  right: 40px;
  opacity: 1;
  transform: rotate(15deg);
}
.main .createOrder-info .service-box .service-item:nth-child(2):hover .hover-img img:nth-child(3) {
  top: 44px;
  right: 0px;
  opacity: 1;
}
.main .createOrder-info .service-box .service-item:last-child .item-info .service-btn input:checked ~ span {
  background: #E85151;
}
.main .createOrder-info .service-box .service-item:last-child .hover-img img:nth-child(1) {
  top: -30px;
  left: 26px;
}
.main .createOrder-info .service-box .service-item:last-child .hover-img img:nth-child(2) {
  top: -10px;
  right: 25px;
  transition: 0.2s all;
}
.main .createOrder-info .service-box .service-item:last-child .hover-img img:nth-child(3) {
  top: 49px;
  right: -30px;
  transition: 0.4s all;
}
.main .createOrder-info .service-box .service-item:last-child:hover {
  background: #ffd0d0;
}
.main .createOrder-info .service-box .service-item:last-child:hover .hover-img img:nth-child(1) {
  top: 0;
  left: 26px;
  opacity: 1;
}
.main .createOrder-info .service-box .service-item:last-child:hover .hover-img img:nth-child(2) {
  top: 4px;
  right: 39px;
  opacity: 1;
}
.main .createOrder-info .service-box .service-item:last-child:hover .hover-img img:nth-child(3) {
  top: 49px;
  right: 0px;
  opacity: 1;
  transform: scale(1.2);
}
.main .createOrder-info .service-box .socials-item {
  margin-top: 30px;
}
.main .createOrder-info .service-box .socials-item .socials-title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.main .createOrder-info .service-box .socials-item .socials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 17px;
}
.main .createOrder-info .service-box .socials-item .social-btn {
  width: 100%;
}
.main .createOrder-info .service-box .socials-item .social-btn input {
  display: none;
}
.main .createOrder-info .service-box .socials-item .social-btn span {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.3137254902);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.main .createOrder-info .service-box .socials-item .social-btn span svg {
  margin-right: 10px;
}
.main .createOrder-info .service-box .socials-item .social-btn span::after {
  content: url(../img/svg/check-min2.svg);
  margin-left: 10px;
  display: none;
}
.main .createOrder-info .service-box .socials-item .social-btn span:hover {
  color: #333;
}
.main .createOrder-info .service-box .socials-item .social-btn input:checked ~ span {
  color: #fff;
}
.main .createOrder-info .service-box .socials-item .social-btn input:checked ~ span::after {
  display: block;
}
.main .createOrder-info .service-box .socials-item .social-btn input:checked ~ span svg path {
  fill: #fff;
}
.main .createOrder-info .service-box .socials-item .social-btn input:checked:hover ~ span::after {
  content: url(../img/svg/close-min.svg);
}
.main .createOrder-info .service-box .socials-item .social-btn input:checked:hover ~ span svg path {
  fill: #fff !important;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_instagram:hover ~ span svg path, .main .createOrder-info .service-box .socials-item .social-btn input.icon_instagram_r:hover ~ span svg path {
  fill: #c1508b;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_instagram:checked ~ span, .main .createOrder-info .service-box .socials-item .social-btn input.icon_instagram_r:checked ~ span {
  background: #c1508b;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_telegram:hover ~ span svg path {
  fill: #4BBBFB;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_telegram:checked ~ span {
  background: #4BBBFB;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_whatsApp:hover ~ span svg path {
  fill: #40AB2F;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_whatsApp:checked ~ span {
  background: #40AB2F;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_vkontakte:hover ~ span svg path, .main .createOrder-info .service-box .socials-item .social-btn input.icon_vkontakte_r:hover ~ span svg path, .main .createOrder-info .service-box .socials-item .social-btn input.icon_vkontakte_v:hover ~ span svg path {
  fill: #4475F1;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_vkontakte:checked ~ span, .main .createOrder-info .service-box .socials-item .social-btn input.icon_vkontakte_r:checked ~ span, .main .createOrder-info .service-box .socials-item .social-btn input.icon_vkontakte_v:checked ~ span {
  background: #4475F1;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_shorts:hover ~ span svg path, .main .createOrder-info .service-box .socials-item .social-btn input.icon_youTube:hover ~ span svg path {
  fill: #E85151;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_shorts:checked ~ span, .main .createOrder-info .service-box .socials-item .social-btn input.icon_youTube:checked ~ span {
  background: #E85151;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_tikTok:hover ~ span svg path {
  fill: #16CECD;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_tikTok:checked ~ span {
  background: #16CECD;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_ruTube:hover ~ span svg path {
  fill: #0A1D38;
}
.main .createOrder-info .service-box .socials-item .social-btn input.icon_ruTube:checked ~ span {
  background: #0A1D38;
}
.main .createOrder-info .control-btns {
  display: flex;
  align-items: start;
  justify-content: end;
  margin-top: 60px;
}
.main .createOrder-info .control-btns button {
  width: 32%;
  height: 56px;
  border-radius: 12px;
  margin-right: 2%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}
.main .createOrder-info .control-btns button:last-child {
  margin-right: 0;
}
.main .createOrder-info .control-btns .save-draft {
  background: transparent;
  color: #2f2f2f;
  opacity: 0.3;
}
.main .createOrder-info .control-btns .save-draft svg {
  margin-right: 6px;
}
.main .createOrder-info .control-btns .prev-btn {
  background: #f6f6f6;
}
.main .createOrder-info .control-btns .prev-btn svg {
  margin-right: 10px;
  opacity: 0.3;
}
.main .createOrder-info .control-btns .prev-btn span {
  opacity: 0.3;
}
.main .createOrder-info .control-btns .prev-btn:hover span {
  opacity: 1;
}
.main .createOrder-info .control-btns .prev-btn:hover svg {
  opacity: 1;
}
.main .createOrder-info .control-btns .next-btn {
  width: 100%;
  background: #F2553C;
  color: #fff;
  box-shadow: 0px 7px 50px 0px rgba(242, 85, 60, 0.4);
}
.main .createOrder-info .control-btns .next-btn svg {
  margin-left: 10px;
}
.main .createOrder-info .control-btns .next-btn:hover {
  transform: scale(1.05);
}
.main .createOrder-info .control-btns .next-box {
  width: 32%;
}
.main .createOrder-info .control-btns .auto-renewal {
  display: flex;
  margin-top: 15px;
  position: relative;
  z-index: 5;
}
.main .createOrder-info .control-btns .auto-renewal .check-box {
  margin-right: 6px;
}
.main .createOrder-info .control-btns .auto-renewal .check-box label {
  font-size: 11px;
}
.main .createOrder-info .control-btns .auto-renewal .faq {
  position: relative;
}
.main .createOrder-info .control-btns .auto-renewal .faq .faq-btn {
  width: 15px;
  height: 15px;
}
.main .createOrder-info .control-btns .auto-renewal .faq .faq-btn img {
  width: 7px;
}
.main .createOrder-info .control-btns .auto-renewal .faq .faq-info {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 11px;
  line-height: 16px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .createOrder-info .control-btns .auto-renewal .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .createOrder-info .control-btns .auto-renewal .faq:hover .faq-info {
  display: block;
}
.main .createOrder .service-box .description {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #F6F6F6;
}
.main .createOrder .service-box .description-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  margin-bottom: 10px;
}
.main .createOrder .service-box .description-title svg {
  margin-right: 5px;
}
.main .createOrder .service-box .description-subtitle {
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
  opacity: 0.4;
}
.main .createOrder .service-box .description .input-box {
  position: relative;
}
.main .createOrder .service-box .description .input-box input {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
}
.main .createOrder .service-box .description .input-box input.limited {
  padding-right: 180px;
}
.main .createOrder .service-box .description .text-box textarea.limited {
  padding-right: 180px;
}
.main .createOrder .service-box .description .input-box input::placeholder {
  opacity: 0.5;
}
.main .createOrder .service-box .description .input-box .info-length {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #272727;
  opacity: 0.4;
}
.main .createOrder .service-box .description .text-box .info-length {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #272727;
  opacity: 0.4;
}
.main .createOrder .service-box .description .text-box {
  position: relative;
}
.main .createOrder .service-box .description .text-box textarea {
  width: 100%;
  height: 90px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  resize: none;
}
.main .createOrder .service-box .description .text-box textarea::placeholder {
  opacity: 0.5;
}
.main .createOrder .service-box .description .terms-reference {
  margin-top: 20px;
}
.main .createOrder .service-box .description .terms-reference .title {
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
  opacity: 0.4;
}
.main .createOrder .service-box .description .terms-reference .item {
  margin-top: 5px;
  width: 412px;
  position: relative;
}
.main .createOrder .service-box .description .terms-reference .item .select {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  cursor: pointer;
  z-index: 3;
}
.main .createOrder .service-box .description .terms-reference .item-head {
  width: 100%;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0 18px;
}
.main .createOrder .service-box .description .terms-reference .item-head span {
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  opacity: 0.6;
}
.main .createOrder .service-box .description .terms-reference .item-head:hover {
  background: #f6f6f6;
}
.main .createOrder .service-box .description .terms-reference .item-info {
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
  padding: 15px;
  border-radius: 12px;
  background: #f9f9f9;
  margin-top: 5px;
  display: none;
}
.main .createOrder .service-box .description .terms-reference .item-info p {
  opacity: 0.8;
}
.main .createOrder .service-box .description .terms-reference .item .select:hover ~ .item-head {
  background: #f6f6f6;
}
.main .createOrder .service-box .description .terms-reference .item .select:checked ~ .item-head {
  background: #f6f6f6;
}
.main .createOrder .service-box .description .terms-reference .item .select:checked ~ .item-head svg {
  transform: rotate(180deg);
}
.main .createOrder .service-box .description .terms-reference .item .select:checked ~ .item-info {
  display: block;
}
.main .createOrder .service-box .description:last-child {
  border: none;
  margin: 0;
  padding: 0;
}
.main .createOrder .faq {
  position: relative;
}
.main .createOrder .faq .faq-btn {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .createOrder .faq .faq-info {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  width: 143px;
  padding: 8px;
  font-size: 11px;
  line-height: 16px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.main .createOrder .faq .faq-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -3px;
  right: 10px;
  transform: rotate(45deg);
}
.main .createOrder .faq:hover .faq-info {
  display: block;
}
.main .createOrder .term:hover .faq-info {
  display: block;
}
.main .createOrder .files .description-title {
  margin: 0 11px 0 0;
}
.main .createOrder .files .description-subtitle {
  margin-top: 8px;
}
.main .createOrder .files .upload-box .file {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  background: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 15px 10px 0 0;
  position: relative;
  padding: 10px;
}
.main .createOrder .files .upload-box .file .file-name {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  margin-top: 7px;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  max-width: 110px;
}
.main .createOrder .files .upload-box .file .remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
.main .createOrder .files .upload-box .file .remove:hover svg path {
  opacity: 1;
}
.main .createOrder .files .upload-box .file:hover .remove {
  display: flex;
}
.main .createOrder .files .upload-box .upload-file {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 15px;
  transition: 0.3s linear;
  cursor: pointer;
}
.main .createOrder .files .upload-box .upload-file input {
  display: none;
}
.main .createOrder .files .upload-box .upload-file span {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.3;
  margin-top: 7px;
}
.main .createOrder .files .upload-box .upload-file:hover {
  transform: scale(1.05);
}
.main .createOrder .files .upload-box .upload-file:hover span {
  opacity: 1;
}
.main .createOrder .files .upload-box .upload-file:hover svg path {
  fill: #272727;
}
.main .createOrder .social-link {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
}
.main .createOrder .social-link .remove-btn {
  cursor: pointer;
}
.main .createOrder .social-link .remove-btn:hover svg path {
  stroke: #272727;
}
.main .createOrder .address .description-title {
  margin: 0;
}
.main .createOrder .address .select {
  margin-bottom: 10px;
  margin-right: 20px;
  margin-top: 20px;
  width: auto;
}
.main .createOrder .address .select-head {
  min-width: 180px;
  height: 45px;
  background: #F8F8F8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .createOrder .address .select-head span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #9b9b9b;
  display: inline-block;
  margin-right: 5px;
}
.main .createOrder .address .select .options {
  top: 100%;
  background: #F8F8F8;
  border-radius: 0 0 12px 12px;
  box-shadow: none;
  border-top: 1px solid #E8E8E8;
}
.main .createOrder .address .select .options li {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #272727;
  opacity: 0.4;
  cursor: pointer;
}
.main .createOrder .address .select .options li:hover {
  opacity: 1;
}
.main .createOrder .address .showSelect .select-head {
  border-radius: 12px 12px 0 0;
}
.main .createOrder .address .showSelect .select-head span {
  color: #2f2f2f;
}
.main .createOrder .address .showSelect .select-head svg path {
  stroke: #272727;
}
.main .createOrder .address .check-box label {
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  color: rgba(47, 47, 47, 0.4392156863);
}
.main .createOrder .jobs .description-title {
  margin: 0;
}
.main .createOrder .jobs .indicate-your {
  width: 160px;
  height: 35px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.1882352941);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .createOrder .jobs .indicate-your svg {
  margin-right: 8px;
}
.main .createOrder .jobs-search {
  position: relative;
  margin-right: 15px;
}
.main .createOrder .jobs-search .search {
  width: 237px;
  height: 35px;
  border-radius: 12px;
  background: #f8f8f8;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #2f2f2f;
  padding: 0 40px 0 14px;
}
.main .createOrder .jobs-search .search::placeholder {
  opacity: 0.3;
}
.main .createOrder .jobs-search .search:focus::placeholder {
  opacity: 0;
}
.main .createOrder .jobs-search svg {
  position: absolute;
  top: 12px;
  right: 14px;
  transition: 0.3s linear;
}
.main .createOrder .jobs-list {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 5px;
  max-height: 170px;
  overflow-y: scroll;
}
.main .createOrder .jobs-list::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
  background: #F8F8F8;
}
.main .createOrder .jobs-list::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 10px;
  background: #CCCCCC;
}
.main .createOrder .jobs-list .job {
  padding: 8px 23.5px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.3764705882);
  margin: 10px 10px 0 0;
  transition: 0.3s linear;
  cursor: pointer;
}
.main .createOrder .jobs-list .job:hover {
  color: #333;
}
.main .createOrder .jobs-list .jobChecked {
  background: #f2553c;
  color: #fff;
}
.main .createOrder .jobs-list .jobChecked span::after {
  content: url(../img/svg/check2.svg);
  margin-left: 8px;
}
.main .createOrder .jobs-list .jobChecked:hover {
  color: #fff;
}
.main .createOrder .jobs-list .jobChecked:hover span::after {
  content: url(../img/svg/close1.svg);
}
.main .createOrder .skills {
  display: flex;
  flex-wrap: wrap;
}
.main .createOrder .skills .skill {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  font-size: 12px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.3764705882);
  margin: 10px 10px 0 0;
  transition: 0.3s linear;
  cursor: pointer;
  transition: 0.3s linear;
}
.main .createOrder .skills .skill svg {
  margin-right: 8px;
}
.main .createOrder .skills .skill:hover {
  color: #2F2F2F;
  transform: scale(1.05);
}
.main .createOrder .skills .skill:hover svg path {
  fill: #f2553c;
  opacity: 1;
}
.main .createOrder .skills .skillCheck {
  color: #fff;
  background: #f2553c;
}
.main .createOrder .skills .skillCheck svg path {
  fill: #fff;
  opacity: 1;
}
.main .createOrder .skills .skillCheck:hover {
  color: #fff;
}
.main .createOrder .skills .skillCheck:hover svg path {
  fill: #fff;
  opacity: 1;
}
.main .createOrder .service-box .stories-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.main .createOrder .service-box .stories-box .stories {
  width: 100%;
  padding: 25px;
  position: relative;
}
.main .createOrder .service-box .stories-box .stories input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  cursor: pointer;
  z-index: 3;
}
.main .createOrder .service-box .stories-box .stories .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .createOrder .service-box .stories-box .stories-title {
  padding: 7.5px 10px;
  border-radius: 50px;
  background: rgba(242, 85, 60, 0.1019607843);
  color: #f2553c;
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.main .createOrder .service-box .stories-box .stories-text {
  font-size: 12px;
  line-height: 19px;
  color: #333;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.main .createOrder .service-box .stories-box .stories input:checked ~ .stories-title {
  background: #fff;
  color: #f2553c;
}
.main .createOrder .service-box .stories-box .stories input:checked ~ .stories-text {
  color: #fff;
}
.main .createOrder .service-box .stories-box .stories input:checked ~ .bg {
  background: #f2553c;
  box-shadow: 0px 10px 20px 0px rgba(242, 85, 60, 0.3);
}
.main .createOrder .service-box .add-packet {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 14px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .createOrder .service-box .add-packet .title {
  font-size: 15px;
  line-height: 30px;
  font-weight: 600;
  margin-right: 10px;
}
.main .createOrder .service-box .add-packet .faq-btn {
  background: #FFEFEC;
}
.main .createOrder .service-box .term {
  margin-top: 40px;
}
.main .createOrder .service-box .term .slide-title {
  margin: 0;
}
.main .createOrder .service-box .term .term-text {
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  color: #333;
  margin: 5px 0 15px;
}
.main .createOrder .service-box .term .term-box {
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  color: #333;
}
.main .createOrder .service-box .term .counter {
  margin: 0 10px;
}
.main .createOrder .service-box .term .term-item .item {
  width: 49%;
  border-radius: 15px;
  background: #2f2f2f;
  padding: 20px;
  margin-top: 10px;
}
.main .createOrder .service-box .term .term-item .item .item-title svg {
  margin-right: 6px;
}
.main .createOrder .service-box .term .term-item .item .item-title h3 {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #fff;
}
.main .createOrder .service-box .term .term-item .item .item-text {
  font-size: 12px;
  line-height: 18px;
  color: #8f8f8f;
  margin: 10px 0 15px;
}
.main .createOrder .service-box .term .term-item .item .item-btn {
  border-radius: 8px;
  background: #fff;
  padding: 5px 12px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #2f2f2f;
}
.main .createOrder .service-box .term .term-item .item .checkedBn {
  background: #f2553c;
  color: #fff;
}
.main .createOrder .service-box .term .term-btns .term-btn {
  width: 24%;
  height: 35px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.3);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  margin-top: 10px;
}
.main .createOrder .service-box .term .term-btns .active {
  background: #f2553c;
  color: #fff;
  box-shadow: none;
}
.main .createOrder .service-box .term .term-btns .active span::after {
  content: url(../img/svg/close-min.svg);
  display: inline-block;
  margin: 1px 0 0 7px;
}
.main .createOrder .service-box .term .term-interval .interval-title {
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  color: #333;
  margin: 20px 0 15px;
}
.main .createOrder .service-box .term .term-interval .interval-counter span {
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  color: #333;
}
.main .createOrder .service-box .term .term-interval .interval-counter .counter {
  margin: 0 10px;
}
.main .createOrder .service-box .term .term-interval .interval-box {
  border-radius: 20px;
  background: #2f2f2f;
  position: relative;
  padding: 25px;
  margin-top: 20px;
}
.main .createOrder .service-box .term .term-interval .interval-box .interval-text {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
}
.main .createOrder .service-box .term .term-interval .interval-box .interval-text > span {
  display: inline-block;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  background: #fff;
  color: #2f2f2f;
  padding: 0 9px;
  border-radius: 50px;
}
.main .createOrder .service-box .weeks {
  margin-top: 20px;
}
.main .createOrder .service-box .weeks-title {
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  color: #333;
}
.main .createOrder .service-box .weeks-list {
  display: flex;
  flex-wrap: wrap;
}
.main .createOrder .service-box .weeks-list li {
  padding: 8px 23.5px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.3764705882);
  margin: 10px 10px 0 0;
  transition: 0.3s linear;
  cursor: pointer;
}
.main .createOrder .service-box .weeks-list li:hover {
  color: #333;
}
.main .createOrder .service-box .weeks-list .weekChecked {
  background: #f2553c;
  color: #fff;
}
.main .createOrder .service-box .weeks-list .weekChecked span::after {
  content: url(../img/svg/check2.svg);
  margin-left: 8px;
}
.main .createOrder .service-box .weeks-list .weekChecked:hover {
  color: #fff;
}
.main .createOrder .service-box .weeks-list .weekChecked:hover span::after {
  content: url(../img/svg/close1.svg);
}
.main .createOrder .service-box .new-packet {
  position: relative;
  border-radius: 20px;
  margin-top: 40px;
}
.main .createOrder .service-box .new-packet .packet-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.main .createOrder .service-box .new-packet .packet-info {
  position: relative;
  z-index: 3;
  padding: 25px 25px 35px 25px;
  color: #fff;
  width: 75%;
}
.main .createOrder .service-box .new-packet .packet-info .title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}
.main .createOrder .service-box .new-packet .packet-info .title span {
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  color: #2f2f2f;
  padding: 0 9px;
  border-radius: 50px;
  background: #fff;
}
.main .createOrder .service-box .new-packet .packet-info .packet-item .item {
  display: flex;
  align-items: center;
  margin-top: 17px;
}
.main .createOrder .service-box .new-packet .packet-info .packet-item .item .name {
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  color: #919191;
  display: inline-block;
  margin-right: 10px;
}
.main .createOrder .service-box .new-packet .packet-info .packet-item .item .info {
  padding: 2px 7px;
  border-radius: 50px;
  background: #3a3a3a;
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  color: #fff;
  margin-right: 10px;
}
.main .createOrder .service-box .auto-renewal {
  margin-top: 27px;
  display: flex;
  align-items: center;
}
.main .createOrder .service-box .auto-renewal .faq {
  margin-left: 10px;
}
.main .createOrder .service-box .auto-renewal .faq .faq-btn {
  background: #FFEFEC;
}
.main .createOrder .service-box .newServices-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
  margin-bottom: 15px;
  position: relative;
}
.main .createOrder .service-box .newServices-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  appearance: none;
  cursor: pointer;
}
.main .createOrder .service-box .newServices-item:last-child {
  margin: 0;
}
.main .createOrder .service-box .newServices-item .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f2553c;
  display: none;
  border-radius: 20px;
}
.main .createOrder .service-box .newServices-item .check {
  margin-right: 13px;
  position: relative;
  z-index: 3;
}
.main .createOrder .service-box .newServices-item .check span {
  font-size: 15px;
  line-height: 30px;
  font-weight: 600;
  color: #2f2f2f;
  display: flex;
  align-items: center;
}
.main .createOrder .service-box .newServices-item .check span::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../img/svg/no-check.svg);
  background-size: cover;
  margin-right: 7px;
}
.main .createOrder .service-box .newServices-item .faq .faq-btn {
  position: relative;
  z-index: 6;
  background: #FFEFEC;
}
.main .createOrder .service-box .newServices-item .sum {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(242, 85, 60, 0.062745098);
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  color: #f2553c;
  margin-right: 10px;
  position: relative;
  z-index: 3;
}
.main .createOrder .service-box .newServices-item .pcs {
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  color: #f2553c;
  position: relative;
  z-index: 3;
}
.main .createOrder .service-box .newServices-item input:checked ~ .item::before {
  display: block;
}
.main .createOrder .service-box .newServices-item input:checked ~ .item .check span {
  color: #fff;
}
.main .createOrder .service-box .newServices-item input:checked ~ .item .check span::before {
  background-image: url(../img/svg/checked.svg);
}
.main .createOrder .service-box .newServices-item input:checked ~ .item .faq .faq-btn {
  background: #e14a33;
}
.main .createOrder .service-box .newServices-item input:checked ~ .item .faq .faq-btn svg path {
  fill: #FF7C67;
}
.main .createOrder .service-box .newServices-item input:checked ~ .info .sum {
  background: rgba(255, 255, 255, 0.0666666667);
  color: #fff;
}
.main .createOrder .service-box .newServices-item input:checked ~ .info .pcs {
  color: #fff;
}
.main .createOrder .service-box .budget-total {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.main .createOrder .service-box .budget-total .total-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .createOrder .service-box .budget-total .total-info {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 25px 25px 35px 25px;
}
.main .createOrder .service-box .budget-total .total-info .total-title {
  font-size: 25px;
  line-height: 28px;
  font-weight: 700;
}
.main .createOrder .service-box .budget-total .total-info .total-item .item {
  margin-top: 20px;
  margin-right: 25px;
}
.main .createOrder .service-box .budget-total .total-info .total-item .item .name {
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  color: #919191;
  display: inline-block;
  margin-right: 10px;
}
.main .createOrder .service-box .budget-total .total-info .total-item .item .info {
  height: 25px;
  border-radius: 8px;
  padding: 0 7px;
  background: #3a3a3a;
  margin-right: 5px;
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .createOrder .service-box .budget-total .total-info .total-item .item .info img {
  margin-right: 5px;
}
.main .createOrder .service-box .budget-total .total-info .total-item .item .check-box input {
  min-width: 11px;
  height: 12px;
  background-image: url(../img/svg/no-check1.svg);
  margin-right: 5px;
}
.main .createOrder .service-box .budget-total .total-info .total-item .item .check-box label::before {
  content: "Выключено";
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}
.main .createOrder .service-box .budget-total .total-info .total-item .item .check-box input:checked {
  background-image: url(../img/svg/checked2.svg);
}
.main .createOrder .service-box .budget-total .total-info .total-item .item .check-box input:checked ~ label::before {
  content: "Включено";
  color: #fff;
}
.main .createOrder .service-box .budget-info {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #272727;
  margin: 30px 0 20px;
}
.main .createOrder .service-box .budget-info .min {
  display: flex;
}
.main .createOrder .service-box .budget-info .min span {
  display: inline-block;
  margin-right: 15px;
  opacity: 0.3;
}
.main .createOrder .service-box .budget-info .min span:last-child {
  margin-right: 0;
}
.main .createOrder .service-box .your-budget {
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .createOrder .service-box .your-budget .title {
  font-size: 15px;
  line-height: 30px;
  font-weight: 600;
}
.main .createOrder .service-box .your-budget .counter .input-box {
  margin: 0;
}
.main .createOrder .service-box .your-budget .counter-inp {
  width: 80px;
  height: 25px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #EAEAEA;
  text-align: left;
  padding: 0 10px;
  pointer-events: none;
}
.main .createOrder .service-box .your-budget .counter .input-box {
  position: relative;
}
.main .createOrder .service-box .your-budget .counter .input-box::after {
  content: "₽";
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 12px;
  font-weight: 500;
}
.main .createOrder .service-box .can-appreciate {
  padding: 10px 14px;
  border-radius: 20px;
  background: rgba(240, 240, 240, 0.2509803922);
  margin-top: 15px;
}
.main .createOrder .service-box .can-appreciate .check-box label {
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: rgba(39, 39, 39, 0.2509803922);
}
.main .createOrder .service-box .can-appreciate .check-box input:checked ~ label {
  color: #272727;
}
.main .createOrder .service-box .saf-deal {
  padding: 19px 25px;
  border-radius: 20px;
  background: rgba(59, 202, 68, 0.1019607843);
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.main .createOrder .service-box .saf-deal span {
  display: inline-block;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #1d7b22;
  margin-right: 10px;
}
.main .createOrder .service-box .calendar-box {
  position: relative;
  height: 275px;
}
.main .createOrder .service-box .calendar-box .slider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 106%;
}
.main .createOrder .service-box .calendar-box .slider .swiper {
  padding-right: 40px;
}
.main .createOrder .service-box .calendar-box .swiper-btns {
  margin-top: 20px;
}
.main .createOrder .service-box .calendar-box .swiper-btns div {
  margin: 0;
  left: 0;
  padding: 0;
  bottom: 0;
  width: auto;
  height: auto;
  box-shadow: none;
  cursor: pointer;
}
.main .createOrder .service-box .calendar-box .swiper-btns div span {
  font-size: 12px;
  line-height: 19px;
  color: #b7b7b7;
  font-weight: 600;
  display: inline-block;
}
.main .createOrder .service-box .calendar-box .swiper-btns div:hover {
  transform: none;
}
.main .createOrder .service-box .calendar-box .swiper-btns div:first-child svg {
  margin-right: 5px;
}
.main .createOrder .service-box .calendar-box .swiper-btns div:last-child span {
  margin-right: 5px;
}
.main .createOrder .service-box .calendar-box .swiper-slide {
  width: auto;
}
.main .createOrder .service-box .calendar-box .cal1,
.main .createOrder .service-box .calendar-box .cal2,
.main .createOrder .service-box .calendar-box .cal3,
.main .createOrder .service-box .calendar-box .cal4,
.main .createOrder .service-box .calendar-box .cal5,
.main .createOrder .service-box .calendar-box .cal6,
.main .createOrder .service-box .calendar-box .cal7,
.main .createOrder .service-box .calendar-box .cal8,
.main .createOrder .service-box .calendar-box .cal9,
.main .createOrder .service-box .calendar-box .cal10,
.main .createOrder .service-box .calendar-box .cal11,
.main .createOrder .service-box .calendar-box .cal12 {
  width: 240px;
  height: auto;
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 10px;
}
.main .createOrder .service-box .calendar-box .month {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 10px;
}
.main .createOrder .service-box .calendar-box .divTable {
  display: table;
  width: 100%;
  text-align: center;
}
.main .createOrder .service-box .calendar-box .row {
  display: table-row;
}
.main .createOrder .service-box .calendar-box .cell {
  display: table-cell;
  padding: 0 6px;
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  color: #2f2f2f;
  width: 30px;
  height: 30px;
  opacity: 0.3;
  vertical-align: middle;
  border-radius: 7px;
  cursor: default;
}
.main .createOrder .service-box .calendar-box .active {
  opacity: 0.6;
}
.main .createOrder .service-box .calendar-box .checked {
  background: #f2553c;
  color: #fff;
  opacity: 1;
}
.main .createOrder .service-box .calendar-box .row1 {
  display: table-row;
  height: 15px;
}
.main .createOrder .service-box .calendar-box .row1 .cell {
  font-size: 8px;
  line-height: 8px;
  font-weight: 600;
  color: #2f2f2f;
  padding: 0;
  height: 15px;
  opacity: 0.6;
  vertical-align: sub;
}
.main .createOrder .service-box .calendar-box .divTableBody {
  display: table-row-group;
}
.main .createOrder .published {
  position: relative;
}
.main .createOrder .published .bg {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: animBg 0.5s linear;
}
@keyframes animBg {
  from {
    transform: scale(0.5);
  }
  to {
    transform: matrix(1);
  }
}
.main .createOrder .published .info {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 0px;
}
.main .createOrder .published .info-title {
  font-size: 25px;
  line-height: 28px;
  font-weight: 700;
  margin-top: 20px;
}
.main .createOrder .published .info-title span {
  color: #f2553c;
}
.main .createOrder .published .info-text {
  font-size: 13px;
  line-height: 25px;
  margin-top: 15px;
}
.main .createOrder .published .info-text a {
  border-radius: 12px;
  background: rgba(217, 217, 217, 0.1882352941);
  padding: 3px 8px;
  line-height: 13px;
  font-weight: 600;
}
.main .createOrder .published .info-text a:hover {
  background: rgba(242, 85, 60, 0.1019607843);
  color: #f2553c;
}
.main .createOrder .published .info .find-link {
  width: 235px;
  height: 55px;
  border-radius: 12px;
  background: #f2553c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  transition: 0.3s all;
}
.main .createOrder .published .info .find-link svg {
  margin-left: 10px;
}
.main .createOrder .published .info .find-link:hover {
  transform: scale(1.05);
}
.main .help-box {
  width: 100%;
  margin-right: 30px;
}
.main .help-top .archive-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 17px;
  font-weight: 600;
  color: #d4d4d4;
  white-space: nowrap;
  transition: none;
}
.main .help-top .archive-btn svg {
  margin-right: 6px;
}
.main .help-top .archive-btn:hover {
  color: #272727;
}
.main .help-top .archive-btn:hover svg path {
  fill: #272727;
}
.main .help-item {
  width: 96%;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-top: 30px;
  position: relative;
}
.main .help-item .item-head {
  padding: 30px;
}
.main .help-item .item-head .head-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-right: 10px;
}
.main .help-item .item-head .head-data {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.3;
}
.main .help-item .item-head .status-info {
  margin-top: 15px;
}
.main .help-item .item-head .status-info span {
  font-size: 13px;
  font-weight: 500;
  color: #b5b5b5;
  display: inline-block;
  margin-right: 10px;
}
.main .help-item .item-head .status-info .status {
  padding: 8.5px 11px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  background: #fff4f2;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #664640;
  white-space: nowrap;
}
.main .help-item .item-head .status-info .status::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f2553c;
  margin-right: 7px;
}
.main .help-item .item-head .status-info .new {
  background: #f2553c;
  color: #fff;
}
.main .help-item .item-head .status-info .new::before {
  background: #fff;
}
.main .help-item .item-head .status-info .progress {
  background: #FFF4F2;
  color: #664640;
}
.main .help-item .item-head .status-info .progress::before {
  background: #664640;
}
.main .help-item .item-head .status-info .start {
  background: #3BCA44;
  color: #fff;
}
.main .help-item .item-head .status-info .start::before {
  background: #fff;
}
.main .help-item .item-head .status-data {
  margin-top: 15px;
  margin-left: 12px;
}
.main .help-item .item-head .status-data span {
  font-size: 13px;
  font-weight: 500;
  color: #b5b5b5;
  display: inline-block;
  margin-right: 10px;
}
.main .help-item .item-head .status-data .data {
  padding: 8.5px 11px;
  border-radius: 50px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #2F2F2F;
  background: #f5f5f5;
  white-space: nowrap;
}
.main .help-item .item-body {
  display: none;
  border-top: 1px solid #F2F2F2;
}
.main .help-item .arrow-btn {
  position: absolute;
  top: 44px;
  right: 44px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}
.main .help-item .arrow-btn:hover {
  background: #f3f3f3;
}
.main .help-item .arrow-btn:hover svg path {
  opacity: 1;
}
.main .help-item input.arrow {
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 134px;
  cursor: pointer;
  appearance: none;
}
.main .help-item input.arrow:checked ~ .arrow-btn svg {
  transform: rotate(180deg);
}
.main .help-item input.arrow:checked ~ .item-body {
  display: block;
}
.main .help .checked {
  background: #2f2f2f;
  color: #fff;
}
.main .help .checked::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #2F2F2F;
}
.main .help-base {
  width: 370px;
  background: #fdf3f1;
  padding: 27px 30px 30px;
  border-radius: 20px;
}
.main .help-base .base-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #696261;
}
.main .help-base .base-title img {
  margin-right: 10px;
}
.main .help-base .base-list {
  min-width: 338px;
  margin: 20px 0;
}
.main .help-base .base-list li {
  margin-bottom: 5px;
}
.main .help-base .base-list li:last-child {
  margin-bottom: 0;
}
.main .help-base .base-list li a {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #696261;
  padding: 6px 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  transition: 0.3s linear;
}
.main .help-base .base-list li a::after {
  content: url(../img/svg/right.svg);
  display: none;
}
.main .help-base .base-list li:hover a {
  background: #f7e9e7;
}
.main .help-base .base-list li:hover a::after {
  display: block;
}
.main .help-base .more-link {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #f2553c;
  display: flex;
  align-items: center;
  opacity: 0.4;
  transition: 0.3s linear;
}
.main .help-base .more-link svg {
  margin-left: 7px;
}
.main .help-base .more-link:hover {
  opacity: 1;
}
.main .help .chat-body {
  height: auto;
  height: 364px;
}
.main .help .chat-body .chat-list {
  max-height: 290px;
}
.main .help .chat-block {
  opacity: 0;
}
.main .help .chat-block .chat-body .chat-list .chat-item {
  max-width: 100%;
}
.main .help .chat-block .order-chat {
  min-width: 370px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}
.main .help .chat-block .order-chat .chat-head .status {
  font-size: 13px;
  font-weight: 700;
  margin-left: 15px;
}
.main .help .chat-block .order-chat .chat-head .status.executor {
  color: #f2553c;
}
.main .help .chat-block .order-chat .chat-head .status.customer {
  color: #35B33C;
}
.main .help .chat-block .close-ticket {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 79, 79, 0.2509803922);
  display: flex;
  align-items: center;
  margin-top: 20px;
  cursor: pointer;
}
.main .help .chat-block .close-ticket svg {
  margin-right: 5px;
}
.main .help .chat-block .close-ticket:hover {
  color: #ff4f4f;
}
.main .help .chat-block .close-ticket:hover svg g {
  opacity: 1;
}
.main .help .chat-block .read-label {
  margin-top: 20px;
  cursor: pointer;
}
.main .help .chat-block .read-label input {
  display: none;
}
.main .help .chat-block .read-label span {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: rgba(97, 97, 97, 0.2509803922);
  display: flex;
  align-items: center;
}
.main .help .chat-block .read-label span::before {
  content: url(../img/svg/no-check.svg);
  margin-right: 5px;
}
.main .help .chat-block .read-label input:checked ~ span {
  color: #616161;
}
.main .help .chat-block .read-label input:checked ~ span::before {
  content: url(../img/svg/check1.svg);
}
.main .help .chat-block .exam-over {
  padding: 20px;
  border-radius: 20px;
  background: #37bc3f;
  margin-bottom: 20px;
}
.main .help .chat-block .exam-over .title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.main .help .chat-block .exam-over button {
  width: 48%;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.main .help .chat-block .exam-over button svg {
  margin-right: 10px;
}
.main .help .chat-block .exam-over .approve-btn {
  color: #269b2d;
}
.main .help .chat-block .exam-over .reject-btn {
  color: #FF4F4F;
}
.main .help .showChat {
  opacity: 1;
}
.main .help_exam .help-box {
  margin-bottom: 70px;
}
.main .chat-page {
  margin-top: -25px;
  padding-bottom: 0;
}
.main .chat-page .chat-title {
  font-size: 25px;
  font-weight: 700;
  margin: 20px 0;
  display: none;
}
.main .chat-page .backBtn {
  width: 30px;
  height: 30px;
  display: none;
  align-items: center;
}
.main .chat-page .chat-users {
  min-width: 290px;
  overflow: hidden;
  padding: 0 5px 0 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-right: 30px;
}
.main .chat-page .chat-users::before {
  content: url(../img/png/shadow3.png);
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
}
.main .chat-page .chat-users .user-list {
  min-width: 270px;
  height: 82vh;
  padding-right: 5px;
  overflow-y: scroll;
}
.main .chat-page .chat-users .user-list::-webkit-scrollbar {
  width: 3px;
  border-radius: 10px;
  background: rgba(217, 217, 217, 0.1254901961);
}
.main .chat-page .chat-users .user-list::-webkit-scrollbar-thumb {
  width: 3px;
  border-radius: 10px;
  background: #D9D9D9;
  cursor: pointer;
}
.main .chat-page .chat-users .user-list::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}
.main .chat-page .chat-users .user-list .user {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s linear;
  cursor: pointer;
  color: #2f2f2f;
}
.main .chat-page .chat-users .user-list .user:first-child {
  margin-top: 10px;
}
.main .chat-page .chat-users .user-list .user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.main .chat-page .chat-users .user-list .user-name {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  margin-right: 6px;
}
.main .chat-page .chat-users .user-list .user-text {
  margin-top: 7px;
  font-size: 11px;
  line-height: 13px;
  font-weight: 500;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .chat-page .chat-users .user-list .user:hover {
  background: rgba(242, 85, 60, 0.0509803922);
}
.main .chat-page .chat-users .user-list .read_chat .user-text {
  color: #2f2f2f;
  opacity: 0.4;
}
.main .chat-page .chat-users .user-list .userCheck {
  background: #f2553c;
  color: #fff;
}
.main .chat-page .chat-users .user-list .userCheck .user-rating svg.ok path {
  fill: #fff;
}
.main .chat-page .chat-users .user-list .userCheck .user-text {
  opacity: 0.4;
}
.main .chat-page .chat-users .user-list .userCheck:hover {
  background: #f2553c;
  color: #fff;
}
.main .chat-page .empty-fields {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 11px;
  line-height: 17px;
}
.main .chat-page .empty-fields strong {
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
  opacity: 0.5;
}
.main .chat-page .empty-fields p {
  opacity: 0.5;
}
.main .chat-page .empty-fields p a {
  text-decoration: underline;
}
.main .chat-page .empty-fields p a:hover {
  color: #f2553c;
}
.main .chat-page .chat-box {
  width: 100%;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .chat-page .chat-box .chat-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.main .chat-page .chat-box .chat-head {
  border-radius: 20px 20px 0 0;
}
.main .chat-page .chat-box .chat-head .user {
  display: flex;
  align-items: center;
  padding: 15px;
  padding: 0;
  background: none;
}
.main .chat-page .chat-box .chat-head .user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.main .chat-page .chat-box .chat-head .user-name {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  margin-right: 6px;
}
.main .chat-page .chat-box .chat-head .user-link {
  margin-top: 5px;
  font-size: 9px;
  line-height: 9px;
  font-weight: 600;
  color: #f2553c;
  opacity: 0.5;
}
.main .chat-page .chat-box .chat-head .user-link:hover {
  opacity: 1;
}
.main .chat-page .chat-box .chat-head .user:hover .user-name {
  color: #272727;
}
.main .chat-page .chat-box .chat-head .offerOrder-btn {
  width: 135px;
  height: 35px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 85, 60, 0.0509803922);
  color: rgba(242, 85, 60, 0.3764705882);
  transition: 0.3s linear;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  margin-right: 20px;
}
.main .chat-page .chat-box .chat-head .offerOrder-btn:hover {
  background: rgba(242, 85, 60, 0.1019607843);
  color: #f2553c;
}
.main .chat-page .chat-box .chat-head .chat-menu {
  position: relative;
}
.main .chat-page .chat-box .chat-head .chat-menu .menu-btn, .main .chat-page .chat-box .chat-head .chat-menu .menu-btn-2 {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 0.2;
  transition: 0.3s linear;
  cursor: pointer;
}
.main .chat-page .chat-box .chat-head .chat-menu .menu-info {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  padding-top: 8px;
  display: none;
}
.main .chat-page .chat-box .chat-head .chat-menu .menu-list {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: relative;
}
.main .chat-page .chat-box .chat-head .chat-menu .menu-list::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 50%;
  transform: translateX(50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: #fff;
}
.main .chat-page .chat-box .chat-head .chat-menu .menu-list li a {
  font-size: 11px;
  font-weight: 600;
  color: #a4a4a4;
  padding: 6px 15px;
  display: block;
  white-space: nowrap;
}
.main .chat-page .chat-box .chat-head .chat-menu .menu-list li a:hover {
  background: rgba(242, 85, 60, 0.1019607843);
  color: #272727;
}
.main .chat-page .chat-box .chat-head .chat-menu .menu-list li:last-child a:hover {
  color: #f2553c;
}
.main .chat-page .chat-box .chat-head .chat-menu .menu-list .offerOrder-btn {
  display: none;
  background: transparent;
  margin: 0;
  height: auto;
}
.main .chat-page .chat-box .chat-head .chat-menu:hover .menu-btn, .main .chat-page .chat-box .chat-head .chat-menu:hover .menu-btn-2 {
  background: #F6F6F6;
  opacity: 1;
}
.main .chat-page .chat-box .chat-head .chat-menu:hover .menu-info {
  display: block;
}
.main .chat-page .chat-box .chat-body {
  height: auto;
}
.main .chat-page .chat-box .chat-body .chat {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.main .chat-page .chat-box .chat-body .chat-list {
  max-height: 68vh;
  margin: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.main .profile-settings .select-mob {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: #fff;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  display: none;
}
.main .profile-settings .input-box {
  width: 100%;
  margin-bottom: 20px;
}
.main .profile-settings .input-box label {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 10px;
  display: inline-block;
}
.main .profile-settings .input-box .form-inp {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
}
.main .profile-settings .input-box .form-inp::placeholder {
  opacity: 0.3;
}
.main .profile-settings .input-box .form-inp:focus {
  border-color: #f2553c;
}
.main .profile-settings .input-box .error {
  border-color: red;
}
.main .profile-settings .submit-btn {
  width: 230px;
  height: 55px;
  border-radius: 15px;
  background: #F2553C;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: #fff;
  transition: 0.3s linear;
  box-shadow: 0px 7px 50px 0px rgba(242, 85, 60, 0.4);
}
.main .profile-settings .submit-btn:hover {
  transform: scale(1.05);
}
.main .profile-settings .tab-btns {
  width: 370px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-top: 30px;
  margin-right: 30px;
}
.main .profile-settings .tab-btns .tab-btn {
  min-width: 310px;
  cursor: pointer;
  margin-bottom: 10px;
}
.main .profile-settings .tab-btns .tab-btn:last-child {
  margin-bottom: 0;
}
.main .profile-settings .tab-btns .tab-btn input {
  display: none;
}
.main .profile-settings .tab-btns .tab-btn span {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 13px;
  font-weight: 600;
  padding: 0 20px;
  opacity: 0.3;
}
.main .profile-settings .tab-btns .tab-btn input:checked ~ span {
  opacity: 1;
  background: #f7f7f7;
}
.main .profile-settings .tab-box {
  width: 100%;
}
.main .profile-settings .tab-box .tab-item {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-top: 30px;
}
.main .profile-settings .tab-box .general-settings {
  display: flex;
}
.main .profile-settings .tab-box .general-settings .left {
  width: 220px;
  margin-right: 30px;
}
.main .profile-settings .tab-box .general-settings .left .avatar {
  min-width: 220px;
  height: 220px;
  overflow: hidden;
  background-image: url(../img/svg/user-box.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.main .profile-settings .tab-box .general-settings .left .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.main .profile-settings .tab-box .general-settings .left .btns label {
  width: 49%;
  cursor: pointer;
  margin-top: 15px;
}
.main .profile-settings .tab-box .general-settings .left .btns label input {
  display: none;
}
.main .profile-settings .tab-box .general-settings .left .btns label span {
  width: 100%;
  height: 30px;
  border-radius: 12px;
  background: #F7F7F7;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  color: rgba(92, 92, 92, 0.3764705882);
  background: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .profile-settings .tab-box .general-settings .left .btns label span:hover {
  color: #5c5c5c;
}
.main .profile-settings .tab-box .general-settings .left .btns .remove-avatar {
  width: 48%;
  height: 30px;
  margin-top: 15px;
  border-radius: 12px;
  background: #F7F7F7;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  color: rgba(255, 79, 79, 0.3137254902);
  background: rgba(255, 79, 79, 0.0509803922);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main .profile-settings .tab-box .general-settings .left .btns .remove-avatar:hover {
  color: #FF4F4F;
  background: rgba(255, 79, 79, 0.2);
}
.main .profile-settings .tab-box .general-settings .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.main .profile-settings .tab-box .general-settings .hideBtn {
  opacity: 0.5;
  pointer-events: none;
}
.main .profile-settings .tab-box .notification {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.main .profile-settings .tab-box .notification .socials {
  width: 100%;
}
.main .profile-settings .tab-box .notification .socials .socials-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.main .profile-settings .tab-box .notification .socials .socials-item:last-child {
  margin-bottom: 0;
}
.main .profile-settings .tab-box .notification .socials .socials-item .social-name {
  font-size: 14px;
  font-weight: 600;
  width: 90px;
}
.main .profile-settings .tab-box .notification .socials .socials-item label {
  display: flex;
  align-items: center;
}
.main .profile-settings .tab-box .notification .socials .socials-item label .btn {
  padding: 8px 15px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  cursor: pointer;
}
.main .profile-settings .tab-box .notification .socials .socials-item label .btn::before {
  content: "Подключить";
  font-size: 13px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.1882352941);
}
.main .profile-settings .tab-box .notification .socials .socials-item label .btn::after {
  content: url(../img/svg/check4.svg);
  margin-left: 8px;
  display: none;
}
.main .profile-settings .tab-box .notification .socials .socials-item label .clear {
  font-size: 13px;
  font-weight: 600;
  color: #f2553c;
  opacity: 0.3;
  display: none;
  cursor: pointer;
}
.main .profile-settings .tab-box .notification .socials .socials-item label input {
  display: none;
}
.main .profile-settings .tab-box .notification .socials .socials-item label input:checked ~ .btn {
  background: #f2553c;
}
.main .profile-settings .tab-box .notification .socials .socials-item label input:checked ~ .btn::before {
  content: "Подключено";
  color: #fff;
}
.main .profile-settings .tab-box .notification .socials .socials-item label input:checked ~ .btn::after {
  display: block;
}
.main .profile-settings .tab-box .notification .socials .socials-item label input:checked ~ .clear {
  display: block;
}
.main .profile-settings .tab-box .notification .submit-btn {
  margin-top: 65px;
}
.main .profile-settings .tab-box .safety-form .safety-item .item-title {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  margin-bottom: 10px;
}
.main .profile-settings .tab-box .safety-form .safety-item .input-box {
  margin-right: 15px;
  margin-bottom: 0;
  width: auto;
}
.main .profile-settings .tab-box .safety-form .safety-item .input-box .form-inp {
  font-size: 13px;
  padding: 20px;
}
.main .profile-settings .tab-box .safety-form .safety-item #new-phone {
  width: 160px;
}
.main .profile-settings .tab-box .safety-form .safety-item #sms-code {
  width: 120px;
}
.main .profile-settings .tab-box .safety-form .safety-item .saved, .main .profile-settings .tab-box .safety-form .safety-item .save-btn {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main .profile-settings .tab-box .safety-form .safety-item .save-btn {
  width: auto;
  padding: 0 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.main .profile-settings .tab-box .safety-form .safety-item .save-btn .next {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(10px);
}
.main .profile-settings .tab-box .safety-form .safety-item .info-saved {
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  margin-left: 7px;
}
.main .profile-settings .tab-box .safety-form .safety {
  margin-bottom: 30px;
}
.main .profile-settings .tab-box .safety-form .safety:last-child .input-box {
  width: 23%;
}
.main .profile-settings .tab-box .safety-form .socials {
  margin-bottom: 40px;
}
.main .profile-settings .tab-box .safety-form .socials-title {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
}
.main .profile-settings .tab-box .safety-form .socials .social {
  cursor: pointer;
  margin: 10px 15px 0 0;
}
.main .profile-settings .tab-box .safety-form .socials .social span {
  padding: 8px 15px;
  background: #fff;
  border-radius: 12px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.1882352941);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
}
.main .profile-settings .tab-box .safety-form .socials .social input:checked ~ span {
  background: #f2553c;
  color: #fff;
}
.main .profile-settings .tab-box .status-form .select-status {
  margin-bottom: 10px;
}
.main .profile-settings .tab-box .status-form .select-status .title {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  color: #2f2f2f;
}
.main .profile-settings .tab-box .status-form .select-status .status {
  cursor: pointer;
  margin: 10px 15px 0 0;
}
.main .profile-settings .tab-box .status-form .select-status .status span {
  padding: 0 15px;
  height: 35px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  cursor: pointer;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.2509803922);
}
.main .profile-settings .tab-box .status-form .select-status .status span::after {
  content: url(../img/svg/check4.svg);
  margin-left: 8px;
  display: none;
}
.main .profile-settings .tab-box .status-form .select-status .status input {
  display: none;
}
.main .profile-settings .tab-box .status-form .select-status .status input:checked ~ span {
  background: #f2553c;
  color: #fff;
}
.main .profile-settings .tab-box .status-form .select-status .status input:checked ~ span::after {
  display: block;
}
.main .profile-settings .tab-box .status-form .item-form .input-box {
  width: 32%;
  margin-top: 20px;
  margin-right: 2%;
}
.main .profile-settings .tab-box .status-form .item-form .input-box:last-child {
  margin-right: 0;
}
.main .profile-settings .tab-box .status-form .item-form:last-child {
  margin-bottom: 20px;
}
.main .profile-settings .tab-box .status-form .item-form:last-child .input-box {
  width: 49%;
}
.main .page-head {
  font-size: 12px;
  font-weight: 600;
  color: #d8d8d8;
}
.main .page-head svg {
  margin-right: 7px;
}
.main .page-head a:hover {
  color: #272727;
}
.main .page-head a:hover svg path {
  stroke: #272727;
}
.main .backTo-page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 70px;
  font-size: 12px;
  font-weight: 600;
  color: #d8d8d8;
}
.main .backTo-page svg {
  margin-right: 7px;
}
.main .backTo-page:hover {
  color: #272727;
}
.main .backTo-page:hover svg path {
  stroke: #272727;
}
.main .order-page .order-info {
  margin-top: 20px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
}
.main .order-page .order-info .left {
  width: 45%;
  padding-right: 30px;
}
.main .order-page .order-info .left .data {
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  color: rgba(39, 39, 39, 0.2509803922);
}
.main .order-page .order-info .left .order-name {
  font-size: 25px;
  line-height: 37px;
  font-weight: 600;
  margin-top: 10px;
}
.main .order-page .order-info .right {
  width: 55%;
  padding-left: 30px;
  border-left: 1px solid #F2F2F2;
}
.main .order-page .order-info .right .info-item {
  margin-bottom: 30px;
}
.main .order-page .order-info .right .info-item:last-child {
  margin-bottom: 0;
}
.main .order-page .order-info .right .info-item .item-title {
  font-size: 14px;
  line-height: 21px;
}
.main .order-page .order-info .right .info-item .item-title svg {
  margin-right: 8px;
}
.main .order-page .order-info .right .info-item .item-text {
  font-size: 13px;
  line-height: 25px;
  color: #2f2f2f;
  margin-top: 20px;
}
.main .order-page .order-info .right .info-item .item-downloads {
  display: flex;
  flex-wrap: wrap;
}
.main .order-page .order-info .right .info-item .item-downloads a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 12px;
  padding: 0 15px;
  background: #fffaf9;
  font-size: 13px;
  font-weight: 600;
  color: #524745;
  margin: 15px 15px 0 0;
}
.main .order-page .order-info .right .info-item .item-downloads a::after {
  content: url(../img/svg/download1.svg);
  margin-left: 10px;
}
.main .order-page .order-info .right .info-item .item-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 15px;
  margin-top: 15px;
}
.main .order-page .order-info .right .info-item .item-links a:first-child {
  margin-top: 20px;
}
.main .order-page .order-info .right .info-item .item-links a span {
  font-size: 13px;
  font-weight: 600;
  color: #3d3d3d;
  opacity: 0.5;
}
.main .order-page .order-info .right .info-item .item-links a:hover span {
  opacity: 1;
}
.main .order-page .order-info .right .info-item .item-links a:hover svg path {
  stroke: #272727;
}
.main .order-page .order-info .right .info-item .item-address {
  font-size: 13px;
  line-height: 23px;
  font-weight: 600;
  margin-top: 15px;
}
.main .order-page .order-info .right .info-item .item-address span {
  font-size: 12px;
  font-weight: 500;
  line-height: 23px;
  color: #f2553c;
}
.main .order-page .order-info .right .info-item .job-list li {
  padding: 6px 15px;
  border-radius: 12px;
  background: #f8f8f8;
  font-size: 13px;
  line-height: 23px;
  font-weight: 600;
  margin: 15px 15px 0 0;
}
.main .order-page .order-info .right .info-item .dop-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  margin: 15px 15px 0 0;
  white-space: nowrap;
}
.main .order-page .order-info .right .info-item .dop-list li img {
  width: 15px;
  margin-right: 8px;
}
.main .order-page .order-cards .card-title {
  font-size: 25px;
  line-height: 31px;
  font-weight: 600;
}
.main .order-page .order-cards .card-terms {
  width: 49%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  background: #2F2F2F;
  color: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 20px;
  margin-top: 30px;
}
.main .order-page .order-cards .card-terms .orders {
  width: auto;
  box-shadow: none;
  border-radius: 0;
  background: none;
}
.main .order-page .order-cards .card-terms .orders .right-info {
  width: 100%;
  padding: 0;
  background: none;
}
.main .order-page .order-cards .card-terms .orders .right-info .item:first-child {
  margin-top: 0;
}
.main .order-page .order-cards .card-terms .orders .right-info .item-name {
  color: #aeaeae;
  width: 100px;
  margin-right: 0;
}
.main .order-page .order-cards .card-terms .orders .right-info .item .item-term {
  background: #393939;
  color: #fff;
}
.main .order-page .order-cards .card-terms .orders .right-info .item-info {
  background: #393939;
  color: #fff;
}
.main .order-page .order-cards .card-terms .orders .right-info .item-info .sum {
  font-size: 12px;
  color: #f2553c;
  margin-left: 10px;
}
.main .order-page .order-cards .card-project {
  width: 49%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #F2553C;
  color: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 20px;
  margin-top: 30px;
}
.main .order-page .order-cards .card-project .responses {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 20px;
}
.main .order-page .order-cards .card-project .responses .info-text {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  margin-right: 10px;
}
.main .order-page .order-cards .card-project .responses .response-box {
  position: relative;
}
.main .order-page .order-cards .card-project .responses .response-box .response-head {
  display: flex;
  align-items: center;
  padding: 4px 4px 4px 9px;
  border-radius: 20px;
  background: #fff;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #272727;
  cursor: pointer;
  white-space: nowrap;
}
.main .order-page .order-cards .card-project .responses .response-box .response-head svg {
  margin-left: 9px;
}
.main .order-page .order-cards .card-project .responses .response-box .response-info {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 3;
}
.main .order-page .order-cards .card-project .responses .response-box .response-info .info {
  width: 150px;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  margin-top: 9px;
  font-size: 10px;
  line-height: 15px;
  color: #272727;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.main .order-page .order-cards .card-project .responses .response-box .response-info .info::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}
.main .order-page .order-cards .card-project .responses .response-box .response-info .info a {
  color: #f2553c;
  text-decoration: underline;
}
.main .order-page .order-cards .card-project .responses .response-box:hover .response-head svg rect {
  fill: #f2553c;
}
.main .order-page .order-cards .card-project .responses .response-box:hover .response-head svg path {
  fill: #fff;
}
.main .order-page .order-cards .card-project .responses .response-box:hover .response-info {
  display: block;
}
.main .order-page .order-cards .card-project .responses .response-head span {
  font-weight: 600;
  color: #ff4f4f;
}
.main .order-page .order-cards .card-project .responses .response-info {
  width: 178px;
}
.main .order-page .order-cards .card-project .responses .response-info p {
  font-size: 10px;
}
.main .order-page .order-cards .card-project .responses .response-info .complete__link, .main .order-page .order-cards .card-project .responses .response-info .buy-more__btn {
  width: 100%;
  height: 30px;
  border-radius: 7px;
  background: rgba(242, 85, 60, 0.1);
  font-size: 10px;
  font-weight: 600;
  color: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  margin-top: 7px;
}
.main .order-page .order-cards .card-project .responses .response-info .buy-more__btn {
  margin-top: 5px;
  background: #F7F7F7;
  color: rgba(47, 47, 47, 0.5);
}
.main .order-page .order-cards .card-project .responses .response-info .buy-more__btn:hover {
  color: #2f2f2f;
}
.main .order-page .order-cards .card-project .btns .message-btn {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #f96f59;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.main .order-page .order-cards .card-project .btns .message-btn:hover svg path {
  fill: #fff;
}
.main .order-page .order-cards .card-project .btns button {
  width: 178px;
  height: 45px;
  border-radius: 12px;
  background: #f96f59;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-top: 15px;
  transition: 0.3s linear;
}
.main .order-page .order-cards .card-project .btns button svg {
  margin-right: 5px;
}
.main .order-page .order-cards .card-project .btns .change-terms_btn {
  margin: 15px 15px 0 15px;
  color: #ffcec6;
}
.main .order-page .order-cards .card-project .btns .change-terms_btn:hover {
  color: #fff;
}
.main .order-page .order-cards .card-project .btns .reply_btn {
  background: #fff;
  color: #272727;
}
.main .order-page .order-cards .card-project .btns .reply_btn:hover {
  transform: scale(1.1);
}
.main .order-page .order-cards .card-project .btns .clocked {
  position: relative;
}
.main .order-page .order-cards .card-project .btns .clocked button {
  pointer-events: none;
}
.main .order-page .order-cards .card-project .btns .clocked .clocked-info {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 3;
}
.main .order-page .order-cards .card-project .btns .clocked .clocked-info .info {
  width: 180px;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  margin-top: 9px;
  font-size: 10px;
  line-height: 15px;
  color: #272727;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.main .order-page .order-cards .card-project .btns .clocked .clocked-info .info::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}
.main .order-page .order-cards .card-project .btns .clocked .clocked-info .info a {
  color: #f2553c;
  text-decoration: underline;
}
.main .order-page .order-cards .card-project .btns .clocked:hover .clocked-info {
  display: block;
}
.main .customer-info-page .info-box {
  min-height: 50vh;
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.main .customer-info-page .info-box .info-title {
  font-size: 25px;
  line-height: 37px;
  font-weight: 600;
  margin: 15px 0;
}
.main .customer-info-page .info-box .backTo-page {
  margin: 0;
}
.main .education .select-mob {
  display: none;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  height: 40px;
}
.main .education .education-btn {
  cursor: pointer;
}
.main .education .education-btn input {
  display: none;
}
.main .education .education-btn .title-text {
  opacity: 0.2;
}
.main .education .education-btn input:checked ~ .title-text {
  opacity: 1;
}
.main .education .education-item {
  margin-top: 30px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px;
}
.main .education .education-item .item-left {
  width: 55%;
}
.main .education .education-item .item-left .item-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.main .education .education-item .item-left .item-text {
  font-size: 12px;
  line-height: 21px;
  font-weight: 400;
  margin: 10px 0 20px;
  color: #494d51;
}
.main .education .education-item .item-left .item-info {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(59, 202, 68, 0.1019607843);
  padding: 10px 10px 10px 20px;
}
.main .education .education-item .item-left .item-info .info {
  margin-right: 30px;
  white-space: nowrap;
}
.main .education .education-item .item-left .item-info .info-title {
  font-size: 12px;
  font-weight: 600;
  color: #a6cca8;
}
.main .education .education-item .item-left .item-info .info-price {
  font-size: 18px;
  font-weight: 700;
  color: #22a22a;
  margin-top: 3px;
}
.main .education .education-item .item-left .item-info .price-btn {
  width: 160px;
  height: 50px;
  border-radius: 12px;
  background: #3bca44;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.main .education .education-item .item-left .item-info .price-btn svg {
  margin-left: 15px;
}
.main .education .education-item .item-left .blocked {
  background: rgba(198, 198, 198, 0.1019607843);
  pointer-events: none;
}
.main .education .education-item .item-left .blocked .info-title {
  color: #c6c6c6;
}
.main .education .education-item .item-left .blocked .info-price {
  color: #999;
}
.main .education .education-item .item-left .blocked .info:nth-child(2) .info-price {
  font-size: 15px;
}
.main .education .education-item .item-left .blocked .price-btn {
  background: #e4e4e4;
  color: #8c8c8c;
}
.main .education .education-item .item-left .blocked .price-btn svg {
  margin-left: 0;
  margin-right: 10px;
}
.main .education .education-item .item-result {
  width: 40%;
  border-radius: 20px;
  background: #fdf6f5;
  padding: 20px;
}
.main .education .education-item .item-result .result-title {
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
}
.main .education .education-item .item-result .stars-title {
  font-size: 12px;
  font-weight: 600;
  color: #dc8534;
  margin: 15px 0;
}
.main .education .education-item .item-result .stars img {
  width: 20px;
  margin-right: 6px;
}
.main .education .education-item .item-result .stars img:last-child {
  margin-right: 0;
}
.main .dopService {
  margin: 110px 0 70px;
}
.main .dopService-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 30px;
}
.main .dopService-box .service {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  background: rgba(242, 85, 60, 0.0509803922);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main .dopService-box .service-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.main .dopService-box .service-text {
  font-size: 12px;
  line-height: 21px;
  margin: 10px 0 30px;
}
.main .dopService-box .service-info {
  border-radius: 20px;
  padding: 20px;
  background: #f8ebe9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.main .dopService-box .service-info .info-title {
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
}
.main .dopService-box .service-info .skill-title {
  font-size: 12px;
  font-weight: 600;
  color: #dc8534;
  margin: 15px 0;
}
.main .dopService-box .service-info .skill-info {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 15px;
  border-radius: 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s linear;
  cursor: default;
}
.main .dopService-box .service-info .skill-info:hover {
  transform: scale(1.1);
}
.main .dopService-box .service-info .skill-info img {
  width: 15px;
  margin-right: 8px;
}
.main .dopService-box .service-info .skill-info svg {
  width: 15px;
  margin-right: 8px;
}
.main .dopService-box .service-info .skill-info svg path {
  fill:#FF4F4F;
}
.main .dopService-box .service-price {
  margin-top: 20px;
  border-radius: 20px;
  padding: 20px;
  background: rgba(59, 202, 68, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.main .dopService-box .service-price .price-name {
  font-size: 12px;
  font-weight: 600;
  color: #a6cca8;
}
.main .dopService-box .service-price .price-info {
  font-size: 18px;
  font-weight: 700;
  color: #22a22a;
  margin: 3px 0 15px;
}
.main .dopService-box .service-price .price-btn {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: #3bca44;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0px 10px 40px 0px rgba(59, 202, 68, 0.4);
}
.main .dopService-box .service-price .price-btn svg {
  margin-left: 15px;
}
.main .dopService-box .service-price .price-btn:hover {
  box-shadow: none;
}
.main .education-in .backTo-page {
  margin: 0;
  width: 136px;
  height: 31px;
  border-radius: 10px;
  background: #f9f8f8;
  font-size: 10px;
  line-height: 10px;
}
.main .education-in .education-item {
  margin-top: 25px;
  padding: 0 !important;
  background: transparent;
  box-shadow: none;
}
.main .education-in .education-item .item-left {
  width: 40%;
}
.main .education-in .education-item .item-left .item-title {
  font-size: 30px;
  line-height: 38px;
}
.main .education-in .education-item .item-left .item-text {
  font-size: 15px;
  line-height: 28px;
  color: #494d51;
  margin: 15px 0 0;
}
.main .education-in .education-item .item-result {
  width: 40%;
}
.main .skill-info-date {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 25px;
  color:#B8AAA8;
}
.main .lesson-video {
  width: 100%;
  height: 613px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: end;
}
.main .lesson-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(47, 47, 47, 0) 50%, rgb(47, 47, 47) 100%);
  z-index: 5;
}
.main .lesson-video .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
  z-index: 2;
}
.main .lesson-video .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main .lesson-video .play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
  cursor: pointer;
}
.main .lesson-video .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.main .lesson-video .play-btn:hover svg path {
  opacity: 1;
}
.main .lesson {
  margin: 50px 0 70px;
}
.main .lesson .lesson-item {
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
}
.main .lesson .lesson-item:last-child {
  margin-bottom: 0;
}
.main .lesson .lesson-item .lesson-head {
  padding: 18px 18px 18px 40px;
  cursor: pointer;
}
.main .lesson .lesson-item .lesson-head .num {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #d9d9d9;
  margin-top: 4px;
}
.main .lesson .lesson-item .lesson-head .lesson-name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin: 0 15px 0 20px;
}
.main .lesson .lesson-item .lesson-head .status {
  padding: 10px;
  border-radius: 7px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  background: rgba(170, 170, 170, 0.1019607843);
  color: #9c9c9c;
  display: flex;
  align-items: center;
}
.main .lesson .lesson-item .lesson-head .status::before {
  content: url(../img/svg/nextUp.svg);
  margin-right: 5px;
}
.main .lesson .lesson-item .lesson-head .status.progress {
  background: rgba(242, 121, 60, 0.1019607843);
  color: #f2793c;
}
.main .lesson .lesson-item .lesson-head .status.progress::before {
  content: url(../img/svg/progress.svg);
}
.main .lesson .lesson-item .lesson-head .status.completed {
  background: rgba(59, 202, 68, 0.1019607843);
  color: #31AF39;
}
.main .lesson .lesson-item .lesson-head .status.completed::before {
  content: url(../img/svg/completed.svg);
}
.main .lesson .lesson-item .lesson-head .icon-arrow {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main .lesson .lesson-item .lesson-head .icon-arrow:hover {
  background: #f2f2f2;
}
.main .lesson .lesson-item .lesson-body {
  padding: 40px;
  border-top: 1px solid #F4F4F4;
  display: none;
}
.main .lesson .lesson-item .lesson-body .showVideo {
  background: rgba(0, 0, 0, 0.4);
}
.main .lesson .lesson-item .lesson-body .showVideo .poster {
  display: none;
}
.main .lesson .lesson-item .lesson-body .showVideo .video {
  z-index: 10;
}
.main .lesson .lesson-item .lesson-body .lesson-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  margin-top: 40px;
}
.main .lesson .lesson-item .lesson-body .lesson-text .text {
  font-size: 15px;
  line-height: 28px;
  color: #494d51;
}
.main .lesson .lesson-item .lesson-body .exam {
  background: rgba(242, 121, 60, 0.1019607843);
  padding: 30px;
  border-radius: 20px;
  min-height: 500px;
}
.main .lesson .lesson-item .lesson-body .exam .countdown, .main .lesson .lesson-item .lesson-body .exam .countdown-title {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  color: #f2553c;
  margin-bottom: 20px;
}
.main .lesson .lesson-item .lesson-body .exam .lesson-text {
  margin: 0;
}
.main .lesson .lesson-item .lesson-body .exam .btn {
  width: 230px;
  height: 55px;
  border-radius: 12px;
  background: #f2553c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0px 7px 50px 0px rgba(242, 85, 60, 0.4);
  transition: 0.3s linear;
}
.main .lesson .lesson-item .lesson-body .exam .btn:hover {
  transform: scale(1.1);
}
.main .lesson .lesson-item .lesson-body .exam .disabled {
  background: #fbe7dc;
  color: #cdb2a2;
  pointer-events: none;
  box-shadow: none;
}
.main .lesson .lesson-item .lesson-body .exam .exam-start {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 100px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-faqs .faqs-box {
  margin-top: 40px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-faqs .exam-slide-pagination {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #d2bbad;
  margin-bottom: 15px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-faq {
  padding: 9px 22px;
  border-radius: 15px;
  background: #2f2f2f;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  display: inline-block;
}
.main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-answer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 15px 0 45px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-answer .answer {
  margin: 20px 20px 0 0;
  position: relative;
}
.main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-answer .answer:last-child {
  margin-right: 0;
}
.main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-answer .answer input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 3;
}
.main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-answer .answer-text {
  width: 179px;
  border-radius: 11px;
  background: #fbece3;
  color: #a28d80;
  padding: 15px 11px;
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
}
.main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-answer .answer input:checked ~ .answer-text {
  background: #fff;
  color: #2f2f2f;
}
.main .lesson .lesson-item .lesson-body .exam .exam-failed .failed {
  margin: 80px 0;
}
.main .lesson .lesson-item .lesson-body .exam .exam-failed .failed-title {
  padding: 9px 26px;
  border-radius: 15px;
  background: #ff4f4f;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.main .lesson .lesson-item .lesson-body .exam .exam-failed .failed-text {
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #494d51;
  margin-top: 23px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-success .success {
  margin: 80px 0;
}
.main .lesson .lesson-item .lesson-body .exam .exam-success .success-title {
  padding: 9px 26px;
  border-radius: 15px;
  background: #3BCA44;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.main .lesson .lesson-item .lesson-body .exam .exam-success .success-text {
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #494d51;
  margin-top: 23px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-success .success .stars {
  margin-top: 15px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-success .success .stars img {
  width: 20px;
  margin-right: 6px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-success .success .stars img:last-child {
  margin-right: 0;
}
.main .lesson .lesson-item .lesson-body .exam .exam-signUp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 400px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-signUp .signUp-title {
  font-size: 25px;
  line-height: 24px;
  font-weight: 700;
}
.main .lesson .lesson-item .lesson-body .exam .exam-signUp .signUp-text {
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #494d51;
  margin: 20px;
}
.main .lesson .lesson-item .lesson-body .exam .exam-signUp .signUp .btn {
  margin: 0;
}
.main .lesson .showLesson .lesson-head .icon-arrow svg {
  transform: rotate(180deg);
}
.main .lesson .showLesson .lesson-body {
  display: block;
}
.main .admin-orders .order-filter {
  border-radius: 50px;
  padding: 12px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  margin-top: 15px;
}
.main .admin-orders .order-filter .select {
  width: auto;
  margin-right: 10px;
}
.main .admin-orders .order-filter .select:last-child {
  margin-right: 0;
}
.main .admin-orders .order-filter .select-head {
  height: 26px;
  padding: 0 10px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  background: rgba(242, 85, 60, 0.0509803922);
}
.main .admin-orders .order-filter .select-head span {
  font-size: 11px;
  font-weight: 600;
  margin-right: 5px;
  color: #836E6C;
}
.main .admin-orders .order-filter .select .options {
  top: 120%;
  background: #fff;
  border-radius: 7px;
  z-index: 10;
  min-width: auto;
}
.main .admin-orders .order-filter .select .options li {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #272727;
  opacity: 0.4;
  cursor: pointer;
}
.main .admin-orders .order-filter .select .options li:hover {
  color: #f2553c;
  opacity: 1;
}
.main .admin-orders .order-filter .search {
  position: relative;
  margin-right: 10px;
}
.main .admin-orders .order-filter .search .search-inp {
  width: 160px;
  height: 26px;
  border-radius: 7px;
  background: rgba(113, 113, 113, 0.0509803922);
  font-size: 11px;
  font-weight: 500;
  color: #2f2f2f;
  padding: 0 10px 0 25px;
}
.main .admin-orders .order-filter .search .search-inp::placeholder {
  color: #BBBBBB;
}
.main .admin-orders .order-filter .search svg {
  position: absolute;
  top: 8px;
  left: 8px;
  transition: 0.3s linear;
}
.main .admin-orders .order-filter .filter-radio {
  cursor: pointer;
  margin-right: 10px;
}
.main .admin-orders .order-filter .filter-radio span {
  border-radius: 7px;
  background: rgba(242, 85, 60, 0.0509803922);
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #836e6c;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .admin-orders .order-filter .filter-radio span::before {
  content: url(../img/svg/f-no-check.svg);
  margin-right: 5px;
  width: 8px;
  height: 8px;
}
.main .admin-orders .order-filter .filter-radio input:checked ~ span {
  background: #f2553c;
  color: #fff;
}
.main .admin-orders .order-filter .filter-radio input:checked ~ span::before {
  content: url(../img/svg/f-check.svg);
}
.main .admin-orders .mob-filter {
  cursor: pointer;
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f6f6f6;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  margin-top: 15px;
}
.main .admin-orders .mob-filter::after {
  content: url(../img/svg/arrow-down.svg);
}
.main .admin-orders .orders {
  margin-top: 20px;
}
.main .admin-orders .orders .info-top .avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 10px;
}
.main .admin-orders .orders .info-top .name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-right: 10px;
}
.main .admin-orders .orders .info-top .status {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  margin-right: 10px;
}
.main .admin-orders .orders .info-top .executor {
  background: rgba(242, 85, 60, 0.1019607843);
  color: #f2553c;
}
.main .admin-orders .orders .info-top .customer {
  background: rgba(59, 202, 68, 0.1019607843);
  color: #2FB436;
}
.main .admin-orders .orders .info-top .manager {
  background: rgba(164, 164, 164, 0.1019607843);
  color: #2F2F2F;
}
.main .admin-orders .orders .info-top .likes {
  height: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  color: #898989;
  padding: 0 8px;
  background: rgba(0, 0, 0, 0.0509803922);
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-right: 10px;
}
.main .admin-orders .orders .info-top .likes img {
  width: 9px;
  margin-right: 4px;
}
.main .admin-orders .orders .info-top .stars img {
  width: 15px;
}
.main .admin-orders .orders .item {
  margin: 15px 20px 0 0;
}
.main .admin-orders .orders .item:last-child {
  margin-right: 0;
}
.main .admin-orders .orders .item-name {
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  color: #B5B5B5;
  margin-right: 8px;
  display: inline-block;
}
.main .admin-orders .orders .item-info {
  background: #F5F5F5;
  border-radius: 20px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
}
.main .admin-orders .orders .item-info img {
  margin-right: 5px;
}
.main .admin-orders .orders .item-info .avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
}
.main .admin-orders .orders .item-info span {
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  color: #b2b2b2;
  display: inline-block;
  margin-left: 5px;
}
.main .admin-orders .orders .item .stories {
  background: rgba(193, 80, 139, 0.1019607843);
  height: 30px;
}
.main .admin-orders .orders .item .stories img {
  margin-right: 5px;
}
.main .admin-orders .orders .item .stories span {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
  margin: 0;
}
.main .admin-orders .orders .item .socials {
  margin-left: 8px;
}
.main .admin-orders .orders .item .socials img:first-child {
  margin-right: -10px;
}
.main .admin-orders .orders .item-term {
  background: #F9EDEB;
  border-radius: 20px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #9A7C77;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
}
.main .admin-orders .orders .item .zero {
  background: #ff4f4f;
  color: #fff;
}
.main .admin-orders .orders .item .service .item-info:first-child {
  margin-bottom: 10px;
}
.main .admin-orders .orders .item .item-text {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #c5b6b3;
  margin-left: 10px;
}
.main .admin-orders .orders .left-info {
  width: 75%;
  border-right: 1px solid #F6F6F6;
}
.main .admin-orders .orders .left-info .status {
  margin: 0 20px 0 0;
}
.main .admin-orders .orders .left-info .info-medium {
  margin: 0;
}
.main .admin-orders .orders .btn-info {
  width: 25%;
  height: 100%;
}
.main .admin-orders .orders .btn-info .open-order, .main .admin-orders .orders .btn-info .open-settings {
  width: 206px;
  height: 45px;
  border-radius: 12px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9e9e9e;
  transition: 0.3s linear;
}
.main .admin-orders .orders .btn-info .open-order svg, .main .admin-orders .orders .btn-info .open-settings svg {
  margin-left: 10px;
}
.main .admin-orders .orders .btn-info .open-order:hover, .main .admin-orders .orders .btn-info .open-settings:hover {
  transform: scale(1.1);
}
.main .admin-orders .orders .btn-info .expand-details {
  width: 206px;
  height: 45px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  color: #9e9e9e;
  margin-top: 10px;
  opacity: 0.5;
}
.main .admin-orders .orders .btn-info .expand-details:hover {
  opacity: 1;
}
.main .admin-orders .orders .bottom-item {
  border-top: 1px solid #F6F6F6;
  padding: 25px 40px 40px;
}
.main .service-settings {
  margin-bottom: 80px;
}
.main .service-settings .change {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  height: 30px;
  cursor: default;
}
.main .service-settings .change input {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  background: transparent;
  color: #333;
  opacity: 1;
  pointer-events: none;
  position: relative;
  z-index: 2;
  max-width: 270px;
}
.main .service-settings .change textarea {
  max-width: 270px;
  background: transparent;
  font-size: 12px;
  line-height: 19px;
  font-weight: 400;
  resize: none;
  height: auto;
  border-radius: 0;
  color: #333;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.nojsw {
  width: 80%;
}
.main .service-settings .change textarea::-webkit-scrollbar {
  display: none;
}
.main .service-settings .change .change-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left:10px;
}
.main .service-settings .change .change-btn::after {
  content: url(../img/svg/pen2.svg);
  position: relative;
  z-index: 2;
  opacity: 0.3;
}
.main .service-settings .change .change-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #F4F4F4;
}
.main .service-settings .change:hover .change-btn::after {
  opacity: 1;
}
.main .service-settings .change:hover .change-btn::before {
  display: block;
}
.main .service-settings .changeClick input, .main .service-settings .changeClick textarea {
  pointer-events: all;
}
.main .service-settings .changeClick .change-btn {
  cursor: pointer;
}
.main .service-settings .changeClick .change-btn::after {
  content: url(../img/svg/check1.svg);
  opacity: 1;
  transform: translateY(2px);
}
.main .service-settings .changeClick .change-btn::before {
  display: block;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.main .service-settings .textarea {
  margin-top: 12px;
}
.main .service-settings .textarea .change-btn::before {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}
.main .service-settings .setting-tabs {
  width: 32%;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-top: 30px;
}
.main .service-settings .setting-tabs .setting-tab {
  min-width: 310px;
  margin-bottom: 10px;
  white-space: nowrap;
  display: block;
  cursor: pointer;
}
.main .service-settings .setting-tabs .setting-tab:last-child {
  margin-bottom: 0;
}
.main .service-settings .setting-tabs .setting-tab input {
  display: none;
}
.main .service-settings .setting-tabs .setting-tab span {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 15px;
  line-height: 13px;
  font-weight: 600;
  opacity: 0.3;
  display: flex;
  align-items: center;
}
.main .service-settings .setting-tabs .setting-tab input:checked ~ span {
  background: #f7f7f7;
  opacity: 1;
}
.main .service-settings .setting-box {
  width: 66%;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-top: 30px;
}
.main .service-settings .setting-box .save-changes_btn {
  width: 230px;
  height: 55px;
  border-radius: 12px;
  background: #f2553c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0px 7px 50px 0px rgba(242, 85, 60, 0.4);
  margin-top: 20px;
}
.main .service-settings .setting-box .save-changes_btn:hover {
  box-shadow: none;
}
.main .service-settings .setting-box .setting-item .service {
  margin-bottom: 20px;
}
.main .service-settings .setting-box .setting-item .service-head {
  width: 100%;
  height: 60px;
  border-radius: 12px;
  background: rgba(193, 80, 139, 0.1019607843);
  padding: 0 25px;
  cursor: pointer;
}
.main .service-settings .setting-box .setting-item .service-head img {
  margin-right: 8px;
}
.main .service-settings .setting-box .setting-item .service-head span {
  font-size: 18px;
  line-height: 15px;
  font-weight: 700;
  color: #4d4d4d;
}
.main .service-settings .setting-box .setting-item .service-head .arrow-btn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .service-settings .setting-box .setting-item .service-body {
  display: none;
}
.main .service-settings .setting-box .setting-item .service-body .service-content {
  width: 48%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: start;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-top: 20px;
}
.main .service-settings .setting-box .setting-item .service-body .service-content .quantity {
  font-size: 15px;
  font-weight: 600;
  color: #f2553c;
}
.main .service-settings .setting-box .setting-item .service-body .service-content .quantity input {
  font-size: 15px;
  font-weight: 600;
  color: #f2553c;
}
.main .service-settings .setting-box .setting-item .service-body .service-content .quantity .change-btn::before {
  background: rgba(242, 85, 60, 0.1019607843);
}
.main .service-settings .setting-box .setting-item .service-body .disable {
  background: #f6f6f6;
}
.main .service-settings .setting-box .setting-item .service-body .disable .quantity {
  color: #C6C6C6;
}
.main .service-settings .setting-box .setting-item .service-body .disable .quantity input {
  color: #C6C6C6;
}
.main .service-settings .setting-box .setting-item .service-body .disable .quantity .change-btn::before {
  background: rgba(162, 162, 162, 0.1019607843);
}
.main .service-settings .setting-box .setting-item .service-body .disable .textarea textarea {
  color: #C6C6C6;
}
.main .service-settings .setting-box .setting-item .service-body .disable .textarea .change-btn::before {
  background: transparent;
}
.main .service-settings .setting-box .setting-item .service:nth-child(2) .service-head {
  background: rgba(200, 132, 112, 0.1019607843);
}
.main .service-settings .setting-box .setting-item .service:nth-child(3) .service-head {
  background: rgba(255, 79, 79, 0.1019607843);
}
.main .service-settings .setting-box .setting-item .showService .service-head .arrow-btn svg {
  transform: rotate(180deg);
}
.main .service-settings .setting-box .setting-item .showService .service-body {
  display: flex;
}
.main .service-settings .setting-box .education {
  margin-bottom: 20px;
}
.main .service-settings .setting-box .education:nth-child(3) {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #F3F3F3;
}
.main .service-settings .setting-box .education-head {
  width: 100%;
  height: 60px;
  border-radius: 12px;
  background: rgba(184, 184, 184, 0.1019607843);
  padding: 0 25px;
  cursor: pointer;
}
.main .service-settings .setting-box .education-head .head-title {
  font-size: 18px;
  line-height: 15px;
  font-weight: 700;
  color: #4d4d4d;
}
.main .service-settings .setting-box .education-head .arrow-btn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.main .service-settings .setting-box .education-body {
  display: none;
}
.main .service-settings .setting-box .education-body .input-box {
  margin-top: 25px;
}
.main .service-settings .setting-box .education-body .input-box .title {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.main .service-settings .setting-box .education-body .input-box input {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}
.main .service-settings .setting-box .education-body .input-box textarea {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
}
.main .service-settings .setting-box .education-body .price-list .input-box {
  font-size: 13px;
  font-weight: 500;
  margin-right: 30px;
}
.main .service-settings .setting-box .education-body .price-list .input-box:last-child {
  margin-right: 0;
}
.main .service-settings .setting-box .education-body .price-list .input-box input {
  width: 100px;
  margin-right: 10px;
}
.main .service-settings .setting-box .showEducation .education-head .arrow-btn svg {
  transform: rotate(180deg);
}
.main .service-settings .setting-box .showEducation .education-body {
  display: block;
}
.main .service-settings .setting-box .lesson {
  margin: 5px 0 0 0;
}
.main .service-settings .setting-box .lesson-head {
  height: 50px;
}
.main .service-settings .setting-box .lesson-head .lesson-title input {
  font-size: 16px;
  font-weight: 700;
  color: #4D4D4D;
  max-width: none;
  width: 200px;
}
.main .service-settings .setting-box .lesson-head .lesson-title .change-btn::before {
  background: transparent !important;
  box-shadow: none;
}
.main .service-settings .setting-box .lesson-head .arrow {
  width: 12px;
  cursor: pointer;
}
.main .service-settings .setting-box .lesson-body {
  display: none;
}
.main .service-settings .setting-box .lesson-body .lesson-video {
  height: 389px;
}
.main .service-settings .setting-box .lesson-body .lesson-video .upload-video {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 5;
}
.main .service-settings .setting-box .lesson-body .lesson-video .upload-video span {
  padding: 5px 10px;
  border-radius: 50px;
  background: #fff;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  color: #919191;
}
.main .service-settings .setting-box .lesson-body .showVideo {
  background: rgba(0, 0, 0, 0.4);
}
.main .service-settings .setting-box .lesson-body .showVideo .poster {
  display: none;
}
.main .service-settings .setting-box .lesson-body .showVideo .video {
  z-index: 10;
}
.main .service-settings .setting-box .lesson-body .showVideo .upload-video {
  display: none;
}
.main .service-settings .setting-box .showLesson .lesson-head .arrow {
  transform: rotate(180deg);
}
.main .service-settings .setting-box .showLesson .lesson-body {
  display: block;
}
.main .service-settings .setting-box .remove-lesson_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 79, 79, 0.1882352941);
  margin-top: 25px;
  cursor: pointer;
  border-radius: 12px;
}
.main .service-settings .setting-box .remove-lesson_btn svg {
  margin-right: 5px;
}
.main .service-settings .setting-box .remove-lesson_btn:hover {
  color: #ff4f4f;
  background: rgba(242, 85, 60, 0.1019607843);
}
.main .service-settings .setting-box .remove-lesson_btn:hover svg g {
  opacity: 1;
}
.main .service-settings .setting-box .add-new-lesson, .main .service-settings .setting-box .add-new-skill {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #d3d3d3;
  cursor: pointer;
  margin-top: 20px;
}
.main .service-settings .setting-box .add-new-lesson:hover, .main .service-settings .setting-box .add-new-skill:hover {
  color: #272727;
}
.main .service-settings .setting-box .add-new-skill {
  font-size: 18px;
  margin-top: 40px;
}
.main .service-settings .setting-box .input-box .icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.main .service-settings .setting-box .input-box .icon img {
  width: 17px;
}
.main .service-settings .setting-box .input-box .upload-icon {
  width: 120px;
  height: 45px;
  border-radius: 12px;
  background: rgba(242, 85, 60, 0.062745098);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #f2553c;
  position: relative;
}
.main .service-settings .setting-box .input-box .upload-icon svg {
  margin-right: 5px;
}
.main .service-settings .setting-box .input-box .upload-icon input {
  appearance: none;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.main .service-settings .setting-box .select {
  width: 100%;
}
.main .service-settings .setting-box .select-head {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .service-settings .setting-box .select-head span {
  font-size: 13px;
  font-weight: 600;
}
.main .service-settings .setting-box .select .options {
  top: 120%;
  background: #F8F8F8;
  border-radius: 7px;
  z-index: 10;
  min-width: auto;
}
.main .service-settings .setting-box .select .options li {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #272727;
  cursor: pointer;
}
.main .service-settings .setting-box .select .options li:hover {
  color: #f2553c;
  opacity: 1;
}
.main .service-settings .setting-box .input-item {
  width: 48%;
}
.main .service-settings .setting-box .input-item .select {
  margin-bottom: 15px;
}
.main .service-settings .setting-box .schedule .time {
  padding: 12px 12px 12px 20px;
  border-radius: 15px;
  background: #f8f8f8;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #2f2f2f;
}
.main .service-settings .setting-box .schedule .time-list li {
  width: 55px;
  height: 26px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
}
.main .service-settings .setting-box .schedule .time-list li:last-child {
  margin-right: 0;
}
.main .service-settings .setting-box .schedule .time-list .active {
  background: #f2553c;
  color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(242, 85, 60, 0.5);
}
.main .service-settings .setting-box .schedule .mobile {
  display: none;
}
.main .service-settings .setting-box .schedule .mobile .time-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}
.main .service-settings .setting-box .schedule .mobile .time-list li {
  margin: 0;
  width: 48%;
  height: 30px;
  margin-top: 10px;
}
.main .service-settings .setting-box .schedule .tab-btns {
  display: flex;
  overflow-x: scroll;
  width: 105%;
}
.main .service-settings .setting-box .schedule .tab-btns .tab-btn {
  padding: 11px;
  border-radius: 15px;
  background: #f8f8f8;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 10px;
}
.main .service-settings .setting-box .schedule .tab-btns .active {
  background: #f2553c;
  color: #fff;
}
.main .service-settings .setting-item .item {
  margin-bottom: 40px;
}
.main .service-settings .setting-item .item:last-child {
  margin-bottom: 0;
}
.main .service-settings .setting-item .item-title {
  font-size: 18px;
  font-weight: 600;
}
.main .service-settings .setting-item .item .counter-item {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.main .service-settings .setting-item .item .counter-item .counter-title {
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  color: #333;
  margin-right: 15px;
  min-width: 120px;
}
.main .service-settings .setting-item .item .counter-item .counter-inp {
  width: 80px;
  height: 25px;
  text-align: left;
  font-size: 12px;
  padding: 0 9px;
}
.main .service-settings .setting-item .item .counter-item .counter .plus, .main .service-settings .setting-item .item .counter-item .counter .minus {
  width: 25px;
  height: 25px;
}
.main .service-settings .setting-item .item .counter-item .counter .input-box {
  position: relative;
}
.main .service-settings .setting-item .item .counter-item .counter .input-box span {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.3;
}
.main .createOrder .input-box {
  margin-top: 10px;
}
.main .createOrder .input-box input {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}
.main .createOrder .input-box textarea {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
}
.main .createOrder .order-head {
  width: 100%;
  height: 60px;
  border-radius: 15px;
  background: rgba(184, 184, 184, 0.1019607843);
  padding: 0 15px 0 25px;
  cursor: pointer;
}
.main .createOrder .order-head .head-title {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #4d4d4d;
}
.main .createOrder .order-body .order-item {
  padding-bottom: 45px;
  margin-bottom: 40px;
  border-bottom: 1px solid #F2F2F2;
}
.main .createOrder .order-body .order-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.main .createOrder .order-body .order-title {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  margin-top: 25px;
}
.main .createOrder .order-body .input-count {
  margin-top: 10px;
}
.main .createOrder .order-body .input-count .input-box {
  width: 100%;
  margin-top: 0;
  margin-right: 24px;
}
.main .createOrder .order-body .input-count .counter-item .counter-title {
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  margin-right: 11px;
  white-space: nowrap;
}
.main .createOrder .order-body .check-necessarily {
  position: relative;
  margin-top: 27px;
  width: 145px;
}
.main .createOrder .order-body .check-necessarily input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  appearance: none;
}
.main .createOrder .order-body .check-necessarily span {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  opacity: 0.5;
  white-space: nowrap;
}
.main .createOrder .order-body .check-necessarily span::before {
  content: url(../img/svg/no-check1.svg);
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.main .createOrder .order-body .check-necessarily input:checked ~ span {
  opacity: 1;
}
.main .createOrder .order-body .check-necessarily input:checked ~ span::before {
  content: url(../img/svg/check-min3.svg);
}
.main .createOrder .order-body .dropDown {
  margin-top: 25px;
}
.main .createOrder .order-body .dropDown-item .item {
  width: 49%;
}
.main .createOrder .order-body .dropDown-item .item .dropDown-btn {
  min-width: 8px;
  margin-right: 12px;
  cursor: pointer;
}
.main .createOrder .order-body .dropDown-item .item .input-box {
  width: 100%;
  margin: 0;
}
.main .createOrder .order-body .dropDown-item .item .input-box textarea {
  height: 80px;
  resize: none;
  font-size: 13px;
  line-height: 18px;
}
.main .createOrder .order-body .dropDown-item .item .delate-btn {
  min-width: 10px;
  cursor: pointer;
  margin-left: 10px;
}
.main .createOrder .order-body .dropDown-item .item:first-child .input-box textarea {
  height: 45px;
}
.main .createOrder .order-body .dropDown:nth-child(4) .item:first-child .input-box textarea {
  height: 62px !important;
}
.main .createOrder .order-body .add-dropDown {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.5;
  margin-top: 15px;
}
.main .createOrder .order-body .add-dropDown:hover {
  opacity: 1;
}
.main .createOrder .order-body .add-dropDown svg {
  margin-right: 8px;
}
.main .createOrder .order-body .counter .plus, .main .createOrder .order-body .counter .minus {
  min-width: 25px;
  height: 25px;
}
.main .createOrder .order-body .counter .input-box {
  position: relative;
  margin: 0 5px;
}
.main .createOrder .order-body .counter .input-box .counter-inp {
  width: 70px;
  height: 25px;
  text-align: left;
  font-size: 12px;
  padding: 0 9px;
  border-radius: 8px;
  background: #fff;
  margin: 0;
}
.main .createOrder .order-body .counter .input-box span {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 12px;
  font-weight: 500;
}
.main .createOrder .order-body .countries .item {
  margin: 20px 0 0;
}
.main .createOrder .order-body .countries .item-title {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}
.main .createOrder .order-body .countries .item .item-aded li {
  width: 160px;
  height: 35px;
  border-radius: 12px;
  background: #f2553c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .createOrder .order-body .countries .item .item-aded li::after {
  content: url(../img/svg/check-min2.svg);
  margin-left: 8px;
}
.main .createOrder .order-body .countries .item .add-btn {
  width: 160px;
  height: 35px;
  border-radius: 12px;
  background: #f9f9f9;
  font-size: 13px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.1882352941);
}
.main .createOrder .order-body .countries .item .add-btn:hover {
  color: #333;
}
.main .createOrder .order-body .countries .item .select {
  margin-bottom: 10px;
}
.main .createOrder .order-body .countries .item .select .options li {
  margin: 0;
}
.main .createOrder .order-body .countries .item .input-box textarea {
  width: 223px;
  height: 62px;
  resize: none;
  padding: 12px;
  font-size: 13px;
  line-height: 18px;
}
.main .createOrder .order-body .jobs {
  margin-top: 20px;
}
.main .createOrder .order-body .jobs .add-jobs {
  width: 250px;
  height: 35px;
  border-radius: 12px;
  background: #f9f9f9;
  padding: 0 17px;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}
.main .createOrder .order-body .jobs .add-jobs::placeholder {
  opacity: 0.5;
}
.main .createOrder .order-body .jobs .job-list {
  margin-top: 10px;
}
.main .createOrder .order-body .jobs .job-list li {
  padding: 0 15px;
  height: 35px;
  border-radius: 12px;
  background: #f2553c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 10px 0 0;
  cursor: pointer;
}
.main .createOrder .order-body .jobs .job-list li::after {
  content: url(../img/svg/check-min2.svg);
  margin-left: 8px;
}
.main .createOrder .order-body .jobs .job-list li:hover::after {
  content: url(../img/svg/close-min.svg);
}
.main .createOrder .order-body .skill-list {
  margin-top: 10px;
}
.main .createOrder .order-body .skill-list .skill {
  margin: 10px 10px 0 0;
  position: relative;
}
.main .createOrder .order-body .skill-list .skill input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}
.main .createOrder .order-body .skill-list .skill-check {
  padding: 0 15px;
  height: 35px;
  border-radius: 12px;
  background: #fff;
  color: rgba(47, 47, 47, 0.3764705882);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 10px 0 0;
  cursor: pointer;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
}
.main .createOrder .order-body .skill-list .skill-check svg {
  margin-right: 8px;
}
.main .createOrder .order-body .skill-list input:checked ~ .skill-check {
  background: #f2553c;
  color: #fff;
}
.main .createOrder .order-body .skill-list input:checked ~ .skill-check svg path {
  fill: #fff;
  opacity: 1;
}
.main .randomJobs-item {
  margin-bottom: 50px;
  width: 100%;
}
.main .randomJobs-item:last-child {
  margin-bottom: 0;
}
.main .randomJobs-title {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  margin: 30px 0 24px;
}
.main .randomJobs-top {
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.main .randomJobs-top .uploadBtn {
  cursor: pointer;
  background: transparent;
  margin-right: 16px;
}
.main .randomJobs-top .uploadBtn input {
  display: none;
}
.main .randomJobs-top .uploadBtn span {
  width: 131px;
  height: 40px;
  border-radius: 12px;
  background: rgba(242, 85, 60, 0.062745098);
  font-size: 12px;
  font-weight: 600;
  color: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .randomJobs-top .uploadBtn span::before {
  content: url(../img/svg/upload1.svg);
  margin-right: 5px;
  margin-top: 3px;
}
.main .randomJobs-top .accidentally-switch {
  display: flex;
  align-items: center;
}
.main .randomJobs-top .accidentally-switch span {
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  display: inline-block;
}
.main .randomJobs-top .accidentally-switch .switch-btn {
  position: relative;
}
.main .randomJobs-top .accidentally-switch .switch-btn input {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}
.main .randomJobs-top .accidentally-switch .switch-btn .switch {
  width: 34px;
  height: 20px;
  border-radius: 50px;
  background: #e9e9e9;
  position: relative;
}
.main .randomJobs-top .accidentally-switch .switch-btn .switch::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s all;
}
.main .randomJobs-top .accidentally-switch .switch-btn input:checked ~ .switch {
  background: #f2553c;
}
.main .randomJobs-top .accidentally-switch .switch-btn input:checked ~ .switch::before {
  left: 16px;
}
.main .randomJobs .swiper-slide {
  width: 270px;
}
.main .randomJobs .slider-item .info-top {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: end;
}
.main .randomJobs .slider-item .info-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(47, 47, 47, 0) 50%, rgb(47, 47, 47) 100%);
  z-index: 5;
}
.main .randomJobs .slider-item .info-top .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
  z-index: 2;
}
.main .randomJobs .slider-item .info-top .slider-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main .randomJobs .slider-item .info-top .play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
  cursor: pointer;
}
.main .randomJobs .slider-item .info-top .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.main .randomJobs .slider-item .info-top .play-btn:hover svg path {
  opacity: 1;
}
.main .randomJobs .slider-item .info-top .item-info {
  position: relative;
  z-index: 6;
  width: 100%;
  color: #fff;
  padding: 10px 17px 10px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1333333333);
}
.main .randomJobs .slider-item .info-top .item-info a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.main .randomJobs .slider-item .info-top .item-info .avatar {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 12px;
}
.main .randomJobs .slider-item .info-top .item-info .name {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  margin-right: 7px;
}
.main .randomJobs .slider-item .info-top .item-info .stars {
  margin-right: 6px;
}
.main .randomJobs .slider-item .info-top .item-info .stars img {
  margin-right: 4px;
}
.main .randomJobs .slider-item .info-top .item-info .likes,
.main .randomJobs .slider-item .info-top .item-info .reviews {
  padding: 3.5px 5px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2666666667);
  font-size: 8px;
  line-height: 8px;
  font-weight: 500;
  color: #c4b9b9;
  margin: 5px 5px 0 0;
}
.main .randomJobs .slider-item .info-top .item-info .likes img,
.main .randomJobs .slider-item .info-top .item-info .reviews img {
  margin-right: 3px;
}
.main .randomJobs .slider-item .info-top .item-info .arrow {
  display: none;
}
.main .randomJobs .slider-item .info-top .item-info:hover .name {
  color: #f2553c;
}
.main .randomJobs .slider-item .info-top .item-info:hover .arrow {
  display: block;
}
.main .randomJobs .slider-item .info-sub .item-title {
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
  margin-top: 15px;
}
.main .randomJobs .slider-item .info-sub .item-text {
  font-size: 13px;
  line-height: 23px;
  font-weight: 400;
  margin: 10px 0;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .randomJobs .slider-item .info-sub .item-price {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #b9b9b9;
  margin-bottom: 7px;
}
.main .randomJobs .slider-item .info-sub .item-price img {
  margin-right: 8px;
}
.main .randomJobs .slider-item .info-sub button {
  width: 49%;
  height: 35px;
  border-radius: 12px;
  background: #f6f6f6;
  color: #9e9e9e;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .randomJobs .slider-item .info-sub button:hover {
  background: #f1f1f1;
}
.main .randomJobs .slider-item .info-sub button img {
  margin-right: 5px;
}
.main .randomJobs .slider-item .info-sub .payment-btn {
  width: 100%;
  background: #3c3c3c;
  color: #fff;
}
.main .randomJobs .slider-item .info-sub .payment-btn:hover {
  background: #3c3c3c;
}
.main .randomJobs .slider-item .info-sub .payment-btn img {
  width: 13px;
}
.main .randomJobs .slider-item .info-sub .disabled {
  opacity: 0;
  pointer-events: none;
}
.main .randomJobs .slider-item .info-sub .change-btn {
  width: 55%;
}
.main .randomJobs .slider-item .info-sub .remove-btn {
  width: 43%;
  background: rgba(255, 79, 79, 0.1019607843);
  color: rgba(255, 79, 79, 0.5019607843);
}
.main .randomJobs .slider-item .info-sub .remove-btn:hover {
  background: rgba(255, 79, 79, 0.1647058824);
}
.main .randomJobs .showVideo {
  background: rgba(0, 0, 0, 0.4);
}
.main .randomJobs .showVideo .block2-video {
  z-index: 10;
}
.main .randomJobs .showVideo .item-info, .main .randomJobs .showVideo .poster {
  display: none;
}
.main .randomJobs .counter {
  margin-right: 20px;
}
.main .randomJobs .counter .counter-title {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-right: 10px;
}
.main .randomJobs .counter-item .counter .input-box {
  position: relative;
}
.main .randomJobs .counter-item .counter .counter-inp {
  width: 55px;
  padding: 0 9px;
  text-align: left;
}
.main .randomJobs .counter-item .counter span {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.3;
}
.main .pending-deletion {
  margin-bottom: 80px;
}
.main .pending-deletion .btns {
  margin-bottom: 70px;
}
.main .pending-deletion .btns button {
  height: 35px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  padding: 0 15px;
}
.main .pending-deletion .btns button svg {
  margin-right: 5px;
}
.main .pending-deletion .btns .edit__btn {
  background: #f6f6f6;
  color: #9e9e9e;
  margin-right: 20px;
}
.main .pending-deletion .btns .remove__btn {
  background: rgba(255, 79, 79, 0.1);
  color: rgba(255, 79, 79, 0.5);
}
.main .pending-deletion .deletion-info {
  font-size: 12px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.2);
  cursor: pointer;
}
.main .pending-deletion .deletion-info svg {
  margin-right: 5px;
}

.footer {
  border-top: 1px solid #F1F1F1;
}
.footer-box {
  padding: 50px 0 40px;
}
.footer-box p {
  display: none;
}
.footer-box .logo {
  margin-right: 30px;
}
.footer-box ul {
  margin-right: 30px;
}
.footer-box ul li {
  margin-bottom: 15px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 500;
  color: #929292;
}
.footer-box ul li:last-child {
  margin-bottom: 0;
}
.footer-box ul li a {
  color: #838383;
}
.footer-box ul li a:hover {
  color: #929292;
}
.footer-box .socials .social {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  margin-right: 15px;
}
.footer-box .socials .social:last-child {
  margin-right: 0;
}
.footer-box .socials .social svg {
  transition: 0.3s linear;
}
.footer-box .socials .social:nth-child(1):hover svg path {
  fill: #FF4EC3;
}
.footer-box .socials .social:nth-child(2):hover svg path {
  fill: #3DB9FF;
}
.footer-box .socials .social:nth-child(3):hover svg path {
  fill: #4C8FF3;
}
.footer-info {
  font-size: 9px;
  line-height: 15px;
  font-weight: 500;
  color: #bfbfbf;
  padding-bottom: 22px;
}
.footer-info a {
  border-bottom: 1px solid #BFBFBF;
}
.footer-info a:hover {
  color: #929292;
  border-color: #929292;
}

.popUp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow-y: scroll;
}
.popUp-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  cursor: pointer;
}
.popUp-close:hover svg path {
  stroke: #272727;
}
.popUp-content {
  width: 470px;
  border-radius: 20px;
  background: #fff;
  padding: 30px;
  position: relative;
  animation: popUp-anim 0.3s linear;
  margin: 50px auto;
}
.popUp .popUp-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.popUp .popUp-text {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  color: #2f2f2f;
  margin-top: 20px;
  display: inline-block;
}

.popUp-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-thanks .popUp-content {
  width: 370px;
  height: 457px;
  border-radius: 30px;
}
.popUp-thanks .title-text {
  font-size: 19px;
  line-height: 28px;
  margin: 14px 0;
}
.popUp-thanks .title-subtext {
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
}

.popUp-result .popUp-content {
  width: 970px;
  padding-right: 0;
}
.popUp-result .popUp-content .result-title .title-text {
  font-size: 20px;
  line-height: 18px;
  font-weight: 700;
  color: #2f2f2f;
  margin-right: 10px;
}
.popUp-result .popUp-content .result-title .data {
  font-size: 11px;
  color: #f2553c;
  font-weight: 700;
}
.popUp-result .popUp-content .swiper-btns {
  margin: 20px 0 15px;
  padding-right: 30px;
}
.popUp-result .popUp-content .swiper-btns .upload-btn {
  margin: 20px 20px 0 0;
}
.popUp-result .popUp-content .swiper-btns .upload-btn span {
  width: 131px;
  height: 40px;
  border-radius: 12px;
}
.popUp-result .popUp-content .swiper-btns .upload-btn span:hover {
  background: rgba(242, 85, 60, 0.1019607843);
}
.popUp-result .popUp-content .swiper-btns .swiper-button-next,
.popUp-result .popUp-content .swiper-btns .swiper-button-prev {
  background: rgba(242, 85, 60, 0.1019607843);
  box-shadow: none;
}
.popUp-result .popUp-content .swiper-btns .swiper-button-next svg path,
.popUp-result .popUp-content .swiper-btns .swiper-button-prev svg path {
  stroke: #B28880;
}
.popUp-result .popUp-content .swiper-btns .swiper-button-next:hover,
.popUp-result .popUp-content .swiper-btns .swiper-button-prev:hover {
  background: rgba(242, 85, 60, 0.1647058824);
}
.popUp-result .popUp-content .swiper-btns .swiper-button-next:hover svg path,
.popUp-result .popUp-content .swiper-btns .swiper-button-prev:hover svg path {
  stroke: #f2553c;
}
.popUp-result .popUp-content .swiper-slide {
  width: 240px;
}
.popUp-result .popUp-content .result-item {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.popUp-result .popUp-content .result-item .result-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
}
.popUp-result .popUp-content .result-item .download {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  height: 22px;
  border-radius: 50px;
  background: #fff;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.4156862745);
  z-index: 2;
  display: none;
}
.popUp-result .popUp-content .result-item .download svg {
  margin-left: 5px;
}
.popUp-result .popUp-content .result-item .download:hover {
  color: #2F2F2F;
}
.popUp-result .popUp-content .result-item .download:hover svg path {
  stroke: #f2553c;
}
.popUp-result .popUp-content .result-item .delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5019607843);
  cursor: pointer;
}
.popUp-result .popUp-content .result-item .delete-btn:hover {
  background: #f2553c;
}
.popUp-result .popUp-content .result-item:hover .result-img {
  transform: scale(1.05);
}
.popUp-result .popUp-content .result-item:hover .download {
  display: flex;
}
.popUp-result .popUp-content .deleted-box {
  opacity: 0.2;
  pointer-events: none;
}
.popUp-result .popUp-content .deleted-box-info {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  margin-top: 9px;
}
.popUp-result .popUp-content .download-all {
  width: 220px;
  height: 50px;
  border-radius: 15px;
  background: rgba(255, 79, 79, 0.062745098);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #f2553c;
  margin-top: 20px;
}
.popUp-result .popUp-content .download-all:hover {
  background: rgba(255, 79, 79, 0.1882352941);
}
.popUp-result .popUp-content .backTo {
  padding: 10px 30px;
  color: #2F2F2F;
  opacity: 0.3;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  margin-top: 25px;
}
.popUp-result .popUp-content .backTo:hover {
  opacity: 1;
}
.popUp-result .popUp-content .confirm-changes {
  width: 185px;
  height: 45px;
  border-radius: 12px;
  background: rgba(59, 202, 68, 0.1254901961);
  color: #3bca44;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  transition: 0.3s linear;
  margin-top: 25px;
}
.popUp-result .popUp-content .confirm-changes:hover {
  transform: scale(1.1);
}

.popUp-dispute .dispute-title {
  font-size: 20px;
  line-height: 18px;
  font-weight: 700;
}
.popUp-dispute .dispute {
  font-size: 12px;
  line-height: 18px;
  color: #2f2f2f;
}
.popUp-dispute .dispute-text {
  margin: 15px 0;
}
.popUp-dispute .dispute-text_sub {
  font-weight: 600;
  color: #ff4f4f;
}
.popUp-dispute .dispute .text-box {
  position: relative;
  width: 100%;
  margin: 20px 0;
}
.popUp-dispute .dispute .text-box .upload-file {
  cursor: pointer;
  min-width: 25px;
  height: 25px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
  position: absolute;
  top: 10px;
  left: 10px;
}
.popUp-dispute .dispute .text-box .upload-file:hover {
  box-shadow: none;
}
.popUp-dispute .dispute .text-box textarea {
  width: 100%;
  height: 126px;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 15px 15px 15px 52px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  resize: none;
  border: 1px solid #f8f8f8;
}
.popUp-dispute .dispute .text-box textarea::placeholder {
  opacity: 0.5;
}
.popUp-dispute .dispute .text-box .errorText {
  border-color: #f2553c;
}
.popUp-dispute .dispute .submit-btn {
  width: 240px;
  height: 45px;
  border-radius: 15px;
  background: rgba(255, 79, 79, 0.1254901961);
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #f2553c;
}
.popUp-dispute .dispute .submit-btn:hover {
  background: #f2553c;
  color: #fff;
}
.popUp-dispute .dispute-open {
  font-size: 12px;
  line-height: 18px;
}
.popUp-dispute .dispute-open .dispute-title {
  margin: 15px 0;
}
.popUp-dispute .dispute-open .chat-link {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #2f2f2f;
  background: rgba(217, 217, 217, 0.1882352941);
  border-radius: 20px;
  margin-left: 5px;
}

.popUp-acceptOffer .popUp-content {
  width: 570px;
}
.popUp-acceptOffer .acceptOffer-title {
  font-size: 20px;
  line-height: 18px;
  font-weight: 700;
}
.popUp-acceptOffer .acceptOffer-item {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.popUp-acceptOffer .acceptOffer-item:first-child {
  margin-top: 30px;
}
.popUp-acceptOffer .acceptOffer-item .item-name {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  width: 120px;
}
.popUp-acceptOffer .acceptOffer-item .item-info {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 20px;
  background: #f6f6f6;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #4d4d4d;
  padding: 0 12px;
}
.popUp-acceptOffer .acceptOffer-item .stories {
  background: #fff3f9;
  padding-right: 5px;
}
.popUp-acceptOffer .acceptOffer-item .stories-info {
  margin-right: 5px;
}
.popUp-acceptOffer .acceptOffer-item .stories-info img {
  margin-right: 5px;
}
.popUp-acceptOffer .acceptOffer-item .no {
  background: rgba(255, 79, 79, 0.1019607843);
}
.popUp-acceptOffer .acceptOffer .user-info {
  display: flex;
  align-items: center;
}
.popUp-acceptOffer .acceptOffer .user-info .user {
  background: rgba(242, 85, 60, 0.1019607843);
  border-radius: 20px;
  color: #2F2F2F;
  font-size: 14px;
  font-weight: 600;
  margin-right: 8px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.popUp-acceptOffer .acceptOffer .user-info .user .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.popUp-acceptOffer .acceptOffer .user-info .user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
}
.popUp-acceptOffer .acceptOffer .user-info .user span {
  margin: 0 7px;
  font-weight: 600;
  display: flex;
}
.popUp-acceptOffer .acceptOffer .user-info .user:hover .avatar img {
  transform: scale(1.15);
}
.popUp-acceptOffer .acceptOffer .user-info .user:hover span {
  color: #f2553c;
}
.popUp-acceptOffer .acceptOffer .user-info .stars {
  margin-right: 6px;
  display: flex;
}
.popUp-acceptOffer .acceptOffer .user-info .stars img {
  width: 13px;
  margin-right: 4px;
}
.popUp-acceptOffer .acceptOffer .user-info .likes,
.popUp-acceptOffer .acceptOffer .user-info .reviews {
  padding: 3.5px 5px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.0509803922);
  font-size: 8px;
  line-height: 8px;
  font-weight: 500;
  color: #898989;
  margin: 5px 5px 0 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.popUp-acceptOffer .acceptOffer .user-info .likes img,
.popUp-acceptOffer .acceptOffer .user-info .reviews img {
  margin-right: 3px;
}
.popUp-acceptOffer .acceptOffer .attention {
  background: #2f2f2f;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  font-size: 12px;
  line-height: 23px;
  margin: 30px 0 20px;
}
.popUp-acceptOffer .acceptOffer .attention-title {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: #ff4f4f;
}
.popUp-acceptOffer .acceptOffer .attention-text {
  margin: 10px 0 15px;
}
.popUp-acceptOffer .acceptOffer .attention .check-box {
  display: flex;
  align-items: center;
}
.popUp-acceptOffer .acceptOffer .attention .check-box input {
  min-width: 11px;
  height: 11px;
  background-image: url(../img/svg/no-check.svg);
  background-size: cover;
  margin-right: 5px;
}
.popUp-acceptOffer .acceptOffer .attention .check-box label {
  font-size: 11px;
  line-height: 11px;
  color: #fff;
  font-weight: 600;
}
.popUp-acceptOffer .acceptOffer .attention .check-box input:checked {
  background-image: url(../img/svg/checked.svg);
}
.popUp-acceptOffer .acceptOffer .attention .check-box input:checked ~ label {
  color: #6b5f5d;
}
.popUp-acceptOffer .acceptOffer .btns {
  display: flex;
  justify-content: end;
  width: 100%;
  align-items: center;
}
.popUp-acceptOffer .acceptOffer .btns .backTo {
  padding: 10px 30px;
  color: #2F2F2F;
  opacity: 0.3;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
}
.popUp-acceptOffer .acceptOffer .btns .backTo:hover {
  opacity: 1;
}
.popUp-acceptOffer .acceptOffer .btns .acceptOffer__btn {
  width: 185px;
  height: 45px;
  border-radius: 12px;
  background: rgba(59, 202, 68, 0.1254901961);
  color: #3bca44;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  transition: 0.3s linear;
}
.popUp-acceptOffer .acceptOffer .btns .acceptOffer__btn:hover {
  transform: scale(1.1);
}

.popUp-form .popUp-content {
  width: 360px;
  border-radius: 20px;
  padding: 30px;
}
.popUp-form .form {
  margin-top: 26px;
}
.popUp-form .form-user {
  margin-top: 20px;
}
.popUp-form .select_btn {
  cursor: pointer;
  display: flex;
  margin-bottom: 10px;
}
.popUp-form .select_btn:nth-child(2) {
  margin-bottom: 0;
}
.popUp-form .select_btn input {
  display: none;
}
.popUp-form .select_btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #333;
  background: #fff;
  box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.07);
}
.popUp-form .select_btn span svg {
  margin-left: 8px;
  display: none;
  margin-top: -3px;
}
.popUp-form .select_btn input:checked ~ span {
  background: #f2553c;
  color: #fff;
}
.popUp-form .select_btn input:checked ~ span svg {
  display: block;
}
.popUp-form .input-box {
  width: 100%;
  margin-bottom: 15px;
}
.popUp-form .input-box label {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 10px;
  display: inline-block;
}
.popUp-form .input-box .form-inp {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
}
.popUp-form .input-box .form-inp::placeholder {
  opacity: 0.3;
}
.popUp-form .input-box .form-inp:focus {
  border-color: #f2553c;
}
.popUp-form .input-box .error {
  border-color: red;
}
.popUp-form .opacity50 {
  opacity: 0.5;
}
.popUp-form .opacity50 .form-inp, .popUp-form .opacity50 label {
  /*pointer-events: none;*/
}
.popUp-form .form-btn,
.popUp-form .form-link {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: #f2553c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.popUp-form .form-btn svg,
.popUp-form .form-link svg {
  margin-left: 10px;
}
.popUp-form .form-btn:hover,
.popUp-form .form-link:hover {
  transform: scale(1.1);
}
.popUp-form .form-link {
  background: rgba(242, 85, 60, 0.1019607843);
  color: #f2553c;
}
.popUp-form .box-pass {
  margin-bottom: 10px;
}
.popUp-form .box-pass .popUp-text {
  margin: 0 0 10px;
}
.popUp-form .social-networks {
  padding: 15px 20px 20px;
  background: rgba(242, 85, 60, 0.031372549);
  border-radius: 15px;
  margin-top: 30px;
  font-size: 13px;
  font-weight: 600;
}
.popUp-form .social-networks .socials {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.popUp-form .social-networks .socials .social {
  width: 31%;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.09);
}
.popUp-form .social-networks .socials .social:hover {
  background: #f2553c;
}
.popUp-form .social-networks .socials .social:hover svg path {
  fill: #fff;
}
.popUp-form .forgot-pass {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #f2553c;
  opacity: 0.4;
  margin-top: 30px;
  cursor: pointer;
}
.popUp-form .forgot-pass span {
  text-decoration: underline;
}
.popUp-form .forgot-pass:hover {
  opacity: 1;
}

.popUp-startOrder .popUp-content {
  padding: 40px 30px;
}
.popUp-startOrder .popUp-content .popUp-close {
  top: 20px;
  right: 20px;
}
.popUp-startOrder .popUp-content .popUp-text {
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  margin-top: 15px;
}
.popUp-startOrder .popUp-content .popUp-text strong {
  font-weight: 600;
}
.popUp-startOrder .popUp-content button {
  width: 220px;
  height: 45px;
  border-radius: 15px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
}
.popUp-startOrder .popUp-content .yesStart {
  background: rgba(59, 202, 68, 0.062745098);
  color: #31b138;
  margin: 20px 0 15px;
}
.popUp-startOrder .popUp-content .yesStart:hover {
  background: rgba(59, 202, 68, 0.1254901961);
}
.popUp-startOrder .popUp-content .noStart {
  background: rgba(255, 79, 79, 0.062745098);
  color: #FF4F4F;
}
.popUp-startOrder .popUp-content .noStart:hover {
  background: rgba(255, 79, 79, 0.1254901961);
}

.popUp-offerOrder .popUp-content {
  width: 570px;
  padding: 25px 30px 30px;
}
.popUp-offerOrder .offerOrder .popUp-title {
  margin-right: 15px;
}
.popUp-offerOrder .offerOrder .user {
  padding: 0 10px 0 0;
  background: rgba(242, 85, 60, 0.1019607843);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.popUp-offerOrder .offerOrder .user .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 7px;
}
.popUp-offerOrder .offerOrder .orders .order-title {
  font-size: 13px;
  font-weight: 600;
  margin-top: 18px;
}
.popUp-offerOrder .offerOrder .orders .order {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
  position: relative;
}
.popUp-offerOrder .offerOrder .orders .order-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  appearance: none;
  z-index: 5;
}
.popUp-offerOrder .offerOrder .orders .order-checkbox::after {
  content: url(../img/svg/check3.svg);
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: rgba(242, 85, 60, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8%;
  display: none;
}
.popUp-offerOrder .offerOrder .orders .order-checkbox:hover::after {
  display: flex;
}
.popUp-offerOrder .offerOrder .orders .order-checkbox:checked::after {
  content: url(../img/svg/check4.svg);
  background: #f2553c;
  display: flex;
}
.popUp-offerOrder .offerOrder .orders .order-checkbox:checked:hover::after {
  content: url(../img/svg/close3.svg);
}
.popUp-offerOrder .offerOrder .orders .order-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  opacity: 0.6;
  width: 75%;
}
.popUp-offerOrder .offerOrder .orders .order .order-info {
  width: 75%;
}
.popUp-offerOrder .offerOrder .orders .order .order-info .info {
  display: flex;
  align-items: center;
  margin-top: 14px;
  margin-right: 20px;
}
.popUp-offerOrder .offerOrder .orders .order .order-info .info:last-child {
  margin-right: 0;
}
.popUp-offerOrder .offerOrder .orders .order .order-info .info-name {
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  color: #a7a7a7;
  margin-right: 10px;
}
.popUp-offerOrder .offerOrder .orders .order .order-info .info .stories {
  height: 25px;
  border-radius: 50px;
  background: #f9eff4;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  color: #4d4d4d;
  margin-right: 6px;
}
.popUp-offerOrder .offerOrder .orders .order .order-info .info .stories img {
  margin-right: 5px;
}
.popUp-offerOrder .offerOrder .orders .order .order-info .info .sum {
  height: 25px;
  border-radius: 50px;
  background: #f7f7f7;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
}
.popUp-offerOrder .offerOrder .orders .create-newOrder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  height: 74px;
  border-radius: 12px;
  background: rgba(240, 240, 240, 0.3137254902);
  margin: 20px 0 30px;
  font-size: 11px;
  line-height: 17px;
  color: rgba(47, 47, 47, 0.3764705882);
  cursor: pointer;
}
.popUp-offerOrder .offerOrder .orders .create-newOrder .create-title {
  font-weight: 600;
  text-decoration: underline;
}
.popUp-offerOrder .offerOrder .orders .create-newOrder:hover .create-title {
  color: #272727;
}
.popUp-offerOrder .offerOrder .orders .text-box .text-title {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
}
.popUp-offerOrder .offerOrder .orders .text-box textarea {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 12px 20px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  resize: none;
}
.popUp-offerOrder .offerOrder .orders .text-box textarea::placeholder {
  opacity: 0.5;
}
.popUp-offerOrder .offerOrder .orders .btns {
  justify-content: end;
}
.popUp-offerOrder .offerOrder .orders .btns button {
  padding: 16px 27px;
  border-radius: 15px;
  background: transparent;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  margin-top: 20px;
}
.popUp-offerOrder .offerOrder .orders .btns .backTo-btn {
  color: rgba(47, 47, 47, 0.1882352941);
}
.popUp-offerOrder .offerOrder .orders .btns .backTo-btn:hover {
  color: #272727;
}
.popUp-offerOrder .offerOrder .orders .btns .createOrder-btn {
  background: rgba(255, 79, 79, 0.062745098);
  color: #ff4f4f;
}
.popUp-offerOrder .offerOrder .orders .btns .createOrder-btn:hover {
  background: rgba(255, 79, 79, 0.1254901961);
}

.popUp-subscribe .popUp-content {
  width: 370px;
}
.popUp-subscribe .performers-sidebar {
  width: 100%;
  padding: 0;
  box-shadow: none;
  margin: 20px 0 30px;
}
.popUp-subscribe .performers-sidebar .sidebar {
  min-width: auto;
  width: 100%;
}
.popUp-subscribe .performers-sidebar .sidebar .sidebar-item {
  border: none;
}
.popUp-subscribe .performers-sidebar .sidebar .sidebar-item .item-head {
  padding: 0;
}
.popUp-subscribe .subscribe-link {
  width: 218px;
  height: 50px;
  border-radius: 12px;
  background: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s linear;
}
.popUp-subscribe .subscribe-link:hover {
  transform: scale(1.1);
}

.popUp-mailings .performers-sidebar {
  margin: 20px 0 0;
}
.popUp-mailings .mailings {
  position: relative;
  margin-bottom: 10px;
}
.popUp-mailings .mailings .select-check {
  appearance: none;
  position: absolute;
  width: 100%;
  height: 40px;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
}
.popUp-mailings .mailings .select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  border-radius: 12px;
  padding: 0 15px;
  background: rgba(242, 85, 60, 0.05);
  cursor: pointer;
}
.popUp-mailings .mailings .select-btn img {
  width: 12px;
}
.popUp-mailings .mailings .select-btn span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #6E5855;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  max-width: 90%;
}
.popUp-mailings .mailings .my-mailings {
  display: none;
  padding: 0 10px;
  margin-top: 20px;
}
.popUp-mailings .mailings .my-mailings .serviceItem .name {
  width: 100px !important;
}
.popUp-mailings .mailings .select-check:checked ~ .select-btn img {
  transform: rotate(180deg);
}
.popUp-mailings .mailings .select-check:checked ~ .my-mailings {
  display: block;
}
.popUp-mailings .remove_btn:hover {
  background: rgba(242, 85, 60, 0.05) !important;
  color: #f2553c !important;
}
.popUp-mailings .remove_btn:hover svg g {
  opacity: 1;
}

.popUp-response .popUp-content {
  width: 570px;
}
.popUp-response .popUp-text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin-top: 15px;
}

.popUp-response .text-box, .popUp-Offer-terms .text-box {
  position: relative;
  margin: 20px 0 10px;
}
.popUp-response .text-box input, .popUp-Offer-terms .text-box input {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #F8F8F8;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 500;
  padding-right: 160px;
}
.popUp-response .text-box input::placeholder, .popUp-Offer-terms .text-box input::placeholder {
  opacity: 0.5;
}
.popUp-response .text-box .info-length, .popUp-Offer-terms .text-box .info-length {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #272727;
  opacity: 0.4;
}
.popUp-response .backTo, .popUp-Offer-terms .backTo {
  height: 45px;
  border-radius: 12px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  opacity: 0.4;
  margin-top: 15px;
  cursor: pointer;
}
.popUp-response .backTo:hover, .popUp-Offer-terms .backTo:hover {
  opacity: 1;
}
.popUp-response .send-btn, .popUp-Offer-terms .send-btn {
  width: 165px;
  height: 45px;
  border-radius: 15px;
  background: rgba(59, 202, 68, 0.062745098);
  color: #31b138;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  margin-top: 15px;
}
.popUp-response .send-btn:hover, .popUp-Offer-terms .send-btn:hover {
  background: rgba(59, 202, 68, 0.1254901961);
}

.popUp-Offer-terms .counter-item, .popUp-verdict .counter-item {
  margin-top: 10px;
}
.popUp-Offer-terms .counter-item .counter-title, .popUp-verdict .counter-item .counter-title {
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  color: rgba(51, 51, 51, 0.2509803922);
  margin-bottom: 10px;
}
.popUp-Offer-terms .counter-item .counter-inp, .popUp-verdict .counter-item .counter-inp {
  width: 80px;
  height: 35px;
  text-align: left;
  font-size: 13px;
  padding: 0 10px;
}
.popUp-Offer-terms .counter-item .counter .plus, .popUp-Offer-terms .counter-item .counter .minus, .popUp-verdict .counter-item .counter .plus, .popUp-verdict .counter-item .counter .minus {
  width: 35px;
  height: 35px;
}
.popUp-Offer-terms .counter-item .counter .input-box, .popUp-verdict .counter-item .counter .input-box {
  position: relative;
}
.popUp-Offer-terms .counter-item .counter .input-box::after, .popUp-verdict .counter-item .counter .input-box::after {
  content: "₽";
  position: absolute;
  top: 9px;
  right: 15px;
  font-size: 12px;
  font-weight: 500;
}
.popUp-Offer-terms .dop-info, .popUp-verdict .dop-info {
  padding: 15px 15px 25px 15px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
  margin-top: 10px;
}
.popUp-Offer-terms .dop-info .dop-title, .popUp-verdict .dop-info .dop-title {
  font-size: 13px;
  font-weight: 600;
}
.popUp-Offer-terms .dop-info .dop-title svg, .popUp-verdict .dop-info .dop-title svg {
  margin-right: 7px;
}
.popUp-Offer-terms .dop-info input[type="checkbox"]:not(:checked) ~ .dop-title span, .popUp-verdict .stoped .dop-title span {
  opacity: 0.4;
}
.popUp-Offer-terms .dop-info input[type="checkbox"]:not(:checked) ~ .d-flex .counter, .popUp-verdict .stoped .counter {
  opacity: 0.4;
  pointer-events: none;
}
.popUp-Offer-terms .total-cost .total, .popUp-verdict .total-cost .total {
  font-weight: 600;
  margin: 10px 30px 0 0;
}
.popUp-Offer-terms .total-cost .total-title, .popUp-verdict .total-cost .total-title {
  font-size: 12px;
  line-height: 19px;
  color: rgba(51, 51, 51, 0.2509803922);
}
.popUp-Offer-terms .total-cost .total-sum, .popUp-verdict .total-cost .total-sum {
  font-size: 20px;
  line-height: 23px;
  margin-top: 6px;
}
.popUp-Offer-terms .text-box, .popUp-verdict .text-box {
  margin: 15px 0 10px;
}

.popUp-disable .popUp-content, .popUp-remove .popUp-content, .popUp-startExam .popUp-content {
  width: 360px;
}
.popUp-disable .popUp-text, .popUp-remove .popUp-text, .popUp-startExam .popUp-text {
  margin: 15px 0 25px;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
}
.popUp-disable .disable-btn, .popUp-disable .startExam-btn, .popUp-remove .disable-btn, .popUp-remove .startExam-btn, .popUp-startExam .disable-btn, .popUp-startExam .startExam-btn {
  width: 220px;
  height: 45px;
  border-radius: 15px;
  background: rgba(255, 79, 79, 0.062745098);
  font-size: 11px;
  font-weight: 600;
  color: #ff4f4f;
}
.popUp-disable .disable-btn:hover, .popUp-disable .startExam-btn:hover, .popUp-remove .disable-btn:hover, .popUp-remove .startExam-btn:hover, .popUp-startExam .disable-btn:hover, .popUp-startExam .startExam-btn:hover {
  background: rgba(255, 79, 79, 0.1882352941);
}

.popUp-timeExam .popUp-content {
  width: 770px;
  min-height: 80vh;
}
.popUp-timeExam .popUp-title span {
  color: #f2553c;
}
.popUp-timeExam .timeExam-success {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  min-height: 75vh;
}
.popUp-timeExam .timeExam-success .popUp-text {
  font-weight: 400;
}
.popUp-timeExam .popUp-text {
  font-size: 13px;
  line-height: 22px;
  margin: 15px 0 25px;
}
.popUp-timeExam .popUp-text a {
  font-weight: 600;
}
.popUp-timeExam .timeExam-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 20px;
}
.popUp-timeExam .swiper-timeExam {
  width: 100%;
}
.popUp-timeExam .timeExam-item .item {
  padding: 12px 12px 12px 20px;
  border-radius: 15px;
  background: #f8f8f8;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.popUp-timeExam .timeExam-item .item-data {
  font-weight: 600;
  margin-right: 10px;
}
.popUp-timeExam .timeExam-item .item-times .time {
  width: 55px;
  height: 26px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  padding-top: 2px;
  cursor: pointer;
}
.popUp-timeExam .timeExam-item .item-times .time:last-child {
  margin-right: 0;
}
.popUp-timeExam .timeExam-item .item-times .checked {
  background: #f2553c;
  color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(242, 85, 60, 0.5);
}
.popUp-timeExam .timeExam-item .item-times .time.disable {
  pointer-events: none;
  background: #f1f1f1;
  color: rgba(47, 47, 47, 0.1254901961);
}
.popUp-timeExam .swiper-btns {
  margin-top: 30px;
}
.popUp-timeExam .swiper-btns .timeExam-prev, .popUp-timeExam .swiper-btns .timeExam-next {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.3);
  cursor: pointer;
}
.popUp-timeExam .swiper-btns .timeExam-prev:hover, .popUp-timeExam .swiper-btns .timeExam-next:hover {
  color: #272727;
}
.popUp-timeExam .swiper-btns .timeExam-prev svg {
  margin-right: 5px;
}
.popUp-timeExam .swiper-btns .timeExam-next svg {
  margin-left: 5px;
}
.popUp-timeExam .timeExam-btn {
  width: 270px;
  height: 55px;
  border-radius: 12px;
  background: #f2553c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0px 7px 50px 0px rgba(242, 85, 60, 0.4);
  transition: 0.3s linear;
  margin-top: 40px;
}
.popUp-timeExam .timeExam-btn:hover {
  transform: scale(1.1);
}
.popUp-timeExam .timeExam-mob {
  display: none;
}
.popUp-timeExam .timeExam-mob .tab-btns {
  display: flex;
  overflow-x: scroll;
  width: 105%;
}
.popUp-timeExam .timeExam-mob .tab-btns .tab-btn {
  padding: 11px;
  border-radius: 15px;
  background: #f8f8f8;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 10px;
}
.popUp-timeExam .timeExam-mob .tab-btns .active {
  background: #f2553c;
  color: #fff;
}
.popUp-timeExam .timeExam-mob .item-times {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.popUp-timeExam .timeExam-mob .item-times .time {
  width: 48%;
  height: 40px;
  margin: 20px 0 0;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.popUp-verdict .popUp-content {
  width: 400px;
}
.popUp-verdict .counter-item .counter .input-box::after {
  content: "%";
}
.popUp-verdict .verdict-btn {
  width: 180px;
  height: 50px;
  border-radius: 15px;
  background: #f2553c;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popUp-verdict .verdict-btn img {
  margin-right: 5px;
}

.popUp-userSettings .popUp-content {
  width: 790px;
  padding: 30px;
  border-radius: 20px;
}
.popUp-userSettings .userSettings .user {
  margin-bottom: 33px;
}
.popUp-userSettings .userSettings .user .avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 10px;
}
.popUp-userSettings .userSettings .user .name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.popUp-userSettings .userSettings .setting-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F6F6F6;
}
.popUp-userSettings .userSettings .setting-item .item-name {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  margin-top: 10px;
}
.popUp-userSettings .userSettings .setting-item .select {
  width: auto;
  margin-right: 10px;
}
.popUp-userSettings .userSettings .setting-item .select:last-child {
  margin-right: 0;
}
.popUp-userSettings .userSettings .setting-item .select-head {
  width: 160px;
  height: 35px;
  border-radius: 7px;
  background: rgba(242, 85, 60, 0.0509803922);
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-userSettings .userSettings .setting-item .select-head span {
  font-size: 11px;
  font-weight: 600;
  margin-right: 5px;
}
.popUp-userSettings .userSettings .setting-item .select .options {
  top: 120%;
  background: #fff;
  border-radius: 7px;
  z-index: 10;
  min-width: auto;
}
.popUp-userSettings .userSettings .setting-item .select .options li {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #272727;
  opacity: 0.4;
  cursor: pointer;
}
.popUp-userSettings .userSettings .setting-item .select .options li:hover {
  color: #f2553c;
  opacity: 1;
}
.popUp-userSettings .userSettings .setting-item .item-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 35px;
  border-radius: 7px;
  background: rgba(124, 124, 124, 0.0509803922);
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
}
.popUp-userSettings .userSettings .setting-item .item-info .phone {
  width: 115px;
  background: transparent;
  margin-right: 5px;
  font-size: 13px;
  font-weight: 600;
}
.popUp-userSettings .userSettings .setting-item .item-info span {
  opacity: 0.3;
}
.popUp-userSettings .userSettings .setting-item .item-info .rating {
  display: flex;
  overflow: hidden;
  flex-direction: row-reverse;
  position: relative;
  margin-right: 5px;
}
.popUp-userSettings .userSettings .setting-item .item-info .rating > input {
  display: none;
}
.popUp-userSettings .userSettings .setting-item .item-info .rating > label {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-top: auto;
  background-image: url(../img/svg/star-nocheck2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
}
.popUp-userSettings .userSettings .setting-item .item-info .rating > input:checked ~ label,
.popUp-userSettings .userSettings .setting-item .item-info .rating > input:checked ~ label ~ label {
  background-image: url(../img/svg/star.svg);
}
.popUp-userSettings .userSettings .setting-item .item-info .rating > input:not(:checked) ~ label:hover,
.popUp-userSettings .userSettings .setting-item .item-info .rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url(../img/svg/star.svg);
}
.popUp-userSettings .userSettings .setting-item .item-info .change-btn {
  cursor: pointer;
}
.popUp-userSettings .userSettings .setting-item .item-info .change-btn:hover svg path {
  fill: #272727;
}
.popUp-userSettings .userSettings .setting-item .skills .skill-list .skill {
  width: 160px;
  height: 35px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  margin-bottom: 10px;
}
.popUp-userSettings .userSettings .setting-item .skills .skill-list .skill img {
  width: 17px;
  margin-right: 8px;
}
.popUp-userSettings .userSettings .setting-item .skills .skill-list .skill svg {
  width: 17px;
  margin-right: 8px;
}
.popUp-userSettings .userSettings .setting-item .skills .skill-list .skill svg path {
  fill:#F2553C;
}
.popUp-userSettings .userSettings .setting-item .add-skill {
  position: relative;
}
.popUp-userSettings .userSettings .setting-item .add-skill .select-btn {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 35px;
  z-index: 3;
  cursor: pointer;
}
.popUp-userSettings .userSettings .setting-item .add-skill .skill-head {
  width: 160px;
  height: 35px;
  border-radius: 7px;
  background: rgba(124, 124, 124, 0.0509803922);
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-userSettings .userSettings .setting-item .add-skill .skill-head span {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.1882352941);
  margin-right: 5px;
}
.popUp-userSettings .userSettings .setting-item .add-skill .skill-list {
  margin-top: 10px;
  display: none;
}
.popUp-userSettings .userSettings .setting-item .add-skill .select-btn:checked ~ .skill-list {
  display: block;
}
.popUp-userSettings .userSettings .projects .projects-top .projects-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-right: 10px;
}
.popUp-userSettings .userSettings .projects .projects-top .num {
  padding: 3.5px 12px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  color: #4d4d4d;
  background: #F5F5F5;
  border-radius: 50px;
}
.popUp-userSettings .userSettings .projects .filter-radio {
  cursor: pointer;
  margin: 16px 10px 0 0;
}
.popUp-userSettings .userSettings .projects .filter-radio span {
  border-radius: 7px;
  background: rgba(242, 85, 60, 0.0509803922);
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  color: #836e6c;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-userSettings .userSettings .projects .filter-radio span::before {
  content: url(../img/svg/f-no-check.svg);
  margin-right: 5px;
  width: 8px;
  height: 8px;
}
.popUp-userSettings .userSettings .projects .filter-radio input:checked ~ span {
  background: #f2553c;
  color: #fff;
}
.popUp-userSettings .userSettings .projects .filter-radio input:checked ~ span::before {
  content: url(../img/svg/f-check.svg);
}
.popUp-userSettings .userSettings .projects .project-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.popUp-userSettings .userSettings .projects .project-box .project {
  width: 48%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}
.popUp-userSettings .userSettings .projects .project-box .project .project-name {
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list {
  padding: 10px 30px 30px;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item {
  margin: 15px 20px 0 0;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item:last-child {
  margin-right: 0;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item-name {
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  color: #B5B5B5;
  margin-right: 8px;
  display: inline-block;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item-info {
  background: #F5F5F5;
  border-radius: 20px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item-info img {
  margin-right: 5px;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item-info span {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #b2b2b2;
  display: inline-block;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item .stories {
  background: rgba(193, 80, 139, 0.1019607843);
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item .stories span {
  color: #4d4d4d;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item .socials {
  margin-left: 8px;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item .socials img:first-child {
  margin-right: -10px;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item .executor {
  background: rgba(242, 85, 60, 0.1019607843);
  color: #f2553c;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item .customer {
  background: rgba(59, 202, 68, 0.1019607843);
  color: #2FB436;
}
.popUp-userSettings .userSettings .projects .project-box .project .info-list .item .manager {
  background: rgba(164, 164, 164, 0.1019607843);
  color: #2F2F2F;
}
.popUp-userSettings .userSettings .projects .project-box .project .btn-info {
  padding: 30px;
  border-top: 1px solid #F6F6F6;
}
.popUp-userSettings .userSettings .projects .project-box .project .btn-info .open-order {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9e9e9e;
  transition: 0.3s linear;
}
.popUp-userSettings .userSettings .projects .project-box .project .btn-info .open-order svg {
  margin-left: 10px;
}
.popUp-userSettings .userSettings .projects .project-box .project .btn-info .open-order:hover {
  transform: scale(1.1);
}
.popUp-userSettings .userSettings .projects .project-box .project .btn-info .expand-details {
  width: 206px;
  height: 45px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  color: #9e9e9e;
  margin-top: 10px;
  opacity: 0.5;
}
.popUp-userSettings .userSettings .projects .project-box .project .btn-info .expand-details:hover {
  opacity: 1;
}
.popUp-userSettings .userSettings .userSettings-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  margin-top: 30px;
}
.popUp-userSettings .userSettings .userSettings-btns .delete-user_btn {
  cursor: pointer;
}
.popUp-userSettings .userSettings .userSettings-btns .delete-user_btn svg {
  margin-right: 5px;
}
.popUp-userSettings .userSettings .userSettings-btns .delete-user_btn span {
  color: #ff4f4f;
  opacity: 0.3;
}
.popUp-userSettings .userSettings .userSettings-btns .delete-user_btn:hover svg g, .popUp-userSettings .userSettings .userSettings-btns .delete-user_btn:hover span {
  opacity: 1;
}
.popUp-userSettings .userSettings .userSettings-btns button {
  width: 235px;
  height: 55px;
  border-radius: 12px;
}
.popUp-userSettings .userSettings .userSettings-btns .cancel-changes_btn {
  color: #bfbfbf;
  margin-right: 20px;
}
.popUp-userSettings .userSettings .userSettings-btns .cancel-changes_btn:hover {
  color: #272727;
}
.popUp-userSettings .userSettings .userSettings-btns .save-changes_btn {
  background: #f2553c;
  color: #fff;
}
.popUp-buyMore .popUp-content {
  width: 370px;
}
.popUp-buyMore .popUp-title {
  font-size: 20px;
  line-height: 18px;
  font-weight: 700;
  color: #2f2f2f;
}
.popUp-buyMore .counter-info {
  margin: 25px 0 20px;
}
.popUp-buyMore .counter-info .counter-text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: #2f2f2f;
  margin-right: 14px;
}
.popUp-buyMore .price-item {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
.popUp-buyMore .price-item .price-text {
  color: #2f2f2f;
}
.popUp-buyMore .price-item .price, .popUp-buyMore .price-item .price_im {
  height: 35px;
  border-radius: 12px;
  background: rgba(242, 85, 60, 0.1);
  color: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin: 0 10px 0 15px;
}
.popUp-buyMore .price-item .price_im {
  margin: 0;
  background: rgba(191, 191, 191, 0.1);
  color: rgba(47, 47, 47, 0.4);
}
.popUp-buyMore .balance-item {
  margin: 40px 0 14px;
}
.popUp-buyMore .balance-item .balance-text {
  font-size: 11px;
  line-height: 13px;
  font-weight: 600;
  color: #2f2f2f;
}
.popUp-buyMore .balance-item .balance-text svg {
  margin-right: 5px;
}
.popUp-buyMore .balance-item .balance-inp input {
  width: 61px;
  height: 30px;
  border-radius: 10px;
  background: #f8f8f8;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  margin: 0 5px 0 10px;
}
.popUp-buyMore .balance-item .balance-inp input::placeholder {
  color: rgba(47, 47, 47, 0.3);
}
.popUp-buyMore .balance-item .balance-inp span {
  font-size: 11px;
  font-weight: 500;
  color: #2f2f2f;
}
.popUp-buyMore .proceed-payment__btn {
  width: 190px;
  height: 45px;
  border-radius: 15px;
  background: rgba(59, 202, 68, 0.1);
  font-size: 11px;
  font-weight: 600;
  color: #31b138;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.popUp-buyMore .proceed-payment__btn:hover {
  background: rgba(59, 202, 68, 0.3);
}

.popUp-promoteWork .popUp-content {
  width: 370px;
  padding: 30px;
  border-radius: 20px;
}
.popUp-promoteWork .popUp-title {
  font-size: 20px;
  line-height: 18px;
  color: #2f2f2f;
}
.popUp-promoteWork .promoteWork-info {
  padding: 10px;
  border-radius: 15px;
  background: #F5F5F5;
  display: flex;
  margin: 25px 0;
}
.popUp-promoteWork .promoteWork-info .info-img {
  width: 58px;
  height: 105px;
  border-radius: 7px;
  object-fit: cover;
  margin-right: 10px;
}
.popUp-promoteWork .promoteWork-info .info-title {
  font-size: 12px;
  line-height: 15px;
  color: #2f2f2f;
}
.popUp-promoteWork .promoteWork-info .info-text {
  font-size: 9px;
  line-height: 15px;
  color: #2f2f2f;
  margin-top: 6px;
}
.popUp-promoteWork .promotion-period .period-title {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 10px;
}
.popUp-promoteWork .promotion-period .period-btn {
  width: 32%;
  display: block;
  cursor: pointer;
}
.popUp-promoteWork .promotion-period .period-btn input {
  display: none;
}
.popUp-promoteWork .promotion-period .period-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #9b9b9b;
}
.popUp-promoteWork .promotion-period .period-btn input:checked ~ span {
  background: #f2553c;
  color: #fff;
}
.popUp-promoteWork .calendar {
  margin-top: 15px;
}
.popUp-promoteWork .calendar .field {
  width: 49%;
  position: relative;
}
.popUp-promoteWork .calendar .field input {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: #2f2f2f;
}
.popUp-promoteWork .calendar .field .select {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  font-size: 13px;
  font-weight: 600;
  color: #2f2f2f;
}
.popUp-promoteWork .calendar .field .select.showSelect {
	border-radius: 12px 12px 0 0;
}
.popUp-promoteWork .calendar .field .select-head {
  background: none;
  height: 45px;
}
.popUp-promoteWork .calendar .field .select-head span {
	line-height: 23px;
	color: #9b9b9b;
}
.popUp-promoteWork .calendar .field .select-head svg {
  float: right;
  height: 23px;
}
.popUp-promoteWork .calendar .field .select .options {
  top: 100%;
  background: #f8f8f8;
  color: #9b9b9b;
  border-radius: 0 0 12px 12px;
  padding: 12px 20px;
  box-shadow: none;
  border-top:1px solid #E8E8E8;
  max-height:250px;
  overflow-y:auto;
}
.popUp-promoteWork .calendar .field .select .options .item {
	padding: 12px 0;
	cursor:pointer;
}
.popUp-promoteWork .calendar .field .select .options .item.disable_date {
  opacity: 0.2;
  text-decoration: line-through;
  /*cursor: not-allowed;*/
}

.popUp-promoteWork .calendar .field input::placeholder {
  color: #9b9b9b;
}
.popUp-promoteWork .price-box {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #F4F4F4;
}
.popUp-promoteWork .price-box .price .price-title {
  font-size: 14px;
  font-weight: 600;
  color: #2f2f2f;
}
.popUp-promoteWork .price-box .price .price-active, .popUp-promoteWork .price-box .price .price-day {
  width: 80px;
  height: 35px;
  border-radius: 12px;
  background: rgba(242, 85, 60, 0.1);
  font-size: 14px;
  font-weight: 700;
  color: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-promoteWork .price-box .price .price-day {
  width: 122px;
  background: rgba(191, 191, 191, 0.1);
  color: rgba(47, 47, 47, 0.4);
}
.popUp-promoteWork .price-box .balance {
  margin: 40px 0 15px;
}
.popUp-promoteWork .price-box .balance input[type=checkbox] {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  border: 1px solid #DCDCDC;
  margin-right: 5px;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.popUp-promoteWork .price-box .balance input[type=checkbox]::before {
  content: url(../img/svg/check6.svg);
  position: absolute;
  top: -1px;
  left: -1px;
  display: none;
}
.popUp-promoteWork .price-box .balance label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
  cursor: pointer;
}
.popUp-promoteWork .price-box .balance input[type=checkbox]:checked:before {
  display: block;
}
.popUp-promoteWork .price-box .balance input[type=checkbox]:checked ~ label {
  color: #2f2f2f;
}
.popUp-promoteWork .price-box .balance .sum {
  position: relative;
  display: none;
  align-items: center;
  margin-left: 10px;
}
.popUp-promoteWork .price-box .balance .sum input {
  width: 61px;
  height: 30px;
  border-radius: 10px;
  background: #f8f8f8;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: #2f2f2f;
  margin-right: 5px;
}
.popUp-promoteWork .price-box .balance .sum input::placeholder {
  opacity: 0.3;
}
.popUp-promoteWork .price-box .balance .sum span {
  font-size: 11px;
  font-weight: 500;
  color: #2f2f2f;
}
.popUp-promoteWork .price-box .balance input[type=checkbox]:checked ~ .sum {
  display: flex;
}
.popUp-promoteWork .paynent-btn {
  width: 190px;
  height: 45px;
  border-radius: 15px;
  background: rgba(59, 202, 68, 0.1);
  font-size: 11px;
  font-weight: 600;
  color: #31b138;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.popUp-promoteWork .paynent-btn:hover {
  background: rgba(59, 202, 68, 0.3);
}
.popUp-promoteWork .flatpickr-day.selected, .popUp-promoteWork .flatpickr-day.startRange, .popUp-promoteWork .flatpickr-day.endRange, .popUp-promoteWork .flatpickr-day.selected.inRange, .popUp-promoteWork .flatpickr-day.startRange.inRange, .popUp-promoteWork .flatpickr-day.endRange.inRange, .popUp-promoteWork .flatpickr-day.selected:focus, .popUp-promoteWork .flatpickr-day.startRange:focus, .popUp-promoteWork .flatpickr-day.endRange:focus, .popUp-promoteWork .flatpickr-day.selected:hover, .popUp-promoteWork .flatpickr-day.startRange:hover, .popUp-promoteWork .flatpickr-day.endRange:hover, .popUp-promoteWork .flatpickr-day.selected.prevMonthDay, .popUp-promoteWork .flatpickr-day.startRange.prevMonthDay, .popUp-promoteWork .flatpickr-day.endRange.prevMonthDay, .popUp-promoteWork .flatpickr-day.selected.nextMonthDay, .popUp-promoteWork .flatpickr-day.startRange.nextMonthDay, .popUp-promoteWork .flatpickr-day.endRange.nextMonthDay {
  background: #f2553c;
}

.popUp-delete-portfolio .popUp-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom:15px;
}
.popUp-delete-portfolio .popUp-content {
  width: 360px;
  border-radius: 20px;
  padding: 40px 34px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.popUp-delete-portfolio .popUp-close {
  top: 20px;
  right: 20px;
}
.popUp-delete-portfolio .popUp-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #2f2f2f;
  margin: 15px 0 20px;
}
.popUp-delete-portfolio .btn {
  width: 220px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #F2553C;
  color: #fff;
  transition: 0.3s linear;
  font-size: 11px;
  font-weight: 600;
}
.popUp-delete-portfolio .btn:hover {
  transform: scale(1.1);
}

.popUp-edit .popUp-content {
  width: 970px;
  padding: 30px;
}
.popUp-edit .popUp-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
.popUp-edit .popUp-close {
  top: 30px;
  right: 30px;
}
.popUp-edit .popUp-close svg {
  width: 15px;
}
.popUp-edit .work-btns {
  margin: 20px 0 15px;
}
.popUp-edit .work-btns .ml-auto {
  margin-left: auto;
}
.popUp-edit .work-btns .work-prev, .popUp-edit .work-btns .work-next {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(242, 85, 60, 0.1);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all;
}
.popUp-edit .work-btns .work-prev:hover, .popUp-edit .work-btns .work-next:hover {
  background: rgba(242, 85, 60, 0.3);
}
.popUp-edit .work-btns .work-next {
  margin-left: 20px;
}
.popUp-edit .work-btns .work-upload {
  cursor: pointer;
}
.popUp-edit .work-btns .work-upload input {
  display: none;
}
.popUp-edit .work-btns .work-upload span {
  width: 131px;
  height: 40px;
  border-radius: 12px;
  background: rgba(242, 85, 60, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
.popUp-edit .work-btns .work-upload span:hover {
  background: rgba(242, 85, 60, 0.3);
}
.popUp-edit .work-btns .work-upload span svg {
  margin-right: 5px;
}
.popUp-edit .showBtns .work-prev, .popUp-edit .showBtns .work-next {
  display: flex;
}
.popUp-edit .work {
  width: 240px;
  height: 420px;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.popUp-edit .work .work-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.popUp-edit .work .col-btn {
  width: 20px;
  height: 26px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 3;
}
.popUp-edit .work .remove-btn {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 3;
}
.popUp-edit .work .remove-btn:hover svg path {
  stroke: #F2553C;
}
.popUp-edit .work .upload-work {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  cursor: pointer;
}
.popUp-edit .work .upload-work input {
  display: none;
}
.popUp-edit .work .upload-work .up_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  color: #c5c5c5;
}
.popUp-edit .work .upload-work .up_1 svg {
  margin-bottom: 3px;
}
.popUp-edit .work .upload-work .up_2 {
  width: 72px;
  height: 22px;
  border-radius: 10px;
  background: #fff;
  color: #919191;
  font-size: 10px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
}
.popUp-edit .workUpload .work-img, .popUp-edit .workUpload .col-btn, .popUp-edit .workUpload .remove-btn {
  display: flex;
}
.popUp-edit .workUpload .upload-work {
  transform: translate(-50%, 0);
  top: auto;
  bottom: 25px;
}
.popUp-edit .workUpload .upload-work .up_1 {
  display: none;
}
.popUp-edit .workUpload .upload-work .up_2 {
  display: flex;
}
.popUp-edit .input-item {
  margin-top: 20px;
}
.popUp-edit .input-item label {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 10px;
  display: block;
}
.popUp-edit .input-item .input-box {
  position: relative;
}
.popUp-edit .input-item .input-box input {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  padding-right: 180px;
}
.popUp-edit .input-item .input-box input::placeholder {
  opacity: 0.5;
}
.popUp-edit .input-item .input-box .info-length {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #272727;
  opacity: 0.4;
}
.popUp-edit .input-item .text-box {
  position: relative;
}
.popUp-edit .input-item .text-box textarea {
  width: 100%;
  height: 90px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  resize: none;
}
.popUp-edit .input-item .text-box textarea::placeholder {
  opacity: 0.5;
}
.popUp-edit .price_item .input-box {
  display: flex;
  align-items: center;
}
.popUp-edit .price_item .input-box input {
  width: 142px;
  margin-right: 10px;
  padding: 10px;
  text-align: center;
}
.popUp-edit .price_item .input-box .rubl {
  font-size: 13px;
  font-weight: 500;
  color: #2f2f2f;
}
.popUp-edit .btns {
  margin-top: 30px;
}
.popUp-edit .btns .backTo__btn {
  font-size: 11px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.2);
  margin-right: 30px;
  background: transparent;
}
.popUp-edit .btns .confirm__btn {
  width: 190px;
  height: 45px;
  border-radius: 15px;
  background: rgba(59, 202, 68, 0.1);
  color: #31B138;
  font-size: 11px;
  font-weight: 600;
  transition: 0.3s linear;
}
.popUp-edit .btns .confirm__btn:hover {
  transform: scale(1.1);
}

.edit_video .work {
  width: 100%;
}

.popUp-remove .popUp-close {
  top: 20px;
  right: 20px;
}
.popUp-remove .popUp-content {
  width: 360px;
  padding: 40px 35px;
}
.popUp-remove .input-box {
  width: 220px;
  margin: 0 auto 10px;
}
.popUp-remove .input-box input {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  text-align: center;
}
.popUp-remove .input-box input::placeholder {
  opacity: 0.5;
}
.popUp-remove .btn {
  width: 220px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(255, 79, 79, 0.1);
  color: #FF4F4F;
  transition: 0.3s linear;
  font-size: 11px;
  font-weight: 600;
  margin: 0 auto;
}
.popUp-remove .btn:hover {
  transform: scale(1.1);
}
.popUp-remove .cancel-deletion__btn {
  background: rgba(59, 202, 68, 0.1);
  color: #3BCA44;
}

.popUpHide {
  animation: popUp-anim-hide 0.5s linear !important;
}

@keyframes popUp-anim {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes popUp-anim-hide {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes menu-anim {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}
@keyframes heart-anim {
  from {
    transform: scale(1.5);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 1199px) {
  .header {
    font-size: 12px;
  }
  .header .logo img {
    width: 100px;
  }
  .header-box {
    padding: 12px;
  }
  .header-nav .item {
    padding: 8px 10px;
    margin-right: 5px;
  }
  .header-nav .item:last-child {
    margin-right: 0;
  }
  .header-nav .item a::before {
    width: 4px;
    height: 4px;
    margin-right: 4px;
  }
  .header-nav .item-btn {
    background: #fff;
    position: relative;
    margin-right: 24px;
    padding: 10px 15px;
    border-radius: 12px;
    transition: 0.3s all;
    cursor: pointer;
  }
  .header-nav .item-btn span {
    display: flex;
    align-items: center;
    color: #ababab;
  }
  .header-nav .item-btn span::after {
    content: url(../img/svg/arrow-link.svg);
    margin-left: 7px;
  }
  .header-nav .item-btn .item-list {
    background: #fff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.09);
    padding: 15px 0;
    border-radius: 12px;
  }
  .header-nav .item-btn .item-list li {
    white-space: nowrap;
    padding: 6px 15px;
    color: #a4a4a4;
  }
  .header-nav .item-btn .item-list li:hover {
    background: #fcf6f3;
    color: #505050;
  }
  .header-nav .item-btn .item-box {
    padding-top: 10px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .header-nav .item-btn:hover {
    background: #fcf6f3;
  }
  .header-nav .item-btn:hover span {
    color: #505050;
  }
  .header-nav .item-btn:hover .item-box {
    display: block;
  }
  .header .app-balance {
    padding: 3px;
    border-radius: 12px;
  }
  .header .app-balance .icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }
  .header .userBox {
    margin-right: 15px;
  }
  .header .userBox .avatar {
    width: 35px;
    height: 35px;
  }
  .header .addBtn {
    width: 35px;
    height: 35px;
  }
  .header .addBtn img {
    width: 15px;
  }
  .main .block1 {
    margin: 50px 0 25px;
  }
  .main .block1-item {
    width: 32.5%;
    height: 430px;
    padding: 30px;
  }
  .main .block1-item:last-child {
    width: 32%;
  }
  .main .block1-item:last-child .view-specialist {
    margin: 20px 0 0 0;
    padding: 14px;
  }
  .main .block1-item:last-child .add-order {
    margin-top: 10px;
  }
  .main .block1 .container:last-child {
    padding: 0;
  }
  .main .block1-list {
    overflow-x: scroll;
    padding-bottom: 25px;
    padding-left: 20px;
    margin-top: 10px;
  }
  .main .block1-list li {
    margin-right: 15px;
    white-space: nowrap;
  }
  .main .block1-list li:last-child {
    margin: 0;
  }
  .main .performers-page .performers-body .performers-box .filter .sort, .main .performers-page .performers-body .performers-box .filter .view {
    flex-wrap: wrap;
  }
  .main .performers-page .performers-body .performers-box .filter .column-control {
    display: none;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-video {
    display: none;
  }
  .main .performers-page .performers-body .performers-box .performers-list.col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .performers-page .performers-body .performers-box .performers-control .prev-page, .main .performers-page .performers-body .performers-box .performers-control .next-page {
    width: 45px;
  }
  .main .performers-page .performers-body .performers-box .performers-control .prev-page span, .main .performers-page .performers-body .performers-box .performers-control .next-page span {
    display: none;
  }
  .main .performers-page .performers-body .performers-box .performers-control .prev-page svg, .main .performers-page .performers-body .performers-box .performers-control .next-page svg {
    margin: 0 !important;
  }
  .main .performers-control .prev-page, .main .performers-control .next-page {
    width: 45px;
  }
  .main .performers-control .prev-page span, .main .performers-control .next-page span {
    display: none;
  }
  .main .performers-control .prev-page svg, .main .performers-control .next-page svg {
    margin: 0 !important;
  }
  .main .performer-in .left-info .performer {
    padding: 20px 50px 20px 20px;
  }
  .main .performer-in .left-info .performer .title-text {
    font-size: 25px;
  }
  .main .performer-in .left-info .performer .add-favorites {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
  .main .performer-in .left-info .performer .avatar {
    width: 180px;
    height: 180px;
    margin-right: 20px;
  }
  .main .performer-in .left-info .performer .btns a {
    padding: 0 15px;
  }
  .main .performer-in .performer-video {
    width: 32%;
    height: 500px;
  }
  .main .createOrder-list {
    padding: 20px;
    width: 260px;
    margin-right: 20px;
  }
  .main .createOrder-list li {
    min-width: 220px;
    font-size: 13px;
    height: 40px;
  }
  .main .createOrder-info {
    padding: 20px;
  }
  .main .service-settings .setting-tabs .setting-tab {
    min-width: 220px;
  }
  .main .performer-in .performer-tabs .tab-box .about .offerOrder {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .header {
    font-size: 12px;
    top: 15px;
  }
  .header .logo img {
    width: 100px;
  }
  .header-box {
    padding: 12px;
  }
  .header-nav {
    display: none;
  }
  .header .app-balance {
    padding: 2.5px 10px 2.5px 5px;
    margin-right: 0;
  }
  .header .app-balance .icon {
    margin-right: 10px;
  }
  .header .app-balance span {
    display: none;
  }
  .header .userBox {
    display: none;
  }
  .header .addBtn {
    display: none;
  }
  .menu .menu-item {
    display: flex !important;
  }
  .chat-body {
    padding: 0;
  }
  .chat-body .chat-sub {
    padding: 0 !important;
  }
  .chat-body .chat-list {
    padding: 0 20px;
  }
  .chat-body .chat-list .chat-item {
    display: flex;
    align-items: start;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .chat-body .chat-list .chat-item .avatar {
    display: none;
  }
  .chat-body .chat-list .chat-item .chat-text {
    padding: 8px 16px;
  }
  .chat-body .chat-list .my_chat .info-chat {
    transform: none;
  }
  .chat-body .chat-input {
    width: 100%;
    margin-top: 30px;
    background: #F8F8F8;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: start;
  }
  .chat-body .chat-input .upload-file {
    cursor: pointer;
    min-width: 25px;
    height: 25px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
  }
  .chat-body .chat-input .upload-file:hover {
    box-shadow: none;
  }
  .chat-body .chat-input .send-btn {
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .chat-body .chat-input .send-btn:hover {
    background: #fff;
  }
  .chat-body .chat-input .send-btn:hover svg {
    transform: scale(1.1);
  }
  .chat-body .chat-input .send-btn:hover svg path {
    fill: #f2553c;
  }
  .chat-body .info-chat .right-info .btn-message, .chat-body .info-chat .right-info .btn-success {
    min-width: 35px;
  }
  .chat-body .info-chat .right-info .btn-stoped {
    width: 100%;
  }
  .main {
    margin-top: 95px;
  }
  .main .block1-item {
    width: 49%;
    height: 430px;
    padding: 30px;
  }
  .main .block1-item:last-child {
    width: 100%;
    margin-top: 20px;
  }
  .main .orders {
    flex-direction: column;
  }
  .main .orders .left-info,
  .main .orders .right-info {
    width: 100%;
  }
  .main .orders .right-info {
    border-radius: 0 0 20px 20px;
    position: relative;
  }
  .main .orders .right-info .mob_check {
    display: flex !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    appearance: none;
  }
  .main .orders .right-info .mob_check::after {
    content: url(../img/svg/arrow-down.svg);
    position: absolute;
    top: 30px;
    right: 30px;
  }
  .main .orders .right-info .mob_info {
    display: none;
  }
  .main .orders .right-info .mob_check:checked::after {
    transform: rotate(180deg);
  }
  .main .orders .right-info .mob_check:checked ~ .mob_info {
    display: block;
  }
  .main .openOrders .top-info {
    align-items: end;
  }
  .main .openOrders .top-info-box {
    flex-direction: column;
    align-items: start;
  }
  .main .openOrders .top-info .title-text {
    font-size: 18px;
    line-height: 23px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  .main .openOrders .top-info .info-mob {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    padding: 0 10px 10px;
    width: 100%;
  }
  .main .openOrders .top-info .btn-more {
    display: flex !important;
    align-items: center;
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 11px;
    line-height: 13px;
    font-weight: 600;
    color: #4d4d4d;
  }
  .main .openOrders .top-info .btn-more svg {
    margin-left: 5px;
  }
  .main .openOrders .top-info .info-list {
    flex-wrap: wrap;
    width: 100%;
  }
  .main .openOrders .top-info .info-list .info-item {
    margin-right: 10px;
    display: none;
  }
  .main .openOrders .top-info .info-list .info-item span {
    display: none;
  }
  .main .openOrders .top-info .info-list .info-item:nth-child(1), .main .openOrders .top-info .info-list .info-item:nth-child(4) {
    display: block;
  }
  .main .openOrders .top-info .info-list .info-item:last-child {
    margin-right: 25px;
  }
  .main .openOrders .top-info .info-list .btns {
    margin-top: 15px;
  }
  .main .openOrders .top-info .btns {
    display: none;
  }
  .main .openOrders .top-info #more:checked ~ .btn-more {
    display: none !important;
  }
  .main .openOrders .top-info #more:checked ~ .info-list .info-item {
    display: block !important;
  }
  .main .openOrders .top-info #more:checked ~ .info-list .btns {
    display: flex !important;
  }
  .main .order-box {
    margin: 30px 0 90px;
  }
  .main .order-box .container {
    flex-direction: column;
    padding: 0;
  }
  .main .order-box .order-sidebar {
    width: 100%;
    padding: 0 20px;
  }
  .main .order-box .order-sidebar .sidebar-item {
    min-width: auto;
  }
  .main .order-box .order-sidebar .sidebar-item .item-info {
    padding: 0 5px 0 15px;
  }
  .main .performers-page .performer-head .performer-favorites {
    cursor: pointer;
  }
  .main .performers-page .performer-head .performer-favorites input {
    display: none;
  }
  .main .performers-page .performer-head .performer-favorites svg {
    margin-right: 0;
  }
  .main .performers-page .performer-head .performer-favorites span {
    display: none;
  }
  .main .performers-page .performer-head .subscribe-btn svg {
    margin-right: 0;
  }
  .main .performers-page .performer-head .subscribe-btn span {
    display: none;
  }
  .main .performers-page .performers-body {
    flex-direction: column;
  }
  .main .performers-page .performers-body .performers-sidebar {
    width: 100%;
  }
  .main .performers-page .performers-body .performers-box .filter {
    justify-content: center;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-video {
    display: none;
  }
  .main .performers-page .performers-body .performers-box .performers-list.col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .performer-in .performer-video {
    display: none;
  }
  .main .performer-in .left-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main .performer-in .left-info .performer {
    width: 100%;
    padding: 30px;
    flex-direction: column;
  }
  .main .performer-in .left-info .performer .title-text {
    font-size: 25px;
    margin: 15px 0;
  }
  .main .performer-in .left-info .performer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .main .performer-in .left-info .performer .info-list {
    width: auto;
  }
  .main .performer-in .left-info .performer .info-top {
    flex-direction: column;
  }
  .main .performer-in .left-info .performer .add-favorites {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
  .main .performer-in .left-info .performer .stars {
    margin-left: 0 !important;
  }
  .main .performer-in .left-info .performer .avatar {
    width: 130px;
    height: 130px;
    margin-right: 20px;
  }
  .main .performer-in .left-info .performer .btns {
    flex-direction: column;
    width: 100%;
  }
  .main .performer-in .left-info .performer .btns a {
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }
  .main .performer-in .left-info .performer .btns a:last-child {
    margin-top: 10px;
  }
  .main .performer-in .left-info .performer-video {
    display: flex;
    width: 310px;
    height: 400px;
    margin-top: 20px;
  }
  .main .performer-in .left-info .service {
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main .performer-in .left-info .service-list {
    width: 100%;
  }
  .main .performer-in .left-info .service .list-top {
    margin: 0 auto;
  }
  .main .performer-in .performer-tabs {
    overflow: hidden;
  }
  .main .performer-in .performer-tabs .container {
    padding-right: 0;
  }
  .main .performer-in .performer-tabs .tab-btns {
    width: 100%;
    overflow-x: scroll;
    justify-content: start;
  }
  .main .performer-in .performer-tabs .tab-btns .tab-btn {
    margin-right: 25px;
    width: auto;
  }
  .main .performer-in .performer-tabs .tab-btns .tab-btn:last-child {
    margin-right: 0;
  }
  .main .performer-in .performer-tabs .tab-btns .tab-btn span {
    font-size: 22px;
    border-bottom: none;
    padding: 5px 0 15px;
    white-space: nowrap;
  }
  .main .performer-in .performer-tabs .tab-btns .tab-btn input:checked ~ span {
    border-bottom: none;
  }
  .main .performer-in .performer-tabs .tab-box .box-head {
    margin-bottom: 20px;
  }
  .main .performer-in .performer-tabs .tab-box .box-head .container {
    justify-content: center;
  }
  .main .performer-in .performer-tabs .tab-box .box-head .swiper-btns {
    display: none;
  }
  .main .performer-in .offer-order-box {
    width: 96%;
  }
  .main .balance-head .title-text {
    font-size: 20px;
  }
  .main .balance-head .balance-info {
    padding: 8px 9px;
    border-radius: 12px;
    background: rgba(242, 85, 60, 0.1019607843);
    font-size: 20px;
    line-height: 20px;
    margin: 0 10px 0 20px;
  }
  .main .help .container {
    flex-direction: column;
  }
  .main .help-box {
    margin-right: 0;
  }
  .main .help-base {
    width: 100%;
    margin-top: 30px;
  }
  .main .chat-page {
    padding-bottom: 100px;
  }
  .main .chat-page .chat-title {
    display: block;
  }
  .main .chat-page .container {
    flex-direction: column;
  }
  .main .chat-page .backBtn {
    display: flex;
  }
  .main .chat-page .chat-users {
    width: 100%;
    margin-bottom: 20px;
  }
  .main .chat-page .chat-users .user-list {
    min-width: 100%;
  }
  .main .chat-page .empty-fields {
    display: none;
  }
  .main .chat-page .chat-body .info-chat {
    max-width: 100%;
    width: 100%;
  }
  .main .chat-page .chat-box .chat-head {
    border-bottom: 1px solid #ccc;
  }
  .main .chat-page .chat-box .chat-head .offerOrder-btn {
    display: none;
  }
  .main .chat-page .chat-box .chat-head .chat-menu .menu-info {
    right: 0;
    transform: none;
  }
  .main .chat-page .chat-box .chat-head .chat-menu .menu-info .menu-list::after {
    right: 15px;
    transform: translateX(0) rotate(45deg);
  }
  .main .profile-settings .tab-btns {
    width: 250px;
    padding: 15px;
    margin-right: 20px;
  }
  .main .profile-settings .tab-btns .tab-btn {
    width: 220px;
  }
  .main .profile-settings .tab-btns .tab-btn span {
    padding: 0 10px;
    font-size: 13px;
  }
  .main .profile-settings .tab-box .tab-item {
    padding: 20px;
  }
  .main .createOrder {
    padding-bottom: 100px;
  }
  .main .createOrder .service-select_mob {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    border-radius: 20px;
    background: #fff;
    padding: 0 20px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
  }
  .main .createOrder .rotateIcon svg {
    transform: rotate(180deg);
  }
  .main .createOrder-box {
    flex-direction: column;
  }
  .main .createOrder-list {
    padding: 20px;
    width: 100%;
    margin-right: 20px;
    margin-top: 15px;
    display: none;
  }
  .main .createOrder-list li {
    min-width: 220px;
    font-size: 13px;
    height: 40px;
  }
  .main .createOrder-info {
    padding: 20px;
  }
  .main .chat-page .chat-box .chat-body .orders_all .orders-box .left-info {
    width: 100%;
    padding: 30px 15px !important;
  }
  .main .chat-page .chat-box .chat-body .orders_all .orders-box .right-info {
    width: 100%;
  }
  .main .orders_all .right-info .right-title {
    display: block;
  }
  .main .orders_all .left-info .view-all svg {
    display: block;
  }
  .main .order-page .container {
    padding: 0;
  }
  .main .order-page .page-head {
    padding: 0 20px;
  }
  .main .order-page .order-info {
    padding: 30px 25px;
  }
  .main .order-page .order-info .left {
    width: 100%;
    padding-right: 0;
  }
  .main .order-page .order-info .left .order-name {
    font-size: 18px;
    line-height: 23px;
  }
  .main .order-page .order-info .right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
    margin-top: 30px;
    border-left: none;
    border-top: 1px solid #F2F2F2;
  }
  .main .order-page .order-cards .card-terms, .main .order-page .order-cards .card-project {
    width: 100%;
  }
  .main .myOrders .orders-tab-bnts {
    flex-direction: column;
  }
  .main .myOrders .orders-tab-bnts .tab-btn {
    margin: 0 0 10px 0;
  }
  .main .education .education-item .item-left {
    width: 100%;
    margin-bottom: 10px;
  }
  .main .education .education-item .item-left .item-text br {
    display: none;
  }
  .main .education .education-item .item-left .item-info {
    width: 100%;
  }
  .main .education .education-item .item-result {
    width: 100%;
  }
  .main .dopService {
    margin: 90px 0 60px;
  }
  .main .dopService-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .main .lesson .lesson-item .lesson-body .lesson-text {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
  .main .admin-orders .order-filter {
    display: none;
    flex-direction: column-reverse;
    border-radius: 12px;
  }
  .main .admin-orders .order-filter .select {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .main .admin-orders .order-filter .select-head {
    width: 100%;
    justify-content: space-between;
  }
  .main .admin-orders .order-filter .search {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .main .admin-orders .order-filter .search .search-inp {
    width: 100%;
  }
  .main .admin-orders .order-filter .item {
    flex-direction: column;
  }
  .main .admin-orders .mob-filter {
    display: flex;
  }
  .main .admin-orders input#btn:checked ~ .order-filter {
    display: flex;
  }
  .main .admin-orders .orders .left-info {
    width: 100%;
    border: none;
  }
  .main .admin-orders .orders .btn-info {
    width: 100%;
    padding-bottom: 20px;
  }
  .main .balance .balance-filter {
    display: none;
    flex-direction: column-reverse;
    border-radius: 12px;
  }
  .main .balance .balance-filter .select {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .main .balance .balance-filter .select-head {
    width: 100%;
    justify-content: space-between;
  }
  .main .balance .balance-filter .search {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .main .balance .balance-filter .search .search-inp {
    width: 100%;
  }
  .main .balance .balance-filter .item {
    flex-direction: column;
  }
  .main .balance .mob-filter {
    display: flex;
  }
  .main .balance input#btn:checked ~ .balance-filter {
    display: flex;
  }
  .main .service-settings .container {
    padding: 0;
  }
  .main .service-settings .title-text {
    padding: 0 20px;
  }
  .main .service-settings .setting-tabs {
    padding: 20px;
  }
  .main .service-settings .change textarea {
    max-width: 250px;
  }
  .main .service-settings .service-settings-box {
    flex-direction: column;
  }
  .main .service-settings .setting-tabs {
    width: 100%;
  }
  .main .service-settings .setting-box {
    width: 100%;
    padding: 20px;
  }
  .main .service-settings .setting-box .setting-item .service-body .service-content {
    width: 100%;
  }
  .main .service-settings .setting-box .schedule .desctop {
    display: none;
  }
  .main .service-settings .setting-box .schedule .mobile {
    display: block;
  }
  .main .service-settings .setting-box .setting-item .service-body .service-content:last-child {
    margin-bottom: 20px;
  }
  .main .service-settings .setting-box .save-changes_btn {
    width: 100%;
  }
  .main .service-settings .setting-box .education-body .price-list {
    flex-direction: column;
  }
  .main .service-settings .setting-box .lesson-body .lesson-video {
    height: 170px;
  }
  .main .service-settings .setting-box .input-item {
    width: 100%;
  }
  .main .randomJobs-top .swiper-btns {
    display: none;
  }
  .main .service-settings .setting-box .setting-item .service-head {
    padding: 0 10px;
  }
  .main .service-settings .setting-box .setting-item .service-head span {
    font-size: 16px;
    line-height: 20px;
  }
  .main .randomJobs-title {
    text-align: center;
  }
  .main .randomJobs-top {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .main .randomJobs-top .top-item {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  .main .randomJobs-top .top-item .counter {
    margin: 15px 0;
  }
  .main .performer-in .performer-tabs .tab-box .reviews {
    grid-gap: 15px;
  }
  .main .performer-in .performer-tabs .tab-box .reviews .review {
    padding: 20px;
  }
  .footer-info {
    padding-bottom: 107px;
  }
  .popUp-result .popUp-content {
    width: 96%;
  }
  .popUp-result .popUp-content .result-title {
    flex-direction: column;
    align-items: start;
    margin-bottom: 21px;
  }
  .popUp-result .popUp-content .result-title .title-text {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .popUp-result .popUp-content .swiper-btns {
    display: none;
  }
  .popUp-result .popUp-content .result-item .download {
    display: flex !important;
  }
  .popUp-userSettings .popUp-content {
    width: 96%;
    padding: 20px 15px;
  }
  .popUp-edit .popUp-content {
    width: 98%;
    padding: 30px 16px;
  }
}
@media (max-width: 767px) {
  .title-text {
    font-size: 25px;
    line-height: 100%;
  }
  .main {
    margin-top: 95px;
  }
  .main .block1-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .main .block1-item:last-child {
    width: 100%;
    margin-top: 0;
  }
  .main .block2 .title-text {
    width: 100%;
    text-align: center;
  }
  .main .block2 .swiper-btns {
    display: none;
  }
  .main .block2-item {
    padding: 10px;
  }
  .main .block2-item .item-info {
    padding: 10px;
  }
  .main .block3 {
    margin: 50px 0;
  }
  .main .block3 .title-text {
    width: 100%;
    text-align: center;
  }
  .main .block3 .container {
    margin-bottom: 20px;
  }
  .main .block3 .swiper-btns {
    display: none;
  }
  .main .block3 .title-text {
    width: 100%;
  }
  .main .block3 .swiper-slide {
    width: 310px;
  }
  .main .block3-item {
    height: 174px;
    padding: 10px;
  }
  .main .block3-item .item-info {
    padding: 10px;
  }
  .main .performers .title-text {
    width: 100%;
    text-align: center;
  }
  .main .performers .performers-link {
    display: none;
  }
  .main .profile {
    padding-bottom: 70px;
  }
  .main .profile .profile-info {
    padding: 30px;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .main .profile .profile-info .avatar {
    width: 120px;
    height: 120px;
    margin: 0 0 15px 0;
  }
  .main .profile .profile-info .title-text {
    margin-right: 11px;
  }
  .main .profile .profile-tab .tab-btns {
    margin-bottom: 0;
    overflow-x: scroll;
    padding-bottom: 30px;
  }
  .main .profile .profile-tab .tab-btns .tab-btn {
    white-space: nowrap;
    margin-right: 20px;
  }
  .main .performer-in .slider .swiper-block3 .swiper-slide {
    width: 310px;
  }
  .main .balance-head {
    flex-direction: column;
    align-items: start;
  }
  .main .balance-head .head-info {
    width: 100%;
    justify-content: space-between;
  }
  .main .balance-head .balance-info {
    margin: 0;
  }
  .main .balance-head .balance-box {
    margin: 15px 0;
  }
  .main .balance-table {
    margin-top: 50px;
  }
  .main .balance-table .tr {
    padding-bottom: 25px;
    margin-bottom: 25px;
    font-size: 11px;
    line-height: 15px;
    align-items: start;
  }
  .main .balance-table .tr .td-info {
    flex-direction: column;
    align-items: start;
  }
  .main .balance-table .tr .sum {
    margin-right: 0;
  }
  .main .balance-table .tr .info-text {
    margin: 10px 0;
  }
  .main .balance-table .tr .project-name {
    margin-left: 0;
    padding: 6px 12px;
    line-height: 13px;
  }
  .main .profile-settings {
    flex-direction: column;
  }
  .main .profile-settings .select-mob {
    display: flex;
  }
  .main .profile-settings .tab-btns {
    width: 100%;
    padding: 15px;
    margin: 10px 0 0;
    display: none;
  }
  .main .profile-settings .tab-btns .tab-btn {
    width: 220px;
  }
  .main .profile-settings .tab-btns .tab-btn span {
    padding: 0 10px;
    font-size: 13px;
  }
  .main .profile-settings .show {
    display: block;
  }
  .main .profile-settings .tab-box .tab-item {
    padding: 30px 20px;
  }
  .main .profile-settings .tab-box .general-settings {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .main .profile-settings .tab-box .general-settings .left {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  .main .profile-settings .tab-box .general-settings .left .avatar {
    min-width: auto;
    width: 150px;
    height: 150px;
  }
  .main .profile-settings .tab-box .general-settings .left .btns {
    width: 100%;
  }
  .main .profile-settings .tab-box .general-settings .right {
    align-items: center;
  }
  .main .profile-settings .tab-box .general-settings .right .submit-btn {
    width: 100%;
  }
  .main .profile-settings .tab-box .notification {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  .main .profile-settings .tab-box .notification .socials {
    width: 100%;
  }
  .main .profile-settings .tab-box .notification .socials .socials-item {
    flex-direction: column;
  }
  .main .profile-settings .tab-box .notification .socials .socials-item .social-name {
    width: 100%;
    text-align: center;
  }
  .main .profile-settings .tab-box .notification .socials .socials-item label {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .main .profile-settings .tab-box .notification .socials .socials-item label .btn {
    width: 100%;
    margin: 10px 0 20px;
    height: 50px;
  }
  .main .profile-settings .tab-box .notification .socials .socials-item label .btn::before {
    content: "Подключить";
    font-size: 13px;
    font-weight: 600;
    color: rgba(51, 51, 51, 0.1882352941);
  }
  .main .profile-settings .tab-box .notification .socials .socials-item label .btn::after {
    content: url(../img/svg/check4.svg);
    margin-left: 8px;
    display: none;
  }
  .main .profile-settings .tab-box .notification .submit-btn {
    width: 100%;
    margin-top: 10px;
  }
  .main .profile-settings .tab-box .safety-form .safety-item {
    flex-direction: column;
    text-align: center;
  }
  .main .profile-settings .tab-box .safety-form .safety-item .item {
    flex-direction: column;
  }
  .main .profile-settings .tab-box .safety-form .safety-item .input-box {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .main .profile-settings .tab-box .safety-form .safety-item .input-box .form-inp {
    width: 100% !important;
  }
  .main .profile-settings .tab-box .safety-form .safety-item #new-phone {
    width: 100%;
  }
  .main .profile-settings .tab-box .safety-form .safety-item #sms-code {
    width: 100%;
  }
  .main .profile-settings .tab-box .safety-form .safety-item .saved {
    display: none;
  }
  .main .profile-settings .tab-box .safety-form .safety-item .info-saved {
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
    margin-left: 7px;
  }
  .main .profile-settings .tab-box .safety-form .safety {
    margin-bottom: 30px;
  }
  .main .profile-settings .tab-box .safety-form .safety:last-child .input-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .main .profile-settings .tab-box .safety-form .safety:last-child .input-box:last-child {
    margin: 0;
  }
  .main .profile-settings .tab-box .safety-form .socials {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }
  .main .profile-settings .tab-box .safety-form .socials .social {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .main .profile-settings .tab-box .safety-form .socials .social span {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 50px;
  }
  .main .profile-settings .tab-box .safety-form .submit-btn {
    width: 100%;
  }
  .main .profile-settings .tab-box .status-form .select-status .status {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .main .profile-settings .tab-box .status-form .select-status .status span {
    width: 100%;
  }
  .main .profile-settings .tab-box .status-form .item-form .input-box {
    width: 100%;
    margin-right: 0;
  }
  .main .profile-settings .tab-box .status-form .item-form:last-child .input-box {
    width: 100%;
  }
  .main .profile-settings .tab-box .submit-btn {
    width: 100%;
  }
  .main .createOrder-info {
    padding: 20px;
  }
  .main .createOrder-info .service-box .service-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .main .createOrder-info .service-box .socials-item .socials {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .createOrder-info .service-box .description .input-box input {
    padding: 0 15px;
  }
  .main .createOrder-info .service-box .description .input-box .info-length {
    top: 110%;
  }
  .main .createOrder-info .service-box .description .terms-reference .item {
    width: 100%;
  }
  .main .createOrder-info .service-box .description .terms-reference .item-head {
    padding: 0 10px;
  }
  .main .createOrder-info .service-box .description .terms-reference .item-head span {
    width: 90%;
    display: block;
  }
  .main .createOrder-info .service-box .stories-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
  .main .createOrder-info .service-box .add-packet {
    flex-direction: column;
  }
  .main .createOrder-info .service-box .add-packet .counter {
    margin-top: 15px;
  }
  .main .createOrder-info .service-box .term {
    text-align: center;
  }
  .main .createOrder-info .service-box .term-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .main .createOrder-info .service-box .term-box .item {
    margin-bottom: 10px;
  }
  .main .createOrder-info .service-box .new-packet .packet-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .main .createOrder-info .address .select {
    width: 100%;
    margin-top: 10px;
  }
  .main .createOrder-info .address .check-box {
    width: 100%;
    margin-top: 10px;
  }
  .main .createOrder-info .address .check-box label br {
    display: none;
  }
  .main .createOrder-info .jobs-top {
    flex-direction: column;
    align-items: start;
  }
  .main .createOrder-info .jobs .top-info {
    flex-direction: column;
    width: 100%;
  }
  .main .createOrder-info .jobs-search {
    width: 100%;
    margin: 13px 0 10px;
  }
  .main .createOrder-info .jobs-search .search {
    width: 100%;
  }
  .main .createOrder-info .jobs .indicate-your {
    width: 100%;
  }
  .main .createOrder-info .newServices-item {
    flex-direction: column;
    justify-self: start;
    align-items: start !important;
  }
  .main .createOrder-info .newServices-item .item {
    align-items: start;
    flex-direction: column;
  }
  .main .createOrder-info .newServices-item .faq {
    display: none;
  }
  .main .createOrder-info .newServices-item .info-text {
    display: block !important;
    font-size: 12px;
    line-height: 19px;
    padding-left: 22px;
    margin: 5px 0 15px;
  }
  .main .createOrder-info .newServices-item .sum {
    margin-left: 22px;
  }
  .main .createOrder-info .budget-info .min {
    margin-bottom: 15px;
  }
  .main .createOrder-info .your-budget {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main .createOrder-info .your-budget .counter {
    margin-top: 12px;
  }
  .main .createOrder-info .saf-deal {
    padding: 15px 20px;
  }
  .main .createOrder-info .published .info-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: center;
  }
  .main .createOrder-info .published .info-text a {
    display: block;
    margin: 0 auto;
  }
  .main .createOrder-info .published .info-text br {
    display: none;
  }
  .main .createOrder-info .published .bg {
    top: -20px;
  }
  .main .createOrder-info .control-btns {
    flex-direction: column-reverse;
    width: 100%;
  }
  .main .createOrder-info .control-btns button {
    width: 100%;
  }
  .main .createOrder-info .control-btns .prev-btn {
    margin-top: 15px;
  }
  .main .createOrder-info .control-btns .next-box {
    width: 100%;
  }
  .main .dopService-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .dopService .service {
    padding: 20px 10px;
  }
  .main .dopService .service-title {
    font-size: 18px;
    line-height: 26px;
  }
  .main .dopService .service-text {
    font-size: 13px;
    margin: 10px 0 27px;
  }
  .main .dopService .service-price {
    margin-top: 10px;
    border-radius: 15px;
  }
  .main .education-in .backTo-page {
    background: transparent;
  }
  .main .education-in .education-item .item-left {
    width: 100%;
  }
  .main .education-in .education-item .item-left .item-title {
    font-size: 22px;
    line-height: 29px;
  }
  .main .education-in .education-item .item-left .item-text {
    font-size: 13px;
    line-height: 23px;
    margin: 10px 0 0;
  }
  .main .education-in .education-item .item-result {
    width: 100%;
    margin-top: 20px;
  }
  .main .lesson {
    margin: 30px 0 60px;
  }
  .main .lesson .container {
    padding: 0;
  }
  .main .lesson .lesson-item .lesson-head {
    padding: 20px 25px;
  }
  .main .lesson .lesson-item .lesson-head .num {
    font-size: 14px;
    line-height: 14px;
  }
  .main .lesson .lesson-item .lesson-head .head-info {
    flex-direction: column;
    align-items: start;
  }
  .main .lesson .lesson-item .lesson-head .lesson-name {
    margin: 0 0 0 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .main .lesson .lesson-item .lesson-head .status {
    margin: 7px 0 0 8px;
  }
  .main .lesson .lesson-item .lesson-body {
    padding: 20px 10px;
  }
  .main .lesson .lesson-item .lesson-body .lesson-video {
    height: 191px;
  }
  .main .lesson .lesson-item .lesson-body .lesson-text {
    margin-top: 20px;
    padding: 0 15px;
  }
  .main .help .chat-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 1;
  }
  .main .help .chat-block .order-chat {
    min-width: 320px;
  }
  .main .help .showChat {
    display: flex;
  }
  .main .balance-table .tr .user {
    margin: 10px 0;
  }
  .main .createOrder .order-body .input-count {
    flex-direction: column;
  }
  .main .createOrder .order-body .input-count .counter-item {
    margin-top: 15px;
  }
  .main .createOrder .order-body .dropDown {
    flex-direction: column;
  }
  .main .createOrder .order-body .dropDown .item {
    width: 100%;
    margin: 0;
  }
  .main .createOrder .order-body .add-dropDown {
    margin-top: 15px;
  }
  .main .createOrder .order-body .countries {
    flex-direction: column;
  }
  .main .createOrder .order-body .counter-item {
    flex-direction: column;
  }
  .main .createOrder .order-body .counter-item .counter {
    margin-top: 10px;
  }
  .main .performer-in .performer-tabs .tab-box .reviews {
    display: flex;
    grid-gap: 0;
    overflow-x: scroll;
  }
  .main .performer-in .performer-tabs .tab-box .reviews .review {
    min-width: 300px;
    padding: 15px;
    margin-top: 0;
    position: relative;
    margin-right: 10px;
  }
  .main .performer-in .performer-tabs .tab-box .reviews .review-title {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 40px;
    padding: 7.5px 10px;
  }
  .main .performer-in .performer-tabs .tab-box .reviews .review .stars {
    position: absolute;
    left: 15px;
    top: 115px;
  }
  .main .performer-in .performer-tabs .tab-box .reviews .review-text {
    font-size: 13px;
    line-height: 24px;
  }
  .footer-box {
    padding: 40px 0 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-box p {
    display: block;
    font-size: 9px;
    line-height: 15px;
    font-weight: 500;
    color: #cdcdcd;
    margin-bottom: 30px;
  }
  .footer-box .footer-nav {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-box .logo {
    margin-right: 0;
  }
  .footer-box .logo img {
    width: 133px;
  }
  .footer-box ul {
    margin-right: 0;
    display: flex;
    flex-wrap: nowrap;
    margin-top: 21px;
  }
  .footer-box ul:last-child {
    margin: 17px 0 23px;
  }
  .footer-box ul li {
    margin-bottom: 0;
    font-size: 10px;
    margin-right: 20px;
  }
  .footer-box ul li:last-child {
    margin: 0;
  }
  .footer-info {
    font-size: 9px;
    line-height: 11px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .footer-info p:first-child {
    display: none;
  }
  .popUp-timeExam .popUp-content {
    width: 96%;
    padding: 40px 20px;
  }
  .popUp-timeExam .popUp-close {
    top: 20px;
    right: 20px;
  }
  .popUp-timeExam .swiper-timeExam, .popUp-timeExam .swiper-btns {
    display: none;
  }
  .popUp-timeExam .timeExam-mob {
    display: block;
  }
  .popUp-userSettings .userSettings .projects .project-box .project {
    width: 100%;
  }
  .popUp-userSettings .userSettings .userSettings-btns {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .popUp-userSettings .userSettings .userSettings-btns div {
    width: 100%;
    flex-direction: column;
  }
  .popUp-userSettings .userSettings .userSettings-btns button {
    width: 100%;
  }
  .popUp-userSettings .userSettings .userSettings-btns .save-changes_btn {
    margin: 15px 0;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
  .header .logo img {
    width: 86px;
  }
  .header .loginIn-btn {
    width: 40px;
    height: 30px;
    font-size: 8px;
    margin-right: 5px;
    border-radius: 8px;
  }
  .header .register-btn {
    width: 100px;
    height: 30px;
    font-size: 8px;
    border-radius: 8px;
  }
  .header .register-btn svg {
    display: none;
  }
  .chat-body .info-chat {
    width: 100%;
    padding: 20px;
    flex-direction: column;
    align-items: start;
  }
  .chat-body .info-chat .left-info {
    width: 100%;
  }
  .chat-body .info-chat .right-info {
    margin-top: 20px;
    width: 100%;
  }
  .chat-body .info-chat .right-info .btn-close {
    min-width: 35px;
  }
  .chat-body .info-chat .right-info .btn-pay {
    width: 100%;
  }
  .chat-body .info-chat .rate-form {
    width: 100%;
    margin-top: 15px;
  }
  .main .performers .container {
    padding: 0;
  }
  .main .performers-top {
    padding: 0 20px;
  }
  .main .performers .swiper-performers {
    padding: 20px;
  }
  .main .performers .stories-title,
  .main .performers .reels-title,
  .main .performers .video-title {
    display: none;
  }
  .main .performers .performer {
    position: relative;
  }
  .main .performers .performer .avatar {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .main .performers .performer .info {
    position: relative;
    z-index: 2;
  }
  .main .performers .performer .info-top {
    padding-left: 65px;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: start;
  }
  .main .performers .performer .name {
    font-size: 15px;
  }
  .main .performers .performer .stars img:last-child {
    width: 25px;
  }
  .main .performers .performer .likes {
    margin-top: 3px;
  }
  .main .performers .performer .reviews {
    margin-top: 3px;
  }
  .main .performers .performer .posts {
    display: flex;
    align-items: center;
    margin: 8px 0 15px;
  }
  .main .performers .performer .posts li {
    margin-right: 10px;
    margin-top: 10px;
  }
  .main .performers .performer .posts li:last-child {
    margin-right: 0;
  }
  .main .performers .performer-text {
    font-size: 12px;
    line-height: 24px;
  }
  .main .performers .performer-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .main .performers .performer-list li {
    height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    background: #fff;
    margin: 10px 10px 0 0;
    box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
  }
  .main .performers .performer-list li img {
    margin-right: 8px;
    margin-right: 5px;
  }
  .main .performers .performer .add-btn {
    width: 100%;
    height: 45px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #9e9e9e;
    transition: 0.3s linear;
    position: relative;
    background: transparent;
  }
  .main .performers .performer .add-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #F6F6F6;
    transition: 0.3s linear;
    border-radius: 12px;
  }
  .main .performers .performer .add-btn svg {
    margin-right: 8px;
    position: relative;
    z-index: 2;
  }
  .main .performers .performer .add-btn span {
    position: relative;
    z-index: 2;
  }
  .main .performers .performer .add-btn:hover::before {
    transform: scaleX(1.1);
    background: #F2553C;
  }
  .main .performers .performer .add-btn:hover {
    color: #fff;
  }
  .main .performers .performer .add-btn:hover svg path {
    stroke: #fff;
  }
  .main .performers .performer .add-favorites {
    min-width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #fff2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .main .performers .performer .add-favorites input {
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
  }
  .main .performers .performer .add-favorites svg {
    transition: 0.3s linear;
  }
  .main .performers .performer .add-favorites:hover svg {
    transform: scale(1.2);
  }
  .main .performers .performer .add-favorites input:checked ~ svg path {
    stroke: #FF4F4F;
    fill: #FF4F4F;
  }
  .main .desktop_performers {
    display: none;
  }
  .main .mobile_performers {
    display: block;
    margin-top: 15px;
  }
  .main .mobile_performers .container {
    padding: 0 20px;
  }
  .main .block4 {
    margin-bottom: 60px;
  }
  .main .block4-banner {
    padding: 0;
  }
  .main .block4-banner .banner-bg {
    position: relative;
  }
  .main .block4-banner .banner-bg:first-child {
    display: none;
  }
  .main .block4-banner .banner-bg:last-child {
    display: block;
  }
  .main .block4-info {
    position: relative;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 10px;
  }
  .main .block4-info .info-text {
    margin: 15px 0 20px;
    font-size: 13px;
    line-height: 20px;
    color: #333;
  }
  .main .block4 .create-order {
    width: 230px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    background: #c88470;
    transition: 0.3s linear;
  }
  .main .block4 .create-order svg {
    margin-right: 10px;
    transition: 0.3s linear;
  }
  .main .block4 .create-order:hover {
    transform: scale(1.1);
  }
  .main .block4 .create-order:hover svg path {
    stroke: #fff;
  }
  .main .orders .left-info {
    padding: 30px;
  }
  .main .orders .left-info .order-name {
    font-size: 18px;
    line-height: 23px;
  }
  .main .orders .left-info .order-text {
    margin: 10px 0 24px;
  }
  .main .orders .left-info .info-bottom {
    flex-direction: column;
  }
  .main .orders .left-info .view-all,
  .main .orders .left-info .suspend,
  .main .orders .left-info .remit-payment {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .main .orders .right-info {
    padding: 15px 30px;
  }
  .main .orders .right-info .item {
    margin-right: 0;
    width: 100%;
  }
  .main .orders .right-info .item:last-child {
    flex-direction: column;
  }
  .main .orders .right-info .item .service .item-info {
    margin-top: 10px;
  }
  .main .orders .right-info .mob_check::after {
    top: 20px;
  }
  .main .myOrders .archive-orders span {
    display: none;
  }
  .main .myOrders .archive-orders svg {
    margin-right: 0;
  }
  .main .myOrders .orders {
    margin-top: 30px;
  }
  .main .openOrders .top-info .btns {
    display: none;
  }
  .main .performers-page .filter-btn_mob {
    display: flex !important;
    width: 100%;
    height: 50px;
    border-radius: 20px;
    background: #fff;
    padding: 0 20px;
    margin-top: 10px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
  }
  .main .performers-page .filter-btn_mob span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    color: #2f2f2f;
    opacity: 0.3;
  }
  .main .performers-page .filterClicked svg {
    transform: rotate(180deg);
  }
  .main .performers-page .performer-head {
    align-items: start;
  }
  .main .performers-page .performer-head .head-info {
    flex-direction: column;
  }
  .main .performers-page .performer-head .performer-found {
    margin-top: 14px;
  }
  .main .performers-page .performer-head .performer-favorites {
    margin-top: 7px;
  }
  .main .performers-page .performer-head .subscribe-btn {
    margin-top: 5px;
  }
  .main .performers-page .performer-head .subscribe-btn svg {
    width: 20px;
    height: 20px;
  }
  .main .performers-page .performers-body .performers-sidebar {
    padding: 20px;
    display: none;
    margin: 10px 0 0;
  }
  .main .performers-page .performers-body .performers-sidebar .sidebar {
    min-width: 100%;
  }
  .main .performers-page .performers-body .performers-box {
    margin-top: 0;
  }
  .main .performers-page .performers-body .performers-box .filter {
    height: auto;
    padding: 20px;
    display: none;
    margin: 10px;
  }
  .main .performers-page .performers-body .performers-box .filter-info {
    flex-direction: column;
  }
  .main .performers-page .performers-body .performers-box .filter .view {
    margin: 15px 0;
  }
  .main .performers-page .performers-body .performers-box .performers-list {
    margin-top: 20px;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .top-info {
    flex-direction: column;
    align-items: start;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .top .avatar {
    width: 50px;
    height: 50px;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .top .likes, .main .performers-page .performers-body .performers-box .performers-list .performer-info .top .status {
    margin-top: 3px;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .info-list li {
    flex-direction: column;
    align-items: start;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .info-list li span {
    margin: 0 0 5px 0;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .info-text {
    width: 100%;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .btns {
    flex-direction: column-reverse;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .btns_mob {
    justify-content: space-between;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .offer-order {
    width: 100% !important;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .offer-order svg {
    display: block;
  }
  .main .performers-page .performers-body .performers-box .performers-list .performer-info .btns .view-more {
    width: 100%;
    margin-top: 10px !important;
  }
  .main .performers-page .performers-body .performers-box .performers-control .prev-page, .main .performers-page .performers-body .performers-box .performers-control .next-page {
    width: 45px;
  }
  .main .performers-page .performers-body .performers-box .performers-control .prev-page span, .main .performers-page .performers-body .performers-box .performers-control .next-page span {
    display: none;
  }
  .main .performers-page .performers-body .performers-box .performers-control .prev-page svg, .main .performers-page .performers-body .performers-box .performers-control .next-page svg {
    margin: 0 !important;
  }
  .main .performers-page .performers-body .performers-box .performers-control .page-list {
    margin: 0;
  }
  .main .performers-page .performers-body .performers-box .performers-control .page-list li {
    margin: 0;
  }
  .main .performers-page .performers-body .show {
    display: flex !important;
  }
  .main .performers-control .prev-page, .main .performers-control .next-page {
    width: 45px;
  }
  .main .performers-control .prev-page span, .main .performers-control .next-page span {
    display: none;
  }
  .main .performers-control .prev-page svg, .main .performers-control .next-page svg {
    margin: 0 !important;
  }
  .main .performers-control .page-list {
    margin: 0;
  }
  .main .performers-control .page-list li {
    margin: 0;
  }
  .main .performers_order .performer-head .sort {
    display: none;
  }
  .main .performer-in .offer-order-box {
    padding: 30px 20px;
  }
  .main .performer-in .offer-order-box .title {
    font-size: 18px;
    line-height: 26px;
    margin: 15px 0 20px;
  }
  .main .balance-head .balance-box {
    width: 100%;
    position: relative;
    z-index: 6;
    padding: 13px;
  }
  .main .balance-head .balance-box .box-faq {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
  }
  .main .balance-head .balance-box .box-faq::before {
    content: url(../img/svg/arrow-down.svg);
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .main .balance-head .balance-box .box-faq .faq-icon {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .main .balance-head .balance-box .box-faq .box-list {
    width: 100%;
    background: #f5f5f5;
    border-radius: 0 0 12px 12px;
    top: 90%;
    padding-top: 25px;
  }
  .main .balance-head .balance-box .box-faq .box-list::before {
    display: none;
  }
  .main .balance-head .balance-box .box-faq .box-list .list {
    max-height: 120px;
    overflow-y: scroll;
    padding-right: 5px;
  }
  .main .balance-head .balance-box .box-faq .box-list .list::-webkit-scrollbar {
    width: 3px;
    border-radius: 10px;
    background: rgba(217, 217, 217, 0.1254901961);
  }
  .main .balance-head .balance-box .box-faq .box-list .list::-webkit-scrollbar-thumb {
    width: 3px;
    border-radius: 10px;
    background: #D9D9D9;
  }
  .main .balance-head .balance-box .box-faq .box-list .list li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0666666667);
  }
  .main .balance-head .balance-box .box-faq .box-list .list li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .main .balance-head .balance-box .box-faq .box-list .list li .sum {
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
  }
  .main .balance-head .balance-box .box-faq .box-list .list li .data {
    font-size: 10px;
    font-weight: 500;
  }
  .main .balance-head .balance-box .box-faq .box-list .list li .project {
    font-size: 9px;
    opacity: 0.7;
    display: flex;
  }
  .main .balance-head .balance-box .box-faq .box-list .list li .project a {
    text-decoration: underline;
    max-width: 120px;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-left: 3px;
    cursor: pointer;
  }
  .main .balance-head .balance-box .box-faq .box-list .list li .project a:hover {
    color: #f2553c;
  }
  .main .balance-head .topUp-balance {
    width: 100%;
    box-shadow: 0px 10px 20px 0px rgba(59, 202, 68, 0.4);
  }
  .main .help-top .title-text {
    width: 80%;
  }
  .main .help-top .archive-btn span {
    display: none;
  }
  .main .help-top .archive-btn svg {
    margin-right: 0;
  }
  .main .help-item {
    padding-bottom: 90px;
  }
  .main .help-item .item-head {
    padding: 20px;
  }
  .main .help-item .item-head .head-title {
    width: 100%;
    font-size: 18px;
    margin-right: 0;
  }
  .main .help-item .arrow-btn {
    top: auto;
    bottom: 20px !important;
    width: 95%;
    right: 50%;
    transform: translateX(50%);
    background: #F6F6F6;
  }
  .main .help-item .arrow-btn::before {
    content: "Развернуть подробнее";
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
    opacity: 0.4;
  }
  .main .help-item .arrow-btn svg {
    width: 14px;
  }
  .main .help-item .arrow-btn:hover::before {
    opacity: 1;
  }
  .main .help-item input.arrow:checked ~ .arrow-btn::before {
    content: "Свернуть";
  }
  .main .help-base .base-list {
    min-width: 100%;
  }
  .main .help_exam .help-item {
    padding-bottom: 20px;
  }
  .main .chat-page .chat-box .chat-head .chat-menu .menu-list .offerOrder-btn {
    display: block;
  }
  .main .page-head .viewed {
    display: none;
  }
  .main .order-page .right .info-item .item-downloads {
    display: flex;
    flex-wrap: wrap;
  }
  .main .order-page .right .info-item .item-downloads a {
    width: 100%;
    margin-right: 0;
    justify-content: space-between !important;
  }
  .main .order-page .right .info-item .dop-list li {
    width: 100%;
    justify-content: space-between;
    margin-right: 0;
  }
  .main .order-page .order-cards .card-title {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
  .main .order-page .order-cards .card-title br {
    display: none;
  }
  .main .order-page .order-cards .card-terms {
    flex-direction: column;
    padding: 30px;
  }
  .main .order-page .order-cards .card-terms .card-title {
    margin-bottom: 25px;
  }
  .main .order-page .order-cards .card-terms .orders .right-info .item:last-child {
    flex-direction: row;
  }
  .main .order-page .order-cards .card-project {
    padding: 30px;
  }
  .main .order-page .order-cards .card-project .btns {
    width: 100%;
  }
  .main .order-page .order-cards .card-project .btns .btn_mob {
    width: 100%;
  }
  .main .order-page .order-cards .card-project .btns .change-terms_btn {
    margin-right: 0;
    width: 85%;
  }
  .main .order-page .order-cards .card-project .btns .reply_btn {
    width: 100%;
  }
  .main .order-page .order-cards .card-project .btns .clocked {
    width: 100%;
  }
  .main .order-page .order-cards .card-project .btns .clocked .change-terms_btn {
    margin-left: 0;
    width: 100%;
  }
  .main .customer-info-page .info-box .info-title {
    font-size: 21px;
    line-height: 27px;
  }
  .main .order-box .order-sidebar .sidebar-item .item-title {
    font-size: 13px !important;
  }
  .main .order-box .order-sidebar .sidebar-item .item-btn .upload-btn span {
    font-size: 10px;
    width: 89px;
    height: 30px;
  }
  .main .education .select-mob {
    display: flex;
  }
  .main .education .education-title {
    background: #fff;
    flex-direction: column;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    padding: 15px;
    margin-top: 5px;
    display: none;
  }
  .main .education .education-title .title-text {
    font-size: 20px;
  }
  .main .education .education-title .education-btn:last-child {
    margin-top: 15px;
  }
  .main .education .education-item {
    padding: 20px;
  }
  .main .education .education-item .item-left .item-info {
    flex-direction: column;
    padding: 20px;
  }
  .main .education .education-item .item-left .item-info .info {
    margin-right: 0;
  }
  .main .education .education-item .item-left .item-info .info:nth-child(2) {
    margin-left: 20px;
  }
  .main .education .education-item .item-left .item-info .price-btn {
    width: 100%;
    margin-top: 15px;
  }
  .main .lesson .lesson-item .lesson-body .exam .countdown, .main .main .lesson .lesson-item .lesson-body .exam .countdown-title {
    font-size: 30px;
  }
  .main .lesson .lesson-item .lesson-body .exam .exam-faqs .faqs-box {
    margin: 0;
  }
  .main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-faq {
    padding: 14px 10px;
    font-size: 14px;
    line-height: 21px;
  }
  .main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-answer {
    justify-content: space-between;
    margin: 10px 0 30px;
  }
  .main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-answer .answer {
    width: 100%;
    margin: 10px 0 0;
  }
  .main .lesson .lesson-item .lesson-body .exam .exam-faqs .swiper-exam-slide .exam-answer .answer-text {
    width: 100%;
  }
  .main .lesson .lesson-item .lesson-body .exam {
    padding: 15px;
  }
  .main .lesson .lesson-item .lesson-body .lesson-video .play-btn {
    width: 50px;
    height: 50px;
  }
  .main .performer-in .left-info .service .list_check li {
    align-items: start;
  }
  .main .performer-in .left-info .service .list_check li::before {
    display: none;
  }
  .main .performer-in .left-info .service .list_check li .item {
    flex-wrap: wrap;
  }
  .main .performer-in .left-info .service .list_check li .item .item-info {
    width: 100%;
  }
  .main .performer-in .left-info .service .list_check li .item .item-info .info {
    flex-direction: column;
    align-items: start;
  }
  .main .performer-in .left-info .service .list_check li .item .item-info .info:nth-child(2) {
    margin-right: 10px;
  }
  .main .performer-in .left-info .service .list_check li .item .item-info .info:last-child {
    transform: translateY(10px);
    white-space: nowrap;
  }
  .main .performer-in .change {
    margin-top: 9px;
  }
  .main .performer-in .change input {
    width: 50px !important;
  }
  .main .performer-in .change .change-btn::before {
    display: block;
  }
  .main .performer-in .left-info .service .list_skill li {
    padding: 10px;
  }
  .main .performer-in .slider .head-btn {
    flex-direction: column;
  }
  .main .performer-in .slider .head-btn .upload-btn {
    margin-top: 15px;
  }
  .main .admin-orders .orders .info-top .avatar {
    margin-bottom: 15px;
  }
  .main .performer-in .performer-tabs .tab-box .about {
    margin-bottom: 40px;
  }
  .main .performer-in .performer-tabs .tab-box .about-photos {
    display: flex;
    grid-gap: 0;
    overflow-x: scroll;
  }
  .main .performer-in .performer-tabs .tab-box .about-photos .photo {
    min-width: 270px;
    height: 280px;
    margin-right: 10px;
  }
  .main .performer-in .performer-tabs .tab-box .about-photos .zoomPhoto {
    position: fixed;
    height: 100vh !important;
    top: 0;
    left: 0;
    z-index: 9999;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main .performer-in .performer-tabs .tab-box .about-photos .zoomPhoto img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }
  .main .performer-in .performer-tabs .tab-box .about .about-text {
    padding-right: 20px;
    margin-top: 20px;
  }
  .main .performer-in .performer-tabs .tab-box .information {
    width: 100%;
    padding: 0 20px;
  }
  .main .performer-in .performer-tabs .tab-box .information li strong {
    display: block;
    margin-right: 10px;
  }
  .main .performer-in .performer-tabs .tab-box .about .description-box {
    width: 96%;
    margin-bottom: 50px;
  }
  .main .performer-in .performer-tabs .tab-box .about .description-box .btns {
    flex-direction: column;
  }
  .main .performer-in .performer-tabs .tab-box .about .description-box .btns button {
    width: 100%;
    margin-top: 10px;
  }
  .main .createOrder .service-box .term .term-btns .term-btn {
    width: 49%;
  }
  .main .createOrder .service-box .calendar-box .swiper-btns div span {
    font-size: 10px;
  }
  .main .createOrder .service-box .term .term-item .item {
    width: 100%;
    text-align: left;
  }
  .main .createOrder .service-box .term .term-interval .interval-box {
    text-align: left;
  }
  .popUp-content {
    width: 97% !important;
    padding: 30px 20px;
  }
  .popUp-acceptOffer .acceptOffer-title {
    font-size: 18px;
  }
  .popUp-acceptOffer .acceptOffer .user-info {
    flex-direction: column;
    position: relative;
    padding-left: 40px;
  }
  .popUp-acceptOffer .acceptOffer .user-info .user {
    font-size: 13px;
  }
  .popUp-acceptOffer .acceptOffer .user-info .user .avatar {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
  }
  .popUp-acceptOffer .acceptOffer .btns {
    flex-direction: column-reverse;
  }
  .popUp-acceptOffer .acceptOffer .btns .backTo {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .popUp-acceptOffer .acceptOffer .btns .acceptOffer__btn {
    width: 100%;
  }
  .popUp-offerOrder .popUp-content {
    padding: 40px 20px 20px;
  }
  .popUp-offerOrder .offerOrder .popUp-title {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  .popUp-offerOrder .offerOrder .user {
    justify-content: center;
    margin: 15px auto 20px;
  }
  .popUp-offerOrder .offerOrder .orders .order-title {
    text-align: center;
    margin-top: 0;
  }
  .popUp-offerOrder .offerOrder .orders .order {
    padding: 20px 20px 90px;
  }
  .popUp-offerOrder .offerOrder .orders .order-checkbox {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    height: 50px;
    background: #F6F6F6;
    border-radius: 12px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .popUp-offerOrder .offerOrder .orders .order-checkbox::before {
    content: "Выбрать";
    font-size: 12px;
    font-weight: 700;
    color: rgba(47, 47, 47, 0.3137254902);
    margin-right: 10px;
  }
  .popUp-offerOrder .offerOrder .orders .order-checkbox::after {
    content: url(../img/svg/check5.svg);
    width: auto;
    height: auto;
    background: transparent;
    top: 0;
    transform: none;
    right: 0;
    display: block;
    position: relative;
  }
  .popUp-offerOrder .offerOrder .orders .order-checkbox:hover::after {
    display: flex;
  }
  .popUp-offerOrder .offerOrder .orders .order-checkbox:checked {
    background: #f2553c;
  }
  .popUp-offerOrder .offerOrder .orders .order-checkbox:checked::before {
    color: #fff;
  }
  .popUp-offerOrder .offerOrder .orders .order-checkbox:checked::after {
    content: url(../img/svg/check4.svg);
    background: transparent;
  }
  .popUp-offerOrder .offerOrder .orders .order-checkbox:checked:hover::after {
    content: url(../img/svg/close3.svg);
  }
  .popUp-offerOrder .offerOrder .orders .order-name {
    font-size: 13px;
    width: 100%;
  }
  .popUp-offerOrder .offerOrder .orders .order .order-info {
    width: 100%;
    flex-direction: column;
  }
  .popUp-offerOrder .offerOrder .orders .create-newOrder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 100%;
    height: 74px;
    border-radius: 12px;
    background: rgba(240, 240, 240, 0.3137254902);
    margin: 20px 0 30px;
    font-size: 11px;
    line-height: 17px;
    color: rgba(47, 47, 47, 0.3764705882);
    cursor: pointer;
  }
  .popUp-offerOrder .offerOrder .orders .create-newOrder .create-title {
    font-weight: 600;
    text-decoration: underline;
  }
  .popUp-offerOrder .offerOrder .orders .create-newOrder:hover .create-title {
    color: #272727;
  }
  .popUp-offerOrder .offerOrder .orders .btns {
    justify-content: center;
    flex-direction: column-reverse;
  }
  .popUp-offerOrder .offerOrder .orders .btns button {
    width: 100%;
  }
  .popUp-offerOrder .offerOrder .orders .btns .backTo-btn {
    margin: 0;
  }
  .popUp-response .text-box .info-length, .popUp-Offer-terms .text-box .info-length {
    top: 110%;
    right: 0;
    opacity: 0.4;
  }
  .popUp-response .bottom, .popUp-Offer-terms .bottom {
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    margin-top: 40px;
  }
  .popUp-response .backTo, .popUp-Offer-terms .backTo {
    width: 100%;
    margin: 10px 0 0;
  }
  .popUp-response .send-btn, .popUp-Offer-terms .send-btn {
    width: 100%;
  }
  .popUp-Offer-terms .popUp-title, .popUp-Offer-terms .popUp-text {
    text-align: center;
    width: 100%;
  }
  .popUp-Offer-terms .counter-item {
    margin: 10px auto 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .popUp-Offer-terms .counter-item .counter-inp {
    width: 110px;
    height: 40px;
  }
  .popUp-Offer-terms .counter-item .counter .plus, .popUp-Offer-terms .counter-item .counter .minus {
    width: 40px;
    height: 40px;
  }
  .popUp-Offer-terms .total-cost {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .popUp-Offer-terms .total-cost .total {
    font-weight: 600;
    margin: 10px 30px 0 0;
  }
  .popUp-Offer-terms .total-cost .total-title {
    font-size: 12px;
    line-height: 19px;
    color: rgba(51, 51, 51, 0.2509803922);
  }
  .popUp-Offer-terms .total-cost .total-sum {
    font-size: 20px;
    line-height: 23px;
    margin-top: 6px;
  }
  .popUp-Offer-terms .text-box {
    margin: 15px 0 10px;
  }
  .popUp-result .btns {
    flex-direction: column-reverse;
  }
  .popUp-result .btns .backTo {
    margin-top: 10px;
  }
  .popUp-verdict {
    text-align: center;
  }
  .popUp-verdict .counter-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .popUp-verdict .counter-item .counter .input-box::after {
    content: "%";
  }
  .popUp-buyMore .popUp-content {
    width: 96%;
  }
  .popUp-promoteWork .popUp-content {
    width: 96%;
    padding: 20px;
  }
  .popUp-edit .input-item .input-box input {
    padding: 20px;
  }
  .popUp-edit .input-item .input-box .info-length {
    top: 45px;
  }
  .popUp-edit .btns {
    flex-direction: column-reverse;
  }
  .popUp-edit .btns .backTo__btn {
    margin: 20px 0 0;
  }
  
}/*# sourceMappingURL=main.css.map */

.main .service-settings .setting-box .setting-item .order-body {
  display: none;
}
.main .service-settings .setting-box .setting-item .showService .order-body {
  display: block;
}

.new-packet .term.error {
	background: red !important;
	color: #fff !important;
}

.term > .faq {
	display:inline-block;
	text-align:center;
	padding:0 !important;
}
.term > .faq .faq-btn {
	display:inline-block;
	text-align:center;
	padding:0 !important;
	width: 16px !important;
	height: 16px !important;
}
.main .term > .faq .faq-info {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff !important;
  border-radius: 12px !important;
  width: 143px;
  padding: 8px !important;
  font-size: 11px !important;
  line-height: 16px !important;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 10;
  text-align: left;
}

.main .term > .faq .faq-info.term-faq-info {
  font-size: 10px !important;
  width: 250px;
  line-height: 16px !important;
}
.main .term > .faq .term-faq-info-6 {
  color: #E83246 !important;
  font-weight: bold !important;
  line-height: inherit !important;
  padding: 0 !important;
  font-size: 11px !important;
}
.term-faq-info-7 {
  font-size: 11px !important;
  font-weight: bold !important;
  padding: 0 !important;
  line-height: inherit !important;
}
.term-faq-info-1 {
  background: #F5F5F5 !important;
  border-radius: 10px !important;
  padding: 10px !important;
  display: inline-block;
  margin-top: 7px;
  line-height: 16px !important;
}
.term-faq-info-2 {
  font-size: 11px !important;
  font-weight: bold !important;
  background: none !important;
  padding: 0 !important;
  line-height: 16px !important;
}
.term-faq-info-3 {
  font-size: 11px !important;
  font-weight: normal !important;
  background: none !important;
  padding: 0 !important;
  line-height: 16px !important;
}
.term-faq-info-4 {
  background: #FF4F4F17;
  width: 150px;
  height: 30px;
  border-radius: 15px;
  font-family: Montserrat;
  font-size: 10px;
  line-height: 11px;
  letter-spacing: 0%;
  text-align: center;
  font-weight: bold;
  color: #FF4F4F;
  margin-top: 7px;
}
.term-faq-info-5 {
  background: #3BCA4438;
  width: 59px;
  height: 30px;
  border-radius: 15px;
  font-family: Montserrat;
  font-size: 10px;
  line-height: 11px;
  letter-spacing: 0%;
  text-align: center;
  font-weight: bold;
  color: #31B138;
  margin-top: 7px;
}

.main .sidebar-item .input-box input {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
}

.item-text a {
  color: #f2553c;
  text-decoration: underline;
}

.popUp-timeExam .timeExam-btn.disabled {
  background: #fbe7dc;
  color: #cdb2a2;
  pointer-events: none;
  box-shadow: none;
}

.info-top-span {
	font-family: "Montserrat";
	display:inline-block;
	font-weight: 500;
	font-size: 8px;
	line-height: 15px;
	padding:0 5px;
	letter-spacing: 0%;
	height: 15;
	opacity: 1;
	border-radius: 100px;
	background:#F6F6F6;
	color:#B0B0B0;
	margin-bottom:5px;
}
.info-top-span b {
  font-weight: 600;
}


.main .performer-in .left-info .service-title .promote-btn {
  padding: 7px 10px;
  border-radius: 20px;
  background: #f2553c;
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
  vertical-align: middle;
}
.main .performer-in .left-info .service-title .promote-btn:hover {
  background: #d84933;
}

.divTableBody .row .cell:not(.active) {
	pointer-events: none;
}

.select_work {
  width: 100px;
  height: 45px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  padding-right: 180px;
}

.get_page_link.success, .get_page_link.expectation {
	cursor:pointer;
}

.main .order-box .order-sidebar .sidebar-item .item-title {
  padding-right: 45px;
}
.main .order-box .order-sidebar .sidebar-item .item-title .upload_btn2 {
  cursor: pointer;
  width: 111px;
  height: 30px;
  border-radius: 20px;
  background: rgba(242, 85, 60, 0.062745098);
  font-size: 12px;
  font-weight: 600;
  color: #f2553c;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-top: -7px;
  margin-bottom: -7px;
}
.main .order-box .order-sidebar .sidebar-item .item-title .upload_btn2::before {
  content: url(../img/svg/upload1.svg);
  margin-right: 5px;
  margin-top: 3px;
}
.main .order-box .order-sidebar .sidebar-item .item-title .upload_btn2:hover {
  background: rgba(242, 85, 60, 0.1882352941);
}

.chat-body .info-chat .right-info .btn-stoped.act {
	width:auto;
}
.chat-body .info-chat .right-info .btn-stoped span span {
  display: inline-block;
  background: #fff;
  border-radius: 3px;
  color: #333;
  padding:2px 3px;
  margin-left:5px;
}


.buyMore input.check[type=checkbox] {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  border: 1px solid #DCDCDC;
  margin-right: 5px;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.buyMore input.check::before {
  content: url(../img/svg/check6.svg);
  position: absolute;
  top: -1px;
  left: -1px;
  display: none;
}
.buyMore input.check:checked::before {
  display: block;
}
