.black {
    color: #000;
}
.gray {
    color: gray;
}
.body-login {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background: #EFF4FA;
    padding: 48px 30px;
}

.sign_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient( ellipse 50% 35% at 50% 50%, #6b1839, transparent );
    text-transform: uppercase;
    font-size: 1.5em;
    color: #ffe6ff;
    text-shadow: 0 0 0.6rem #ffe6ff, 0 0 1.5rem #ff65bd, -0.2rem 0.1rem 1rem #ff65bd, 0.2rem 0.1rem 1rem #ff65bd, 0 -0.5rem 2rem #ff2483, 0 0.5rem 3rem #ff2483;
    animation: shine 2s forwards, flicker 3s infinite;
    line-height: 50px;
}

@keyframes blink {
  0%,
  22%,
  36%,
  75% {
    color: #ffe6ff;
    text-shadow: 0 0 0.6rem #ffe6ff, 0 0 1.5rem #ff65bd,
      -0.2rem 0.1rem 1rem #ff65bd, 0.2rem 0.1rem 1rem #ff65bd,
      0 -0.5rem 2rem #ff2483, 0 0.5rem 3rem #ff2483;
  }
  28%,
  33% {
    color: #ff65bd;
    text-shadow: none;
  }
  82%,
  97% {
    color: #ff2483;
    text-shadow: none;
  }
}

.flicker {
  animation: shine 2s forwards, blink 3s 2s infinite;
}

.fast-flicker {
  animation: shine 2s forwards, blink 10s 1s infinite;
}

@keyframes shine {
  0% {
    color: #6b1839;
    text-shadow: none;
  }
  100% {
    color: #ffe6ff;
    text-shadow: 0 0 0.6rem #ffe6ff, 0 0 1.5rem #ff65bd,
      -0.2rem 0.1rem 1rem #ff65bd, 0.2rem 0.1rem 1rem #ff65bd,
      0 -0.5rem 2rem #ff2483, 0 0.5rem 3rem #ff2483;
  }
}

@keyframes flicker {
  from {
    opacity: 1;
  }

  4% {
    opacity: 0.9;
  }

  6% {
    opacity: 0.85;
  }

  8% {
    opacity: 0.95;
  }

  10% {
    opacity: 0.9;
  }

  11% {
    opacity: 0.922;
  }

  12% {
    opacity: 0.9;
  }

  14% {
    opacity: 0.95;
  }

  16% {
    opacity: 0.98;
  }

  17% {
    opacity: 0.9;
  }

  19% {
    opacity: 0.93;
  }

  20% {
    opacity: 0.99;
  }

  24% {
    opacity: 1;
  }

  26% {
    opacity: 0.94;
  }

  28% {
    opacity: 0.98;
  }

  37% {
    opacity: 0.93;
  }

  38% {
    opacity: 0.5;
  }

  39% {
    opacity: 0.96;
  }

  42% {
    opacity: 1;
  }

  44% {
    opacity: 0.97;
  }

  46% {
    opacity: 0.94;
  }

  56% {
    opacity: 0.9;
  }

  58% {
    opacity: 0.9;
  }

  60% {
    opacity: 0.99;
  }

  68% {
    opacity: 1;
  }

  70% {
    opacity: 0.9;
  }

  72% {
    opacity: 0.95;
  }

  93% {
    opacity: 0.93;
  }

  95% {
    opacity: 0.95;
  }

  97% {
    opacity: 0.93;
  }

  to {
    opacity: 1;
  }
}

.login {
    height: 100%;
}
.login__top-button {
    display: none;
}
.login__title {
    font-weight: normal;
    font-size: 32px;
    line-height: 37px;
    color: #444D57;
    margin: 0;
}
.login__title span {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
}
.login__form {
    width: 100%;
    max-width: 600px;
    margin: 28px auto 0;
}
.login__label {
    width: 100%;
    margin: 0 0 28px;
    display: block;
}
.login__label:last-child {
    margin: 0;
}
.login__forgotpass {
    text-align: center;
    margin: 18px 0 35px;
}
.login__hint {
    color: #495E78;
    font-size: 20px;
    line-height: 23px;
}
.login__restore {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #2B78F9;
    text-decoration: underline;
}
.login__input {
    width: 100%;
    background-color: #fff;
    border: 1px solid #5181B8 !important;
    border-radius: 8px;
    padding: 19px 18px 9px 18px;
    font-size: 24px;
    line-height: 28px;
}
.login__input::placeholder {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: rgba(100, 100, 100, 0.79);
}
.login__rememberme {
    text-align: left;
    display: flex;
    align-items: center;
    margin: 0 0 40px;
}
.login__rememberme--hint {
    color: rgba(65, 75, 85, 0.79);
    font-weight:normal;
    font-size: 24px;
    line-height: 28px;
}
.login__agree--hint {
    font-weight: normal;
    font-size: 20px;
    line-height: 23px;
    color: #969696;
}
.login__agree--hint a {
    color: #5281B9;
    text-decoration: none;
}
.login__type {
    display: flex;
    flex-wrap: wrap;
    margin: 41px 0 47px;
}
.login__type--block {
    display: flex;
}
.login__type--agree {
    display: flex;
    width: 100%;
    margin: 37px 0 0 0;
    text-align: left;
}
.login__type--block:first-child {
    margin: 0 25px 0 0;
}
.login__checkbox {
    width: 31px;
    height: 31px;
    position: relative;
    background: #fff;
    margin-right: 11px;
    border: 1px solid #5281B9;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 0 0 31px;
}
.login__checkbox label {
    width: 31px;
    height: 31px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}
.login__checkbox label:after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    top: 5px;
    left: 3px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='25' height='19' viewBox='0 0 25 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.1724 4.10831C24.2002 4.3712 24.1625 4.63686 24.0627 4.88175C23.9628 5.12665 23.8039 5.34319 23.6 5.5122C19.3269 9.7614 15.0588 14.0156 10.7957 18.2748C9.86932 19.1907 9.1312 19.1832 8.18972 18.2748C5.75943 15.8824 3.34169 13.4751 0.936504 11.0527C-0.0200466 10.0917 0.0025491 9.48362 0.936504 8.47763C1.37335 8.01968 1.84033 7.58425 2.29977 7.14131C3.51994 5.97015 4.31079 5.97766 5.53849 7.19386C6.60802 8.25991 7.70767 9.29594 8.71695 10.3995C9.30444 11.0377 9.68103 10.9776 10.2233 10.3995C13.1382 7.44911 16.0831 4.52873 19.0281 1.60084C20.301 0.33959 21.0467 0.347098 22.3346 1.60084L23.6828 2.94466C23.8592 3.0792 23.9971 3.25739 24.083 3.46152C24.1689 3.66566 24.1997 3.88864 24.1724 4.10831Z' fill='%235281B9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0;
}
.login__checkbox input[type=checkbox] ,
.login__checkbox input[type=radio] {
    visibility: hidden;
}
.login__checkbox input[type=checkbox]:checked + label:after,
.login__checkbox input[type=radio]:checked + label:after{
    opacity: 1;
}
.login__submit {
    background: linear-gradient(89.38deg, #5D39ED 30.44%, #277BF8 100%);
    box-shadow: 0px 4px 20px rgba(9, 38, 191, 0.6);
    border-radius: 8px;
    width: 100%;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    padding: 17px 0;
}
.login__footer {
    margin: 23px auto 0;
    text-align: center;
}
.login__footer--hint {
    font-size: 24px;
    line-height: 28px;
    color: #495E78;
}
.login__footer--link {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #2B78F9;
    text-decoration: underline;
    margin: 0 0 0 40px;
}

.slide-btn {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
}
.slide-btn:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.7) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.7) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.7) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0.7) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3ffffff', endColorstr='#b3ffffff',GradientType=0 );
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 5s;
    transition: all 5s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes slideme {
    0% { left: -30px; margin-left: 0px; }
    30% { left: 110%; margin-left: 80px; }
    100% { left: 110%; margin-left: 80px; } 
}

.select-region {
    color: #fff;
    outline: 0;
    padding: 0;
    display: inline-block;
}
.select-region .open-btn {
    padding: 8px 0;
}
.select-region .l-caret {
    float: right;
    padding: 10px 0;
    color: #6c757d;
}
.region-dropdown { 
    background-color: transparent;
    margin-top: -8px;
    width: 100%;
    text-align: center;
}
.region-dropdown .j-select-region { 
    width: 280px;
    display: inline-block;
    background-color: transparent;
    border: none;
    border-top: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    position: relative;
}
.region-dropdown .j-select-region .c-dropdown-heading {
    border: none;
}
.region-dropdown .j-search-q {
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    background-color: #fff;
    border: 1px solid #ccc !important;
}
.region-dropdown .j-geo-list {
    position: absolute;
    z-index: 2;
    background: #fff;
    display: block;
    width: 100%;
    margin-top: -50px;
    border-top: 1px solid #ccc;
    max-height: 450px;
    overflow: hidden;
    border-radius: 4px;
}
.region-dropdown .geo-join {
    display: block;
    color: #666;
    font-size: 14px;
    text-align: left;
    padding: 4px 10px;
}

/* Orders form */

.order-details {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  margin: 40px auto 0;
  text-align: center;
}
.order-details a {
  text-decoration: none;
}
.order-details a:hover {
  text-decoration: underline;
}
.order-details__title {
  background: #B37479;
  -webkit-box-shadow: inset 0px 0px 50px 0px rgba(255,255,255,1);
  -moz-box-shadow: inset 0px 0px 50px 0px rgba(255,255,255,1);
  box-shadow: inset 0px 0px 50px 0px rgba(255,255,255,1);  
  box-shadow: inset 0px 0px 50px #A0BEFF;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  display: inline-block;
  padding: 14px 71px 13px;
}
.order-details__title a {
  color: #ab4342;
}
.order-details__form {
  margin: 40px 0 0 0;
  text-align: left;
}
.order-details__row {
  margin: 0 0 40px;
}
.order-details__row .ck-editor ol, .order-details__row .ck-editor ul {
  padding-left: 20px;
}
.order-details__row li {
  color: #000;
}
.block-title {
    padding: 6px 10px;
    margin: 0;
    color: #ffae00 !important;
    border-bottom: 1px dashed #999;
    text-align: center !important;
    font-size: 16px;
    text-transform: uppercase;
}
.order-details__row .help-block {
  text-align: left;
  padding-left: 5px;
  color: #fff;
  margin-bottom: 5px;
}
.order-details__row-title {
  box-shadow: inset 0px 0px 30px #A0BEFF;
  background: rgba(115, 153, 234, 0.1);
  color: #fff;
  font-size: 20px;
  line-height: 23px;  
  border-radius: 5px;
  display: block;
  width: 230px;
  text-align: center;
  padding: 9px 0;
  margin: 0 0 15px;
}
.order-details__row-title.l {
  width: auto;
  max-width: 250px;
}
.order-details__row-title.xl {
  width: auto;
  max-width: 280px;
}
.order-details__row-title.xxl {
  width: auto;
  max-width: 320px;
}
.fs-xl { 
  font-size: 18px; 
}
.order-details__row-input {
  display: block;
  color: #000;
  width: 100%;
  font-size: 18px;
  line-height: 21px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 17px 30px 17px 40px;
}
.order-details__row-input.input-error {
  border: 3px solid #f76664 !important;
  box-shadow: 0 0 4px #f76664;
}
.order-details__row .additional-item_option .counter-hint {
  color: #fff;
}
.order-details__row-input::placeholder,
.order-details__row-textarea::placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
  opacity: 0.5;
}
.order-details__row-textarea {
  width: 100%;
  min-height: 128px;
  font-size: 18px;
  line-height: 21px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 15px 30px 15px 40px;
  border-radius: 8px;
}
.order-details__row-select {
  position: relative;
  font-family: 'Roboto';
}
.j-specs .order-details__row-select .j-title-empty,
.j-specs .order-details__row-select .j-title-selected,
.order-details__row-select .dropdown-toggle {
    color: #fff;
    font-size: 18px;
    line-height: 21px;
    display: block;
    text-decoration: none;
}
.order-details__row-select select:not(.active) {
  display: none; /*hide original SELECT element: */
}
.select-selected {
  background-color: DodgerBlue;
}
.select-selected:not(.without-arrow)>a:after,
.select-selected:not(.without-arrow) div>a:after,
select + .select-selected:not(.without-arrow):after {
  position: absolute;
  content: "";
  top: 50%;
  right: 24px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
  margin: -3px 0 0 0;
}
.select-selected.select-arrow-active:after,
select + .select-selected.select-arrow-active:after,
.select-selected .open a:after,
.select-selected.open a:after,
.select-selected a.opened:after {
  border-color: transparent transparent #fff transparent;
  top: 50%;
  margin: -9px 0 0 0;
}
.select-selected {
  border-radius: 8px;
}
.select-items div,.select-selected {
  position: relative;
  max-width: 467px;
  color: #ffffff;
  padding: 21px 25px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  background: #404854;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  line-height: 21px;
}
.select-selected+.select-selected {
  margin-top: 15px;
}
.alert-selected {
  max-width: 467px;
}
.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.select-hide {
  display: none;
}
.order-details__row-price_input {
  max-width: 230px;
}
.order-details__row-price_select {
  position: absolute;
  background: transparent;
  top: 16px;
  right: 10px;
  font-size: 20px;
  color: #000;
  opacity: 0.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
}
.order-details__row.with-example { display: inline-block; width: 100%; }
.example-list { 
    max-width: 750px; 
    padding: 15px;
    border-radius: 8px;
    background: #404854;
    margin-top: 20px; 
    display: inline-block;
}
.example-list .second { 
    -webkit-filter: grayscale(100%) blur(2px);
    -moz-filter: grayscale(100%) blur(2px);
    -ms-filter: grayscale(100%) blur(2px);
    -o-filter: grayscale(100%) blur(2px);
    filter: grayscale(100%) blur(2px);
    opacity: 0.3;
    cursor: default;
}
.example-list .second a { 
    cursor: default;
}
.example-list .cusongsblock, 
.example-list .highlighted { overflow: visible; }
.example-list .highlighted:after {
    position: absolute;
    content: "";
    box-shadow: inset 0px 0px 30px #a0beff;
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    border-radius: 10px;
}
.example-list .highlighted:before {
    font-family: 'FontAwesome';
    content: "\f061";
    position: absolute;
    top: 10px;
    left: -45px;
    font-size: 36px;
    color: #a0beff;
}
.example-list.freelancers .songperson .ispinner-container { 
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}
.example-list .cusongsblock .padding-content p { position: relative; }
.example-list .rating-item-number { color: #ffce00; }
.example-list .example-arrow-right { position: absolute; top: 0; left: -45px; font-size: 36px; color: #a0beff; }

.order-details__row .j-price-ex-radio:before,
.order-details__row .j-price .input-group:before {
  content: "";
  position: absolute;
  background: #000;
  opacity: 0.3;
  height: 26px;
  width: 1px;
  top: 15px;
  right: 50px;
}
.order-details__row .j-price .input-group:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 55px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  cursor: not-allowed;
}
.order-details__row .inline-col {
  display: inline-block;
  vertical-align: top;
}
.select-arrow-black__down:after {
    position: absolute;
    content: "";
    top: calc(50% + 2px);
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: rgba(0,0,0,0.5) transparent transparent transparent;
    margin: -3px 0 0 0;
}
.order-details__radio-wrapper {
  display: flex;
  max-width: 467px;
}
.service-type {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50%;
}
.service-type:first-child .checkmark {
  border-radius: 8px 0px 0px 8px;
}
.service-type:last-child .checkmark {
  border-radius: 0 8px 8px 0;
}
.service-type input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  display: block;
  background: #404854;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  padding: 22px 0;
}
.service-type.order-num .checkmark {
  display: flex;
  padding: 21px 0 21px 15px;
}
.service-type.order-num .checkmark .input-sm {
  opacity: 1;
  width: 40px;
  display: block;
  color: #000;
  margin-top: -3px;
}
.service-type.order-num .checkmark span {
  margin-left: 45px;
}
.service-type:hover input ~ .checkmark {
  background-color: #ccc;
}
.service-type input:checked ~ .checkmark {
  background-color: #2196F3;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.service-type input:checked ~ .checkmark:after {

}
.service-type .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.add-options__checkbox {
  width: 30px;
  height: 30px;
  position: relative;
  background: #fff;
  margin-right: 5px;
}
.add-options__checkbox label {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.add-options__checkbox label:after {
  content: '';
  width: 21px;
  height: 18px;
  position: absolute;
  top: 6px;
  left: 5px;
  background-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAASCAYAAAC0EpUuAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAeRJREFUeNqUlNlLVGEYh8fp6KSZ4oILgoqQGuIKUhdlEoqXeiP+Rf1BEnbhemGKO+5JoalgarlvqDmjv3d4DnwetJwXHmY453y/d/+89k+roQQtSYTFG9EpPooKcS42xY4XStxuRYYoRqxcRCD+PFHRZyJbVItGUSJcDfufHU5QNBPBJtIvwpFrFx71ec6DaxElxWAdLbVa0SbeiyqemcXEgfgltk20QJTicVv8FicBwRxRKVrhlUjnfZRzM2Jc/PEodDOFnheTloK44VAKTt+KdzQn4jg9E8tiCNFjE+0SDZQgD8+nYpfSlIkPooX00xzBQ7EoekWf2BBXJtpBAzyiuiR98/6C+rXgOMMRPCGzATEoVggoLpRP3UJ0s95SEIWI2Oi8xrFvVpo1MSK+ilVf0BdNcj5+SVctwn1KUoSDZL6xzflJDfvFXKCxcdFZos3loEVXg+dwwKk18LsYpobz1PWe2aFusRD0xrvgetroTIlRsSSOHpjpeKRfGNwYW5LlzKdvV2KLhvQQ4ZZbx6DoN0bolvTrEfZF/9IUi+6zGCPl6GO77FF4614qm2O/dc487okJRmfaySr0L9EYO7/CDZTDwPui60Q5ym7/19xr65JLdhkHEebVNuaH7fRTr7I7AQYA6Ut5/7NjZTEAAAAASUVORK5CYII=');
  background-repeat: no-repeat;
  opacity: 0;
}
.add-options__checkbox input[type=checkbox] {
  visibility: hidden;
}
.add-options__checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.order-details__message {
  padding: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 19px;
  color: #f2a09f;
  background: #61525a;
}
.order-details__imgwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.order-details__row ul.autocomplete {
  top: 100%;
}
.order-details__row .p-addWork-gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 -5px;
}
.order-details__row .p-addWork-gallery li {
  width: 23%;
  padding: 0;
  float: none;
  flex: 1 1 auto;
  margin: 0 5px 10px;
}
.order-details__row .p-addWork-gallery li>a {
  height: 140px;
}
.order-details__row .p-addWork-gallery li .link-delete {
  margin: 0 2px;
}
.order-details__img {
  /*background: url('../img/img-plus.png') no-repeat;*/
  background-size: cover;
  width: 216px;
  height: 140px;
  margin: 0 24px 24px 0;
}
.order-details__hint {
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  padding: 0 0 0 60px;
  margin: 20px 0 30px;
}
.order-details__file {
  position: relative;
  max-width: 467px;
  color: #ffffff;
  padding: 21px 25px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  background: #404854;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  line-height: 21px;
  border-radius: 8px;
}
.order-details__file:after {
  position: absolute;
  content: "+";
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  margin: -9px 0 0 0;
}
.order-details__confirm {
  padding: 0 0 0 144px;
}
.order-details__confirm input {
  width: 21px;
  height: 21px;
} 
.order-details__confirm-note {
  font-size: 20px;
  line-height: 23px;
  margin: 0 0 0 11px;
  color: #FFFFFF;
  display: inline-block;
  vertical-align: middle;
}
.order-details__submit {
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 467px;
  text-align: center;
}
.order-details__submit .form-success {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  background: #404854;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;  
  font-size: 20px;
  line-height: 29px;
  color: #27FF52;
  padding: 18px 0;
  width: 100%;
  margin: 0 0 18px;
}
.order-details .order-details__submit-cancel {
  color: #FF0000;
  font-size: 20px;
  line-height: 23px;
}
.safe-deal {
  margin: 32px;
  text-align: center;
}
.order-details .safe-deal a {
  color: #005CFF;
}
.safe-deal__title {
  color: #000;
  font-size: 25px;
  line-height: 29px;
  font-weight: 600;
}

.order-details__specs .choose.active {
  display: block;
}



@media screen and (max-width: 1023px) {
  .section-geo-filter .navbar-geo { width: 100%; margin-bottom: 15px; }
}

@media screen and (max-width: 767px) {
  .order-details__confirm { padding-left: 0; display: flex; }
  .order-details__confirm input { width: 60px; height: 25px; }

  .order-details__row .help-block { text-align: center; }
  .order-details__row-select .dropdown-toggle { font-size: 14px; text-align: left; }

  .add-options__checkbox, 
  .add-options__checkbox label { min-width: 25px; min-height: 25px; width: 25px; height: 25px; }
  .add-options__checkbox label:after { top: 3px; left: 2px; }

  .section-geo-filter, 
  .section-geo-filter .navbar-geo,
  .region-dropdown .j-select-region { width: 100%; }

  .order-details__row .p-addWork-gallery li { width: 46%; }
  .order-details__row-title { margin-left: auto; margin-right: auto; }

  .order-details__row-input, 
  .order-details__row-textarea { padding-left: 15px; padding-right: 15px; max-width: none; }

  .order-details__row .p-addWork-gallery li>a { height: 100px; }
  .order-details__hint { padding-left: 0; }

  .three-columns .checkmark { font-size: 16px; }
  .service-type.order-num { width: 35%; }
  .service-type.order-num .checkmark { padding: 17px 0 17px 15px; }
  .service-type.order-num .checkmark .input-sm { position: relative; margin-top: 0; }
  .service-type.order-num .checkmark span { display: none; }

  .order-details__row .inline-col { width: 100%; margin-bottom: 20px; }
  .order-details__row .inline-col:last-child { margin-bottom: 0; margin-left: 0 !important; }
  .order-details__row .inline-col .input-group { width: 100%; }

  .additional-item_option .btn { height: inherit; }

  .example-list .cusongsblock:not(.second) p .portfolio-title { padding: 0; margin: 10px 0 3px 0; }
  .example-list .highlighted:before { top: -36px; left: 25%; transform: rotate(90deg); }
  .example-list.freelancers .songperson .ispinner-container { border-radius: 0; }
  .example-list .highlighted:after { top: -20px; left: -20px; right: -20px; }
}
@media screen and (max-width: 600px) {
    .order-details__row .j-price-ex-radio { width: 100%; }
    .body-login { padding: 24px 15px; }
    .login__top-button {
        display: block;
        font-size: 16px;
        line-height: 21px;
        color: #fff;
        background: #5281B9;
        border-radius: 8px;
        width: 100%;
        max-width: 262px;
        margin: 0 auto 30px;
        padding: 12px 0;
    }
    .login__title {
        font-size: 24px;
        line-height: 28px;
        max-width: 280px;
        margin: 0 auto;
    }
    .login__title span {
        font-size: 16px;
        line-height: 19px;
    }
    .logo {
        text-align: center;
        display: block;
    }
    .login__form {
        margin: 35px auto 0;
        max-width: 355px;
    }
    .login__input {
        padding: 13px 9px 12px 16px;
        font-size: 16px;
        line-height: 19px;
    }
    .login__input::placeholder {
        font-size: 16px;
        line-height: 19px;
    }
    .login__forgotpass {
        display: none;
    }
    .login__rememberme {
        margin: 30px 0 35px 0;
    }
    .login__rememberme--hint {
        font-size: 16px;
        line-height: 19px;
    }
    .login__checkbox {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }
    .login__checkbox label {
        width: 22px;
        height: 22px;
    }
    .login__checkbox label:after {
        background-size: contain;
        width: 17px;
        height: 17px;
        top: 3px;
        left: 2px;
    }
    .login__submit {
        padding: 13px 0;
        max-width: 310px;
    }
    .login__footer {
        margin: 30px auto 0;
    }
    .login__footer--hint {
        font-size: 18px;
        line-height: 21px;
    }
    .login__footer--link {
        font-size: 18px;
        line-height: 21px;
        margin: 0 0 0 10px;
    }
    .login__type {
        margin: 35px 0;
        justify-content: left;
    }
    .login__agree--hint {
        font-size: 16px;
        line-height: 19px;
    }
}

.maxWnone { max-width: none; }